@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lato:700,900&display=swap");

:root {
  --main-color: #1565C0;
  --advisory-color: #1565C0;
  --recruitment-color: #1E88E5;
  --spot-color: #03A9F4;
  --accent-color: #F49219;
  --text-color: #323B44;
  --inner-padding-num: 12vw 4vw;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  overflow: auto;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: middle;
}

/**
 * body and base
 */

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #323B44;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.9;
  overflow: hidden;
  min-width: 1300px;
  @media screen and (min-width: 768px) {
    zoom: 94%;
  }
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
    width: 100%;
  }
}

button, input, select, textarea {
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

input::-ms-clear {
  visibility: hidden;
}

select::-ms-expand {
  display: none;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, body, button, input, select, textarea {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #323B44;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}

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

.is-se {
  display: none !important;
}

@media screen and (max-width: 374px) {
  .is-se {
    display: block !important;
  }
}

@media screen and (max-width: 374px) {
  .is-se-hidden {
    display: none;
  }
}

.alL {
  text-align: left;
}

.alR {
  text-align: right;
}

.alC {
  text-align: center;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  min-width: 1300px;
}

@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    min-width: 100%;
    height: auto;
  }
}

.l-page--lp .l-header {
  display: none !important;
}

@media screen and (max-width: 767px) {
  /* ハンバーガーメニューをクリックした時に「is-open」をjsでで付与している */
  .l-header.is-open {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
}

@media screen and (max-width: 767px) {
  .l-header.is-open .l-header__main {
    height: 100%;
    overflow-y: auto;
  }

  .l-header.is-open .l-header__global-nav,
  .l-header.is-open .l-header__info {
    display: block;
  }
}

.l-header.is-open .l-header__trigger.c-button {
  grid-area: close;
  background-image: url(../img/common/sp/icon_header_menu_sp_close.svg);
}

.l-header__logo {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 250px;
  }
}

.l-header__logo a {
  display: block;
  -webkit-transition: 200ms;
  transition: 200ms;
  opacity: 1;
}

.l-header__logo a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .l-header__logo a {
    -webkit-transition: none;
    transition: none;
  }
  .l-header__logo a:hover {
    opacity: 1;
  }
}

.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__trigger.c-button {
  display: none;
  position: absolute;
  top: 5px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: url(../img/common/sp/icon_header_menu_sp.svg) no-repeat center;
}

@media screen and (max-width: 767px) {
  .l-header__trigger.c-button {
    display: block;
  }
}

.l-header__main {
  display: grid;
  grid-template-areas:
    "logo info"
    "global-nav global-nav"
  ;
  z-index: 2;
  background: #FFFFFF;
  white-space: nowrap;
  height: 120px;
}

.l-page--simple .l-header .l-header__main {
  height: auto;
}

/* ウインドウをスクロールした時にjsでヘッダーに「compress」クラスを付与している */
.l-header.compress .l-header__main {
  height: 52px;
  transition: all 100ms ease-in-out;
}

@media screen and (max-width: 767px) {
  .l-header__main {
    display: grid;
    grid-template-areas:
      "logo close"
      "global-nav global-nav"
      "info info"
    ;
    align-items: start;
    grid-template-rows: auto 1fr 2fr;
    min-width: 100%;
    padding: 0;
    height: auto;
  }
}

.l-header__info {
  grid-area: info;
  justify-self: end;
  padding-right: 30px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .l-header__global-nav,
  .l-header__info {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-header.is-open .l-header__info {
    padding: 30px 20px;
    width: 100%;
    position: static;
    display: flex;
    flex-direction: column-reverse;
  }
}

.l-header__info .c-button + .c-button {
  margin-left: 10px;
}

.l-header.compress .l-header__info .c-button + .c-button {
  margin-left: 4px;
}

@media screen and (max-width: 767px) {
  .l-header__info-tel {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .l-header__info-button .c-button--m {
    padding: 7px 0;
  }
  .l-header.compress .l-header__info-button .c-button--m {
    line-height: 24px;
    font-size: 14px;
    padding: 4px 16px;
    transition: all 100ms ease-in-out;
  }
  .l-header.compress .l-header__info-button .c-button--m:nth-child(1) {
    width: 100px;
  }
  .l-header.compress .l-header__info-button .c-button--m:nth-child(2) {
    width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__info-button {
    display: flex;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .l-header__info-button .c-button {
    width: 48%;
  }
}


.l-header__global-nav {
  grid-area: global-nav;
  background-color: #fff;
  width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.compress .l-header__global-nav {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .l-header__global-nav {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    display: none;
  }
}

.global-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .global-nav__list {
    flex-wrap: wrap;
    flex-direction: column;
    border-top: 1px solid #D8E1EA;
  }
}

.global-nav__item {
  flex: 1;
  font-size: 14px;
  font-weight: bold;
  transition: all 100ms ease-in-out;
  height: 70px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .global-nav__item {
    display: block;
    font-size: 18px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #D8E1EA;
  }
}

.global-nav__item > a {
  flex: 1;
  display: block;
  padding: 12px 22px;
  color: var(--main-color);
  position: relative;
  text-align: center;
}

.l-header.compress .global-nav__item--expand > a {
  padding: 10px 16px;
  transition: all 100ms ease-in-out;
}

@media screen and (max-width: 767px) {
  .global-nav__item--expand > a {
    padding: 10px 10px 10px 50px;
    text-align: left;
  }
}

.global-nav__item--expand > a:after {
  content: '';
  height: 10px;
  width: 10px;
  background: url(../img/common/img_arrow_m_blue.svg) no-repeat center top/10px auto;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: rotate(90deg) translateY(50%);
}

.l-header.compress .global-nav__item--expand > a:after {
  bottom: 1px;
  transition: all 100ms ease-in-out;
}

@media screen and (max-width: 767px) {
  .global-nav__item--expand > a:after {
    position: absolute;
    height: 16px;
    width: 16px;
    background-size: 16px auto;
    left: auto;
    left: 20px;
    bottom: 50%;
    transform: translateY(50%);
  }

  .global-nav__item > a.is-open:has(+.global-nav__list--sub):after {
    content: '';
    height: 2px;
    width: 14px;
    right: 24px;
    background: var(--main-color);
  }
}

.global-nav__item:hover {
  cursor: pointer;
}

.global-nav__item:hover > a {
  opacity: 0.7;
  transition: opacity 200ms ease-in-out;
}

@media screen and (max-width: 767px) {
  .global-nav__item:hover {
    cursor: auto;
    border-bottom: 1px solid #D8E1EA;
  }
}

.global-nav__list--sub {
  visibility: hidden;
  display: flex;
  position: absolute;
  left: 0;
  top: 120px;
  width: 100%;
  min-height: 140px;
  height: auto;
  padding: 20px 100px;
  background-color: #FFF;
  border-top: 1px solid #D8E1EA;
  justify-content: center;
  box-shadow: 0px 3px 20px -5px rgba(0,0,0,0.1);
}

@media screen and (max-width: 767px) {
  .global-nav__list--sub {
    visibility: visible;
    padding: 0;
  }
}

.l-header.compress .global-nav__list--sub {
  top: 116px;
  transition: all 100ms ease-in-out;
}

.global-nav__item:hover .global-nav__list--sub,
.global-nav__list--sub:hover,
.global-nav__item:hover > a:after
{
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .global-nav__list--sub {
    border-top: none;
    height: auto;
    display: none;
  }
  .global-nav__item a.is-open ~ .global-nav__list--sub {
    display: block;
    position: relative;
    top: 0;
    border-top: none;
    box-shadow: none;
  }
}

.global-nav__list--sub-inner {
  display: flex;
  justify-content: stretch;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .global-nav__list--sub-inner {
    display: block;
  }
}

.global-nav__item--sub {
  width: 280px;
}

@media screen and (max-width: 767px) {
  .global-nav__item--sub {
    flex: 0 0 50%;
    position: relative;
    width: auto;
  }
}

.global-nav__anchor {
  position: relative;
  display: flex;
  height: 100%;
  color: var(--main-color);
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 30px;
  color: #565555;
  font-weight: normal;
  font-size: 11px;
}

@media screen and (max-width: 767px) {
  .global-nav__anchor {
    display: block;
    font-size: 13px;
    padding: 16px 40px;
    width: 100%;
    text-align: left;
    border-top: 1px solid #D8E1EA;
  }
}

.global-nav__anchor::before {
  content: '';
  position: absolute;
  background: url(../img/common/img_arrow_m_blue.svg) no-repeat center top/10px auto;
  width: 10px;
  height: 10px;
  left: 4px;
}

@media screen and (max-width: 767px) {
  .global-nav__anchor::before {
    background: url(../img/common/img_arrow_l_blue.svg) no-repeat center top/12px auto;
    width: 12px;
    height: 12px;
    left: 20px;
  }
}

.global-nav__item--around .global-nav__anchor,
.global-nav__item--useful .global-nav__anchor {
  text-align: left;
}

.global-nav__item--sangyoui .global-nav__anchor::before {
  top: 40px;
}

.global-nav__item--around .global-nav__anchor::before,
.global-nav__item--useful .global-nav__anchor::before {
  top: 50%;
}

.global-nav__anchor:hover{
  opacity: 0.7;
}

.global-nav__anchor span {
  color: #FFF;
  font-size: 12px;
  display: inline-block;
  border-radius: 4px;
  padding: 4px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .global-nav__anchor span {
    font-size: 11px;
    border-radius: 2px;
    text-align: left;
    padding: 2px 6px;
  }
}

.global-nav__item--sub:nth-child(1) .global-nav__anchor span {
  background-color: var(--advisory-color);
}

.global-nav__item--sub:nth-child(2) .global-nav__anchor span {
  background-color: var(--recruitment-color);
}

.global-nav__item--sub:nth-child(3) .global-nav__anchor span {
  background-color: var(--spot-color);
}

.global-nav__item.global-nav__item--advisory, .global-nav__item.global-nav__item--recruitment, .global-nav__item.global-nav__item--spot {
  flex: 0 0 auto;
}

.global-nav__anchor b {
  color: var(--main-color);
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  margin: 8px 0 2px;
}

@media screen and (max-width: 767px) {
  .global-nav__anchor b {
    display: block;
  }
}

.global-nav__item > .global-nav__anchor--job-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  width: 220px;
  color: #FFFFFF !important;
}
@media screen and (max-width: 767px) {
  .global-nav__item > .global-nav__anchor--job-type {
    width: 100%;
    padding: 10px 0;
  }
}

.global-nav__item > .global-nav__anchor--job-type::after {
  content: none;
}

.global-nav__item > .global-nav__anchor--advisory {
  background-color: #1565C0;
}

.global-nav__anchor--recruitment {
  background-color: #1E88E5;
}

.global-nav__anchor--spot {
  background-color: #03A9F4;
}

.global-nav__anchor--annotation {
  font-size: 11px;
}

.global-nav__external {
  position: relative;
  display: inline;
}

.global-nav__external::after {
  position: absolute;
  top: -2px;
  content: "";
  width: 24px;
  height: 18px;
  display: inline-block;
  margin-left: 2px;
  background: url(../img/external-link_s.webp) no-repeat right center;
}

.tel {
  display: block;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .tel {
    margin-right: 0;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 6px;
    margin-top: 20px;
    -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
  }
}

.tel__num {
  color: #434E5B;
  font-size: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 28px;
  padding-left: 24px;
  background: url(../img/common/icon_tel_blue.svg) no-repeat left center;
}

.l-header.compress .tel__num {
  font-size: 18px;
  transition: all 100ms ease-in-out;
}

@media screen and (max-width: 767px) {
  .tel__num {
    padding-left: 22px;
    display: inline-block;
  }
}

.tel__reception {
  color: #434E5B;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  padding-left: 10px;
}

.l-header.compress .tel__reception {
  line-height: 12px;
  font-size: 9px;
  transition: all 100ms ease-in-out;
  will-change: transform;
}

.l-footer {
  background: #434E5B;
}

.l-footer__inner {
  width: 1240px;
  margin: 0 auto;
  padding: 70px 0 55px;
}

@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 50px 30px;
    width: 100%;
  }
}

.l-footer__logo {
  grid-area: logo;
  width: 362px;
}

@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 100%;
    max-width: 315px
  }
}

.l-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.l-footer__logo a {
  display: block;
  -webkit-transition: 200ms;
  transition: 200ms;
  opacity: 1;
}

.l-footer__logo a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .l-footer__logo a {
    -webkit-transition: none;
    transition: none;
  }
  .l-footer__logo a:hover {
    opacity: 1;
  }
}

.l-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 192px;
}

@media screen and (max-width: 767px) {
  .l-footer__main {
    display: block;
    min-height: 1px;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    display: block;
    margin-top: 40px;
  }
}

.footer-nav__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 16px;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .footer-nav__title {
    margin-bottom: 20px;
  }
}

.footer-nav__block:not(:first-child) {
  margin-left: 80px;
}

@media screen and (max-width: 767px) {
  .footer-nav__block:not(:first-child) {
    margin-left: 0;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #FFFFFF;
  }
}

.footer-nav__item a {
  font-size: 13px;
  line-height: 32px;
  color: #FFFFFF;
  -webkit-transition: 200ms;
  transition: 200ms;
  opacity: 1;
}

.footer-nav__item a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .footer-nav__item a {
    -webkit-transition: none;
    transition: none;
  }
  .footer-nav__item a:hover {
    opacity: 1;
  }
}

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

@media screen and (max-width: 767px) {
  .l-footer__sub {
    display: block;
  }
}

.footer-copyright {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .footer-copyright {
    margin-top: 60px;
  }
}

.footer-notice {
  color: #BFBFBF;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .footer-notice {
    margin-top: 10px;
  }
}

.l-container {
  position: relative;
}

.l-page {
  padding-top: 120px;
}

@media screen and (max-width: 767px) {
  .l-page {
    padding-top: 47px;
  }
}

.l-page--simple {
  padding-top: 100px;
}

.l-page--simple-lp {
  padding-top: 0;
  .l-header {
    position: static;
    min-width: 960px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .l-page--simple {
    padding-top: 47px;
  }
  .l-page--simple-lp {
    padding-top: 0;
  }
}

.l-page--lp {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .l-page--lp {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .page-template-risk-diagnose .l-contents {
    margin-bottom: 0px;
  }
}

.l-contents--faq-tag .l-contents__inner {
  padding-top: 44px;
}

@media screen and (max-width: 767px) {
  .l-contents--faq-tag .l-contents__inner {
    padding-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .l-contents--faq .l-contents__inner {
    padding-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .l-contents--guidance .l-contents__inner {
    padding-top: 30px;
  }
}

.l-contents--contact {
  position: relative;
}

.l-contents--contact:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 220px;
  background: url(../img/hero/bg_h1_contact.webp) no-repeat top center/cover;
}

@media screen and (max-width: 767px) {
  .l-contents--contact:before {
    content: none;
  }
}

.l-contents--contact .l-contents__inner {
  padding-top: 80px;
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .l-contents--contact .l-contents__inner {
    padding-top: 0;
    padding-bottom: 60px;
  }
}

.l-contents--contact-thanks .l-contents__inner {
  padding-top: 80px;
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .l-contents--contact-thanks .l-contents__inner {
    padding-top: 0;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .l-contents--author .l-contents__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-top: 0;
  }
}

.l-contents--service-top .l-contents__inner {
  width: 100%;
  display: block;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .l-contents--service-top .l-contents__inner {
    padding: 0 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .l-contents--news-single .l-contents__inner {
    padding-bottom: 0;
  }
}

.l-contents__breadcrumb {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .l-contents__breadcrumb {
    margin-top: 0;
    padding: 8px 0;
  }
}

.l-contents__breadcrumb--with-hero {
  position: absolute;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .l-contents__breadcrumb--with-hero {
    position: static;
  }
}

.l-contents__breadcrumb--gray .c-breadcrumb__item a,
.l-contents__breadcrumb--gray .c-breadcrumb__item:not(:last-child):after {
  color: #637487;
}

@media screen and (max-width: 767px) {
  .l-contents__breadcrumb--gray .c-breadcrumb__item a,
  .l-contents__breadcrumb--gray .c-breadcrumb__item:not(:last-child):after {
    color: #1565C0;
  }
}

.l-contents__inner {
  width: 1240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .l-contents__inner {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 0 60px;
  }
}

.l-contents__main {
  width: 100%;
  max-width: 800px;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .l-contents__main {
    max-width: 100%;
  }
}

.l-contents__sidebar {
  width: 100%;
  max-width: 340px;
}

@media screen and (max-width: 767px) {
  .l-contents__sidebar {
    max-width: 100%;
  }
}

.c-button {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: 200ms;
  transition: 200ms;
  opacity: 1;
}

.c-button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .c-button {
    -webkit-transition: none;
    transition: none;
  }
  .c-button:hover {
    opacity: 1;
  }
}

.c-button--primary {
  background: -webkit-gradient(linear, left top, right top, from(#1565C0), to(#03A9F4));
  background: linear-gradient(90deg, #1565C0 0%, #03A9F4 100%);
  color: white !important;
}

.c-button--secondary {
  background: -webkit-gradient(linear, left top, right top, from(#F49219), to(#FFB42D));
  background: linear-gradient(90deg, #F49219 0%, #FFB42D 100%);
  color: white !important;
}

.c-button--white {
  background: #FFFFFF;
  color: #1565C0;
}

.c-button--xl {
  width: 420px;
  font-size: 24px;
  text-align: center;
  line-height: 26px;
  border-radius: 35px;
  padding: 22px 0;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
}

.c-button--l {
  width: 326px;
  font-size: 22px;
  text-align: center;
  line-height: 24px;
  border-radius: 30px;
  padding: 18px 0;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
}

.c-button--m {
  width: 130px;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  border-radius: 21px;
  padding: 9px 0;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.c-button--fluid {
  width: 100%;
  font-size: 22px;
  text-align: center;
  line-height: 24px;
  border-radius: 30px;
  padding: 18px 0;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
}

.c-button--fluid--s {
  width: 100%;
  font-size: 18px;
  text-align: center;
  border-radius: 30px;
  padding: 4px 0;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
}

.c-button--auto-width {
  font-size: 22px;
  text-align: center;
  line-height: 24px;
  border-radius: 30px;
  padding: 18px 35px;
  display: inline-block;
  width: auto;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .c-button--auto-width {
    font-size: 17px;
    display: block;
  }
}

.c-button--auto-width b {
  font-size: 23px;
  display: block;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .c-button--auto-width b {
    font-size: 18px;
  }
}

.c-button--auto-width span {
  font-size: 13px;
  display: block;
  font-weight: bold;
}

.c-button--more {
  width: 326px;
  border-radius: 30px;
  background-color: #FFFFFF;
  color: #1565C0;
  font-size: 22px;
  padding: 12px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
}

.c-button--download {
  width: 1000px;
  border: 8px solid #FFFFFF;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(13, 25, 66, 0.2);
  box-shadow: 0 2px 12px 0 rgba(13, 25, 66, 0.2);
  color: #1565C0;
  font-size: 32px;
  font-weight: bold;
  line-height: 46px;
  text-align: center;
  padding: 26px;
  background: #EBF6FD url(../img/common/img_arrow_l_blue.svg) no-repeat right 30px center;
}

@media screen and (max-width: 767px) {
  .c-button--download {
    font-size: 24px;
    line-height: 1.5;
    text-align: left;
    padding: 20px 50px 20px 24px;
    background-position: right 7px center;
    background-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .c-button--download br {
    display: none;
  }
}

.c-button--download span {
  display: inline-block;
  padding-left: 120px;
  background: url(../img/common/img_document_download.svg) no-repeat left center;
}

@media screen and (max-width: 767px) {
  .c-button--download span {
    padding-left: 0;
    background-image: none;
  }
}

.c-button--download-s {
  width: 300px;
  padding: 8px 40px;
  border: 4px solid #FFFFFF;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 6px 0 rgba(13, 25, 66, 0.2);
  box-shadow: 0 1px 6px 0 rgba(13, 25, 66, 0.2);
  text-align: center;
  color: #1565C0;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  white-space: nowrap;
  background: #EBF6FD url(../img/common/img_arrow_m_blue.svg) no-repeat right 5px center;
}

@media screen and (max-width: 767px) {
  .c-button--download-s {
    width: 100%;
    padding: 8px 16px;
  }
}

.c-button--service-link {
  width: 180px;
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  border-radius: 25px;
  padding: 10px 0;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
}

.l-header__info-useful-content {
  text-decoration: underline;
  text-underline-offset: 1px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  color: #1565C0;
  display: inline-block;
  padding-right: 36px;
}

.l-header__info-useful-content:hover {
  opacity: 0.8;
}

.l-header__info-useful-content::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-image: url('../img/common/open-in-new.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .l-header__info-useful-content {
    padding-top: 12px;
  }
}

@media screen and (max-width: 767px) {
  .c-button--service-link {
    width: 100%;
  }
}

.c-button--guidance-link {
  height: 80px;
  border-radius: 40px;
  max-width: 420px;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
}

.c-button--guidance-link > span {
  display: block;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .c-button--guidance-link > span {
    font-size: 13px;
  }
}

.c-button--spot-top {
  height: 80px;
  border-radius: 40px;
  max-width: 360px;
  padding: 12px 20px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  .c-button--spot-top {
    max-width: 100%;
    height: 90px;
    border-radius: 45px;
    padding-top: 17px;
  }
}

.c-button--spot-top > span {
  display: block;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .c-button--spot-top > span {
    font-size: 13px;
  }
}

.c-button:disabled, .c-button.is-disabled {
  pointer-events: none;
  background: #E0E4E8;
  color: #FFFFFF;
}

.c-button__wrap {
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  gap: 0 50px;
}

@media screen and (max-width: 767px) {
  .c-button__wrap {
    display: block;
    width: 100%;
  }

  .c-button__wrap a {
    display: block;
  }

  .c-button__wrap a + a {
    margin-top: 15px;
  }
}

.login-button{
  color: #1565C0;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
}

.login-button:hover{
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .login-button{
    width: 100%;
    margin-top: 10px;
  }
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 0;
  color: #323B44;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  background-color: #FFFFFF;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea {
  padding: 0;
  color: #323B44;
  background: transparent;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
}

textarea:focus {
  background-color: #FFFFFF;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select {
  color: #323B44;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select:focus {
  background-color: #FFFFFF;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #C6CCD4 !important;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #C6CCD4 !important;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #C6CCD4 !important;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #C6CCD4 !important;
}

input::placeholder,
textarea::placeholder {
  color: #C6CCD4 !important;
}

.c-input {
  width: 100%;
  padding: 9px 12px;
  font-size: 0.875rem;
  line-height: 20px;
  background-color: #FFFFFF;
  border: 1px solid #1565C0;
  border-radius: 4px;
}

.form-group + .form-group {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .form-group + .form-group {
    margin-top: 25px;
  }
}

.search--case-study .form-group + .form-group {
  margin-top: 20px;
}

.form-group__label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  margin-bottom: 10px;
}

.form-group__chip {
  display: inline-block;
  background-color: #637487;
  white-space: nowrap;
  border-radius: 2px;
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: -0.5px;
  line-height: 14px;
  padding: 3px 7px;
  text-align: center;
  margin-right: 8px;
  font-weight: normal;
  vertical-align: 2px;
}

.form-group__chip.is-required {
  background-color: #1565C0;
}

.form-group__chip.is-optional {
  background-color: #637487;
}

.form-group__horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-group__horizontal .form-control,
.form-group__horizontal .select-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .form-group__horizontal .select-box {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.form-group__horizontal .form-control + .form-control,
.form-group__horizontal .select-box + .select-box {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .form-group__horizontal .form-control + .form-control,
  .form-group__horizontal .select-box + .select-box {
    margin-left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .form-group__horizontal .select-box + .select-box {
    margin-left: 0;
    margin-top: 12px;
  }
}

.form-group__error {
  margin-top: 10px;
  color: #FE595E;
  font-size: 14px;
  line-height: 1.5;
}

.form-group__error.-confirm {
  margin-top: 0;
}

.form-control::-webkit-input-placeholder {
  color: #C6CCD4 !important;
}

.form-control::-moz-placeholder {
  color: #C6CCD4 !important;
}

.form-control:-ms-input-placeholder {
  color: #C6CCD4 !important;
}

.form-control::-ms-input-placeholder {
  color: #C6CCD4 !important;
}

.form-control::placeholder {
  color: #C6CCD4 !important;
}

.form-control.input, .form-control.select {
  height: 50px;
  border: 1px solid #BFC6CD;
  border-radius: 4px;
  background-color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  padding: 13px 20px;
}

.form-control.select {
  padding-right: 40px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .form-control.select {
    font-size: 14px;
  }
}

.form-control.select:disabled {
  background: #F6F8FA;
  color: #E0E4E8;
}

.form-control.textarea {
  height: 220px;
  border: 1px solid #BFC6CD;
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .form-control.textarea {
    height: 320px;
  }
}

.form-control.input.-error, .form-control.select.-error, .form-control.textarea.-error {
  border-color: #FE595E;
}

.select-box {
  position: relative;
  width: 100%;
}

.select-box:after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  background: url(../img/common/img_arrow_m_gray.svg) no-repeat center/contain;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.checkbox {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 24px;
  padding-left: 30px;
  cursor: pointer;
}

.checkbox--confirm .checkbox__control:before {
  border-radius: 0;
  border: none;
  background: url(../img/common/icon_checkbox.svg) no-repeat center/20px;
}

.checkbox--confirm .checkbox__control:after {
  content: none;
}

.checkbox--confirm.-error .checkbox__control:before {
  background-image: url(../img/common/icon_checkbox_error.svg);
}

.checkbox--confirm input:checked + .checkbox__control:before {
  background-image: url(../img/common/icon_checkbox_active.svg);
}

.checkbox__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox__control {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.checkbox__control:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: #CCCCCC 2px solid;
  border-radius: 50%;
}

.checkbox__control:after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: none;
}

input:checked + .checkbox__control:before {
  border-color: #1565C0;
}

input:checked + .checkbox__control:after {
  background: #1565C0;
}

.checkbox__label a {
  color: #1565C0;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .checkbox__label a:hover {
    text-decoration: none;
  }
}

.checkbox-group {
  margin-bottom: -10px;
}

.checkbox-group .checkbox {
  margin-right: 20px;
  margin-bottom: 5px;
}

.form-error-message {
  margin: 0 0 30px;
  border: none;
  border-radius: 6px;
  color: #FE595E;
  background: #FEEEEF;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  padding: 17px 20px;
}

.c-tag {
  white-space: nowrap;
  display: inline-block;
}

.c-tag--gray {
  border-radius: 11px;
  background-color: #637487;
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  line-height: 14px;
}

@media screen and (min-width: 768px) {
  .c-tag--gray:hover {
    text-decoration: underline;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .c-tag--gray span {
    line-height: 13px;
    border-bottom: 1px solid transparent;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-width: 768px) {
  .c-tag--gray:hover {
    text-decoration: none;
  }
  .c-tag--gray:hover span {
    border-bottom-color: #FFFFFF;
  }
}

.c-tag--gray.c-tag--l {
  border-radius: 14px;
  font-size: 12px;
  padding: 7px 15px;
}

.c-tag--gray.c-tag--xl {
  border-radius: 18px;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 20px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-width: 768px) {
  .c-tag--gray.c-tag--xl:hover {
    text-decoration: underline;
  }
}

.c-tag--blue {
  border-radius: 11px;
  background-color: #1565C0;
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  line-height: 14px;
}

.c-tag + .c-tag--blue {
  margin-left: 5px;
}

@media screen and (min-width: 768px) {
  .c-tag--blue:hover {
    text-decoration: underline;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .c-tag--blue span {
    line-height: 13px;
    border-bottom: 1px solid transparent;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-width: 768px) {
  .c-tag--blue:hover {
    text-decoration: none;
  }
  .c-tag--blue:hover span {
    border-bottom-color: #FFFFFF;
  }
}

.c-tag--blue.c-tag--l {
  border-radius: 14px;
  font-size: 12px;
  padding: 7px 15px;
}

.c-tag--blue.c-tag--xl {
  border-radius: 18px;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 20px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-width: 768px) {
  .c-tag--blue.c-tag--xl:hover {
    text-decoration: underline;
  }
}

.c-tag--primary-outilined {
  border-radius: 15px;
  border: 1px solid #1565C0;
  color: #1565C0;
  font-size: 13px;
  font-weight: bold;
  padding: 7px 14px 5px;
  line-height: 14px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

@media screen and (min-width: 768px) {
  .c-tag--primary-outilined:hover {
    background: #1565C0;
    color: #FFFFFF;
  }
}

.c-tag--primary-outilined.is-disabled {
  border-color: #E0E4E8;
  background-color: #F7F7F7;
  color: #E0E4E8;
  pointer-events: none;
}

.c-tag--recruitment {
  border-radius: 11px;
  background-color: #1565C0;
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  line-height: 14px;
}

@media screen and (min-width: 768px) {
  .c-tag--recruitment:hover {
    text-decoration: underline;
  }
}

.c-tag--advisory {
  border-radius: 11px;
  background-color: #1E88E5;
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  line-height: 14px;
}

@media screen and (min-width: 768px) {
  .c-tag--advisory:hover {
    text-decoration: underline;
  }
}

.c-tag--spot {
  border-radius: 11px;
  background-color: #03A9F4;
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  line-height: 14px;
}

@media screen and (min-width: 768px) {
  .c-tag--spot:hover {
    text-decoration: underline;
  }
}

.c-faq-card {
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}

.c-faq-card.is-open .c-faq-card__icon {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.c-faq-card.is-open .c-faq-card__body {
  height: 100%;
}

.c-faq-card .search-word {
  color: #1565C0;
}

.c-faq-card__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -11px;
  left: 20px;
  z-index: 1;
}

.c-faq-card__tag .c-tag {
  width: 170px;
  text-align: center;
}

.c-faq-card__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 30px;
  height: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 300ms;
  transition: 300ms;
}

@media screen and (max-width: 767px) {
  .c-faq-card__icon {
    right: 20px;
    width: 26px;
    height: 26px;
  }
}

.c-faq-card__icon:before {
  content: "";
  display: block;
  width: 4px;
  height: 30px;
  background: #A9B4C0;
  position: absolute;
  top: 0;
  left: 13px;
}

@media screen and (max-width: 767px) {
  .c-faq-card__icon:before {
    left: 11px;
    height: 26px;
  }
}

.c-faq-card__icon:after {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  background: #A9B4C0;
  position: absolute;
  top: 13px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .c-faq-card__icon:after {
    top: 11px;
    width: 26px;
  }
}

.c-faq-card__question {
  color: #1565C0;
  font-family: "Lato", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-faq-card__question {
    left: 18px;
    font-size: 32px;
  }
}

.c-faq-card__answer {
  color: #637487;
  font-family: "Lato", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 30px;
  top: 24px;
}

@media screen and (max-width: 767px) {
  .c-faq-card__answer {
    top: 30px;
    left: 18px;
    font-size: 32px;
  }
}

.c-faq-card__header {
  font-weight: bold;
  padding: 24px 92px 24px 98px;
  position: relative;
  min-height: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 200ms;
  transition: 200ms;
  opacity: 1;
}

.c-faq-card__header:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .c-faq-card__header {
    -webkit-transition: none;
    transition: none;
  }
  .c-faq-card__header:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .c-faq-card__header {
    padding: 30px 58px;
    min-height: 108px;
  }
}

.c-faq-card__heading {
  font-size: 18px;
  width: 100%;
  line-height: 28px;
}

@media all and (-ms-high-contrast: none) {
  .c-faq-card__heading {
    display: table-cell;
    min-height: 56px;
    vertical-align: middle;
  }
}

@media screen and (max-width: 767px) {
  .c-faq-card__heading {
    font-size: 14px;
    line-height: 24px;
  }
}

.c-faq-card__body {
  position: relative;
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  background: #FFFFFF;
  font-size: 14px;
  line-height: 2;
}

.c-faq-card__content {
  padding: 24px 40px 24px 98px;
  min-height: 104px;
}

@media screen and (max-width: 767px) {
  .c-faq-card__content {
    padding: 30px 30px 30px 58px;
    min-height: 96px;
  }
}

.c-faq-card__content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  background: #E0E4E8;
  height: 1px;
}

@media screen and (max-width: 767px) {
  .c-faq-card__content:before {
    left: 20px;
    right: 20px;
  }
}

.c-faq-card__content p + p {
  margin-top: 1em;
}

.c-faq-card__content a {
  color: #1565C0;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .c-faq-card__content a:hover {
    text-decoration: none;
  }
}

/* 新着コラム */
.top-section--column{
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .top-section--column {
    padding: 40px 30px 60px;
  }
}

.top-section--column .top-section__body {
  margin-left: 0px;
}

@media screen and (max-width: 767px) {
  .top-section--column .top-section__body {
    margin-top: 50px;
    margin-left: 0px;
  }
}

.top-column__items {
  display: flex;
}

@media screen and (max-width: 767px) {
  .top-column__items {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.top-column__items li {
  flex-basis: 280px;
  margin-right: 40px;
  overflow: hidden;
}

.top-column__items li:nth-of-type(4n) {
  margin-right: 0px;
}

@media screen and (max-width: 767px) {
  .top-column__items li {
    flex-basis: calc( (100vw - 60px) / 2 - 2.4% );
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.top-column__items .c-column-card__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
  .top-column__items .c-column-card__title {
    font-size: 14px;
  }
}

.top-column__items .c-column-card__thumbnail img{
  object-fit: cover;
  aspect-ratio: 16 / 10;
  height: auto;
}

.top-section--column .top-section__more {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top-section--column .top-section__more {
    margin-top: 20px;
  }
}

.c-column-card,
.c-material-card {
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-column-card:hover .c-column-card__title,
  .material-carousel__item .c-material-card:hover .c-material-card__title {
    color: #1565C0;
  }
  .c-column-card:hover .c-column-card__thumbnail,
  .material-carousel__item .c-material-card:hover .c-material-card__thumbnail {
    opacity: .8;
  }
  .c-column-card:hover .c-column-card__rank,
  .c-material-card:hover .c-material-card__rank {
    opacity: .8;
  }
}

@media screen and (max-width: 767px) {
  .c-column-card--pickup {
    margin-top: 30px;
  }
}

.c-column-card--pickup:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background: url(../img/common/img_label_new.svg) no-repeat center;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .c-column-card--pickup:after {
    left: auto;
    right: 10px;
    top: -15px;
    width: 72px;
    height: 42px;
    background-image: url(../img/common/sp/img_label_new_sp.svg);
  }
}

.c-column-card--pickup .c-column-card__inner {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  border-top-left-radius: 6px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .c-column-card--pickup .c-column-card__inner {
    border-top-left-radius: 0;
    display: block;
    padding: 40px 30px;
  }
}

.c-column-card--pickup .c-column-card__thumbnail {
  width: 380px;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .c-column-card--pickup .c-column-card__thumbnail {
    width: 100%;
  }
}

.c-column-card--pickup .c-column-card__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .c-column-card--pickup .c-column-card__body {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
  }
}

.c-column-card--pickup .c-column-card__category {
  position: relative;
  margin-top: 0;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .c-column-card--pickup .c-column-card__category {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    position: absolute;
    margin-top: -11px;
  }
}

.c-column-card--pickup .c-column-card__title {
  font-size: 24px;
  line-height: 36px;
  margin: 0 0 24px;
  -webkit-line-clamp: 4;
  max-height: 144px;
}

@media screen and (max-width: 767px) {
  .c-column-card--pickup .c-column-card__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 24px 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .c-column-card--pickup .c-column-card__footer {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.c-column-card--related .c-column-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .c-column-card--related .c-column-card__inner {
    display: block;
  }
}

.c-column-card--related .c-column-card__thumbnail {
  width: 220px;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .c-column-card--related .c-column-card__thumbnail {
    width: 100%;
  }
}

.c-column-card--related .c-column-card__body {
  width: 550px;
}

@media screen and (max-width: 767px) {
  .c-column-card--related .c-column-card__body {
    padding-top: 25px;
    width: 100%;
    position: relative;
  }
}

.c-column-card--related .c-column-card__category {
  position: absolute;
  margin-top: 0;
  bottom: -11px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .c-column-card--related .c-column-card__category {
    top: -11px;
    bottom: auto;
    left: auto;
  }
}

.c-column-card--related .c-column-card__title {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 15px;
  -webkit-line-clamp: 3;
  max-height: 4.5em;
}

.c-column-card--related-case .c-column-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .c-column-card--related-case .c-column-card__inner {
    display: block;
  }
}

.c-column-card--related-case .c-column-card__label {
  font-size: 14px;
  line-height: 14px;
}

.c-column-card--related-case .c-column-card__title {
  font-size: 18px;
  line-height: 26px;
  margin: 13px 0;
}

.c-column-card--related-case .c-column-card__thumbnail {
  width: 220px;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .c-column-card--related-case .c-column-card__thumbnail {
    width: 100%;
  }
}

.c-column-card--related-case .c-column-card__body {
  width: 550px;
  padding: 10px 0 15px;
}

@media screen and (max-width: 767px) {
  .c-column-card--related-case .c-column-card__body {
    padding-top: 25px;
    width: 100%;
    position: relative;
  }
}

.c-column-card--related-case .c-column-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.c-column-card--related-case .c-column-card__item {
  padding: 5px;
}

.c-column-card--side {
  padding: 15px 0;
}

.c-column-card--side .c-column-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.c-column-card--side .c-column-card__thumbnail {
  width: 120px;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .c-column-card--side .c-column-card__thumbnail {
    width: 100%;
    border-radius: 6px;
  }
}

.c-column-card--side .c-column-card__body {
  width: 220px;
}

@media screen and (max-width: 767px) {
  .c-column-card--side .c-column-card__body {
    width: 100%;
  }
}

.c-column-card--side .c-column-card__rank {
  border-top-left-radius: 4px;
}

@media screen and (max-width: 767px) {
  .c-column-card--side .c-column-card__rank {
    border-top-left-radius: 6px;
  }
}

.c-column-card--side .c-column-card__rank::before {
  border-width: 20px;
}

.c-column-card--side .c-column-card__rank-num {
  width: 22px;
  height: 24px;
  font-size: 14px;
  letter-spacing: -.5px;
}

@media screen and (max-width: 767px) {
  .c-column-card--side .c-column-card__rank-num {
    font-size: 12px;
    letter-spacing: -1px;
  }
}

.c-column-card--side .c-column-card__title {
  margin: 0;
  padding-left: 15px;
  font-size: 16px;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  max-height: 4.5em;
}

@media screen and (max-width: 767px) {
  .c-column-card--side .c-column-card__title {
    padding-left: 0;
    margin-top: 15px;
  }
}

.c-column-card--recommended .c-column-card__title {
  margin: 25px 0 0;
  font-size: 16px;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  max-height: 4.5em;
}

@media screen and (max-width: 767px) {
  .c-column-card--recommended .c-column-card__title {
    -webkit-line-clamp: 2;
  }
}

.c-column-card--recommended .c-column-card__footer {
  margin-top: 8px;
}

.c-column-card--slide {
  width: 287px;
}

@media screen and (max-width: 767px) {
  .c-column-card--slide {
    width: 100%;
  }
}

.c-column-card--slide.c-column-card--three {
  width: 220px;
}

.c-material-card--slide.c-material-card--three {
  width: 192px;
}

@media screen and (max-width: 767px) {
  .c-column-card--slide.c-column-card--three,
  .c-material-card--slide.c-material-card--three {
    width: 100%;
  }
}

.c-column-card--slide.c-column-card--three .c-column-card__title {
  margin: 25px 0 0;
  font-size: 16px;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  max-height: 4.5em;
}

.c-material-card--slide.c-material-card--three .c-material-card__title {
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  max-height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
  .c-column-card--slide.c-column-card--three .c-column-card__title,
  .c-material-card--slide.c-material-card--three .c-material-card__title {
    margin: 15px 0 5px;
  }
}

.c-column-card--slide .c-column-card__category,
c-material-card--slide .c-material-card__category {
  position: absolute;
  margin-top: -11px;
}

.c-column-card--slide .c-column-card__title,
c-material-card--slide .c-material-card__title {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .c-column-card--slide .c-column-card__title,
  c-material-card--slide .c-material-card__title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}

.c-column-card--slide .c-column-card__footer {
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .c-column-card--slide .c-column-card__footer {
    display: block;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-column-card--slide .c-column-card__author {
    padding-left: 0;
    border-left: none;
    margin-top: 12px;
  }
}

.c-column-card__anchor,
.c-material-card__anchor {
  -webkit-transition: 300ms;
  transition: 300ms;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.c-column-card__anchor:focus,
.c-material-card__anchor:focus {
  outline: none;
}

.c-column-card__inner {
  display: block;
}

.other-authors{
  margin-top: 100px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .other-authors{
    margin-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.other-authors__title{
  font-size: 24px;
  color: #1565C0;
  font-weight: bold;
  margin-bottom: 30px;
}

.other-authors ul{
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  margin-right: -40px;
  margin-bottom: -40px;
}

@media screen and (max-width: 767px) {
  .other-authors ul{
    display: block;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.other-authors li{
  flex-basis: 240px;
  margin-right: 40px;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .other-authors li{
    margin-right: 0px;
    text-align: left;
    margin-bottom: 32px;
  }
}

.other-authors li a{
  display: block;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .other-authors li a{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.other-authors li a:hover img {
  opacity: 0.8;
}

.other-authors li a:hover .other-authors__name,
.other-authors li a:hover .other-authors__position{
  color: #1565C0;
}

.other-authors li:nth-of-type(3n){
  margin-right: 0%;
}

.other-authors__image {
  display: block;
}

@media screen and (max-width: 767px) {
  .other-authors__image {
    flex-basis: 16vw;
  }
}

.other-authors__image img{
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .other-authors__image img{
    width: 16vw;
    height: 16vw;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
  }
}

.other-authors__text{
  display: block;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .other-authors__text{
    display: block;
    margin-top: 0;
    flex-basis: calc( 100vw - 60px - 16vw - 4vw );
  }
}

.other-authors__name{
  font-size: 17px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .other-authors__name{
    font-size: 19px;
  }
}

.other-authors__name--kana {
  font-size: 13px;
  font-weight: bold;
}

.other-authors__position{
  font-size: 12px;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
  .other-authors__position{
    line-height: 1.7;
  }
}

.c-column-card__rank {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-top-left-radius: 6px;
  z-index: 1;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.c-column-card__rank::before {
  content: '';
  display: block;
  border: 30px solid #1565C0;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.c-column-card__rank-num {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

@media screen and (max-width: 767px) {
  .c-column-card__rank-num{
    width: 22px;
    height: 22px;
    font-size: 10px;
    letter-spacing: -1px;
    position: absolute;
  }
}

.c-column-card__category {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -11px;
  z-index: 3;
}

.c-column-card__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  margin: 25px 0 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 84px;
}

@media screen and (max-width: 767px) {
  .c-column-card__title,
  .c-material-card__title {
    font-size: 20px;
    line-height: 1.5;
    max-height: 4.5em;
  }
}

.c-column-card__author {
  padding-left: 12px;
  border-left: 1px solid #E0E4E8;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-column-card__author a {
  color: #637487;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .c-column-card__author a:hover {
    color: #1565C0;
    text-decoration: none;
  }
}

.c-column-card__author-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.c-column-card__author-image {
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: #E6EAEA;
}

.c-column-card__author-image img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.c-column-card__author-name {
  margin-left: 9px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: bold;
  max-height: 1.4em;
  overflow: hidden;
}

.c-column-card__author-name span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}

.c-column-card__date {
  font-size: 12px;
  line-height: 18px;
  color: #637487;
  font-weight: bold;
  padding-right: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
  overflow: hidden;
}

.c-column-card__date--update::before,
.c-material-card__date--update::before {
  content: '｜';
}

.c-column-card__thumbnail,
.c-material-card__thumbnail {
  -webkit-transition: 300ms;
  transition: 300ms;
  background: #E6EAEA;
  border-radius: 6px;
  overflow: hidden;
}

.c-column-card__thumbnail img,
.c-material-card__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.c-column-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-news-card {
  position: relative;
  cursor: pointer;
}

.c-news-card__thumbnail{
  -webkit-transition: 300ms;
    transition: 300ms;
    background: #E6EAEA;
    border-radius: 6px;
    overflow: hidden;
}

.c-news-card__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.c-news-card__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
  margin: 2px 0 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 84px;
}

@media screen and (min-width: 768px) {
  .c-news-card:hover .c-news-card__title {
    color: #1565C0;
  }
  .c-news-card:hover .c-news-card__thumbnail {
    opacity: .8;
  }
  .c-news-card:hover .c-news-card__rank {
    opacity: .8;
  }
}

.c-news-card__title a {
  -webkit-transition: 300ms;
  transition: 300ms;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 768px) {
  .c-news-card__title a:hover {
    color: #1565C0;
  }
}

.c-news-card__date {
  margin-top: 20px;
  color: #637487;
  font-size: 15px;
  line-height: 18px;
  font-weight: bold;
}

.c-case-study-card {
  background: #FFFFFF;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(103, 103, 103, 0.1);
  box-shadow: 4px 4px 10px 0 rgba(103, 103, 103, 0.1);
  position: relative;
}

.c-case-study-card--slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  background: #FFFFFF;
  width: 348px;
}

@media screen and (max-width: 767px) {
  .c-case-study-card--slide {
    display: block;
    width: 70vw;
  }
}

.c-case-study-card--slide .c-case-study-card__title {
  -webkit-transition: 300ms;
  transition: 300ms;
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 78px;
}

@media screen and (max-width: 767px) {
  .c-case-study-card--slide .c-case-study-card__title {
    -webkit-line-clamp: 4;
    max-height: 104px;
  }
}

.c-case-study-card--slide .c-case-study-card__title > a {
  color: #1565C0;
  text-decoration: underline;
}

.c-case-study-card--slide .c-case-study-card__title > a:hover {
  text-decoration: none;
}

.c-case-study-card--slide .c-case-study-card__body {
  display: block;
  padding: 20px 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .c-case-study-card--slide .c-case-study-card__body {
    padding: 20px 20px 30px;
  }
}

.c-case-study-card--slide .c-case-study-card__thumbnail {
  width: 348px;
  height: 210px;
  background: #E6EAEA no-repeat center/cover;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .c-case-study-card--slide .c-case-study-card__thumbnail {
    width: 100%;
  }
}

.c-case-study-card--slide .c-case-study-card__company {
  width: auto;
  height: 26px;
  margin-right: 0;
  font-size: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.case-study__logo img {
  width: auto;
  height: 32px;
}

.c-case-study-card--slide .c-case-study-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-case-study-card--slide .c-case-study-card__tags .c-tag {
  margin-right: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .c-case-study-card--slide .c-case-study-card__tags .c-tag {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

.c-case-study-card--slide .c-case-study-card__tags .c-tag:last-child {
  margin-right: 0;
}

.c-case-study-card--slide .c-case-study-card__tags .c-tag--primary-outilined:hover {
  background: #fff !important;
  color: #1565C0 !important;
}

.c-case-study-card__anchor {
  -webkit-transition: 300ms;
  transition: 300ms;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.c-case-study-card__anchor:focus {
  outline: none;
}

.c-case-study-card__content {
  padding: 50px 60px 40px;
}

@media screen and (max-width: 767px) {
  .c-case-study-card__content {
    padding: 40px 30px 30px;
  }
}

.c-case-study-card__link {
  background: #F7F7F7;
  padding: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-case-study-card__link .c-button.c-button--l {
    width: 100%;
    max-width: 326px;
  }
}

.c-case-study-card__thumbnail {
  margin-bottom: 20px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.c-case-study-card__thumbnail img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.c-case-study-card__category {
  position: absolute;
  left: 60px;
  top: -18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .c-case-study-card__category {
    top: -57px;
    left: 0;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: -42px;
  }
}

@media screen and (min-width: 768px) {
  .c-case-study-card__category .c-tag:hover {
    text-decoration: none;
  }
}

.c-case-study-card__category .c-tag {
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .c-case-study-card__category .c-tag + .c-tag {
    margin-top: 10px;
  }
}

.c-case-study-card__heading {
  margin-bottom: 30px;
  color: #1565C0;
  font-size: 28px;
  font-weight: bold;
  line-height: 44px;
}

@media screen and (max-width: 767px) {
  .c-case-study-card__heading {
    margin-bottom: 20px;
  }
}

.c-case-study-card__heading a {
  color: #1565C0;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .c-case-study-card__heading a:hover {
    text-decoration: none;
  }
}

.c-case-study-card__heading a:focus {
  outline: none;
}

.c-case-study-card__title a:focus {
  outline: none;
}

.c-case-study-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .c-case-study-card__body {
    display: block;
  }
}

.c-case-study-card__company {
  width: 380px;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .c-case-study-card__company {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.c-case-study-card__name {
  font-size: 20px;
  font-weight: bold;
}

.c-case-study-card__detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-case-study-card .company-info {
  display: table;
}

.c-case-study-card .company-info__item {
  display: table-row;
}

.c-case-study-card .company-info__title {
  display: table-cell;
  color: #A3A3A3;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
  padding: 5px 12px 5px 0;
}

.c-case-study-card .company-info__detail {
  display: table-cell;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 22px;
  padding: 5px 0;
}

@media screen and (min-width: 768px) {
  .c-case-study-card .company-info__detail .c-tag.c-tag--primary-outilined:hover {
    color: #1565C0;
    background: transparent;
  }
}

.c-case-study-card .subject__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-case-study-card .subject__label {
  position: relative;
  background: #637487;
  color: #FFFFFF;
  width: 110px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-case-study-card .subject__label {
    width: 84px;
  }
}

.c-case-study-card .subject__label:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -1px);
  transform: translate(-50%, -1px);
  border: 15px solid transparent;
  border-top-color: #637487;
}

.subject__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #F7F7F7;
  padding: 30px 40px;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .subject__body {
    padding: 21px 24px 37px;
  }
}

.subject__body li {
  font-size: 16px;
  padding-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .subject__body li {
    font-size: 15px;
  }
}

.subject__body li::before {
  content: '●';
  color: #637487;
  font-size: 13px;
  padding-right: 10px;
  position: absolute;
  left: 0;
}

.subject__body li strong {
  font-weight: bold;
}

.solution__text li {
  font-size: 16px;
  padding-bottom: 8px;
  position: relative;
  padding-left: 28px;
}

@media screen and (max-width: 767px) {
  .solution__text li {
    font-size: 15px;
  }
}

.solution__text li::before {
  content: '';
  width: 22px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 3px;
  color: #637487;
  font-size: 13px;
  padding-right: 10px;
  background: url('../img/common/icon_check.svg') no-repeat center top;
  background-size: contain;
}

.solution__text li strong {
  font-weight: bold;
}

.c-case-study-card .subject__item {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.c-case-study-card .subject__item::before {
  content: "・";
}

.c-case-study-card .solution {
  margin-top: 30px;
}

.c-case-study-card .solution__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-case-study-card .solution__label {
  position: relative;
  background: #1565C0;
  color: #FFFFFF;
  width: 110px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-case-study-card .solution__label {
    width: 84px;
  }
}

.c-case-study-card .solution__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #EBF6FD;
  padding: 30px 40px;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .c-case-study-card .solution__body {
    padding: 24px;
  }
}

.c-case-study-card .solution__sub-heading {
  display: inline-block;
  background: #42BFE3;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  padding: 5px 20px;
  margin-bottom: 10px;
}

.c-case-study-card .solution__heading {
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}

.c-case-study-card .solution__benefit {
  padding-left: 50px;
  padding-top: 5px;
  font-size: 18px;
  font-weight: bold;
  min-height: 36px;
  background: url(../img/common/icon_check.svg) no-repeat left top;
}

.c-case-study-card .solution__benefit + .solution__benefit {
  margin-top: 20px;
}

.c-hero {
  background-position: top center;
  background-size: cover;
  background-color: #EBF6FD;
  color: #1565C0;
}

.c-hero--column {
  background-image: url(../img/hero/bg_h1_column.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--column {
    background-image: url(../img/hero/sp/bg_h1_column_sp.webp);
  }
}

.c-hero--case-study {
  background-image: url(../img/hero/bg_h1_solution.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--case-study {
    background-image: url(../img/hero/sp/bg_h1_solution_sp.webp);
  }
}

.c-hero--news {
  background-image: url(../img/hero/bg_h1_news.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--news {
    background-image: url(../img/hero/sp/bg_h1_news_sp.webp);
  }
}

.c-hero--material {
  background-image: url(../img/hero/bg_h1_download.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--material {
    background-image: url(../img/hero/sp/bg_h1_download_sp.webp);
  }
}

.c-hero--committee {
  background-image: url(../img/hero/bg_h1_committee.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--committee {
    background-image: url(../img/hero/sp/bg_h1_committee_sp.webp);
  }
}

.c-hero--guidance {
  background-image: url(../img/hero/bg_h1_guidance.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--guidance {
    background-image: url(../img/hero/sp/bg_h1_guidance_sp.webp);
  }
}

.c-hero--faq {
  background-image: url(../img/hero/bg_h1_faq.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--faq {
    background-image: url(../img/hero/sp/bg_h1_faq_sp.webp);
  }
}

.c-hero--contact {
  background-image: url(../img/hero/bg_h1_contact.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--contact {
    background-image: url(../img/hero/sp/bg_h1_contact_sp.webp);
  }
}

.c-hero--price {
  background-image: url(../img/hero/bg_h1_price.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--price {
    background-image: url(../img/hero/sp/bg_h1_price_sp.webp);
  }
}

.c-hero--support {
  background-image: url(../img/hero/bg_h1_price.webp);
}

@media screen and (max-width: 767px) {
  .c-hero--support {
    background-image: url(../img/hero/sp/bg_h1_price_sp.webp);
  }
}

.c-hero__inner {
  position: relative;
  width: 1240px;
  margin: auto;
  padding: 56px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .c-hero__inner {
    width: 100%;
    position: static;
    display: block;
    min-height: 1px;
    padding: 30px;
  }
}

.c-hero__content {
  width: 100%;
}

.c-hero__heading {
  font-weight: bold;
  font-size: 34px;
  line-height: 48px;
}

@media screen and (max-width: 767px) {
  .c-hero__heading {
    font-size: 26px;
    line-height: 36px;
  }
}

.c-hero__heading--kana {
  font-size: 26px;
  vertical-align: 5px;
}

@media screen and (max-width: 767px) {
  .c-hero__heading--kana {
    font-size: 18px;
  }
}

.c-hero__sub-heading {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-hero__sub-heading {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    position: static;
    margin-top: 0;
    padding: 0 30px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .page-template-risk-diagnose .c-breadcrumb{
    display: none;
  }
}

.c-breadcrumb__list {
  font-size: 12px;
  line-height: 18px;
  margin: auto;
  width: 1240px;
  color: #637487;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb__list {
    font-size: 12px;
    width: 100%;
    line-height: 18px;
  }
}

.c-breadcrumb__list a {
  color: #1565C0;
}

.c-breadcrumb__item {
  display: inline;
}

.c-breadcrumb__item > a {
  color: #1565C0;
}

.c-breadcrumb__item > a:hover {
  text-decoration: underline;
}

.c-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 4px;
  position: relative;
  top: -1px;
  color: #1565C0;
}

/* -----------------------------
FVの資料請求と問合せボタン（テストパターン用）
----------------------------- */
.c-button--auto {
  font-size: 22px;
  text-align: center;
  line-height: 24px;
  border-radius: 30px;
  padding: 18px 50px 18px 35px;
  display: inline-block;
  width: auto;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .c-button--auto {
    font-size: 17px;
    display: block;
  }
}

.top-section__buttons{
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .top-section__buttons{
    margin-left: 0px;
  }
}

.top-section__buttons li {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .top-section__buttons li {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .top-section__buttons li + li{
    margin-bottom: 0px;
  }
}

.top-section__buttons li {
  margin-left: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-section__buttons li {
    margin-left: 0px;
  }
}

.top-section__buttons a:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 22px;
  background: url(../../assets/img/common/icon_arrow_slide_s_w_r.svg) no-repeat center/contain;
  vertical-align: -3px;
  margin-left: 10px;
  right: 20px;
}

.top-section__buttons li:first-of-type {
  margin-left: 0px;
}

/* -----------------------------
ここまで
----------------------------- */

@media screen and (max-width: 767px) {
  .c-side-section {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .l-contents--column-single .c-side-section,
  .l-contents--news-single .c-side-section {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .l-contents--column-single .c-side-section--category,
  .l-contents--news-single .c-side-section--category {
    display: block;
  }
}

.c-side-section + .c-side-section {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .c-side-section + .c-side-section {
    margin-top: 0px;
  }
}

.c-side-section__banner {
  margin-bottom: -20px;
}

.c-side-section__banner a {
  margin-bottom: 20px;
  display: block;
}

.c-side-section--material .c-side-section__body {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .c-side-section--category {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .c-side-section--category .c-side-section__heading {
    display: none;
  }
}

.c-side-section__heading {
  position: relative;
  color: #434E5B;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 20px;
}

.c-side-section__heading:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  bottom: 0;
  background: #F7F7F7;
}

.c-side-section__heading:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1565C0), to(#03A9F4));
  background: linear-gradient(90deg, #1565C0 0%, #03A9F4 100%);
}

@media screen and (max-width: 767px) {
  .category {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #EBF6FD;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 767px) {
  .category__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 0 30px;
  }
}

.category__item {
  border-bottom: 1px solid #E0E4E8;
}

@media screen and (max-width: 767px) {
  .category__item {
    border: none;
    padding-right: 30px;
  }
}

.category__item a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  padding: 25px 0;
  -webkit-transition: 300ms;
  transition: 300ms;
  background: url(../img/common/img_arrow_m_gray.svg) no-repeat right 8px center;
}

@media screen and (min-width: 768px) {
  .category__item a:hover {
    color: #1565C0;
  }
}

@media screen and (max-width: 767px) {
  .category__item a {
    background: transparent;
    white-space: nowrap;
    padding: 15px 0;
    font-size: 16px;
    font-weight: normal;
    position: relative;
  }
}

.category__item.is-current a {
  color: #1565C0;
}

@media screen and (max-width: 767px) {
  .category__item.is-current a {
    font-weight: bold;
  }
}

@media screen and (max-width: 767px) {
  .category__item.is-current a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#1565C0), to(#03A9F4));
    background: linear-gradient(90deg, #1565C0 0%, #03A9F4 100%);
  }
}

.ranking {
  padding-top: 15px;
}

@media screen and (max-width: 767px) {
  .ranking {
    padding-top: 0px;
  }
}

.ranking__item:not(:first-child) {
  border-top: 1px solid #E0E4E8;
}

.popular-tag {
  padding: 25px 0;
  border-bottom: 1px solid #E0E4E8;
}

.popular-tag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.popular-tag__item {
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .ranking__item .c-column-card__inner{
    justify-content: space-between;
    position: relative;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .c-column-card__rank::before {
    border-width: 18px;
  }
}

@media screen and (max-width: 767px) {
  .ranking__item .c-column-card__thumbnail{
    flex-basis: 30%;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .ranking__item .c-column-card__body{
    flex-basis: 66%;
  }
}

@media screen and (max-width: 767px) {
  .ranking__item .c-column-card__title{
    font-size: 14px;
    margin-top: 0;
  }
}

.search__section {
  border-radius: 6px;
  background-color: #F6F8FA;
  padding: 40px 60px;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .search__section {
    margin: 30px 0 0;
    padding: 20px;
  }
}

.search--faq {
  margin-top: 0;
  padding: 40px 110px;
}

@media screen and (max-width: 767px) {
  .search--faq {
    padding: 20px;
  }
}

.search--case-study {
  position: relative;
  padding: 40px 95px 70px;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .search--case-study {
    margin: 0;
    padding: 30px 30px 40px;
  }
}

.search--side {
  margin-top: 0;
  padding: 20px;
}

.search--side .search__box {
  height: 48px;
}

.search--side .search__input {
  font-size: 18px;
  max-width: calc(100% - 80px);
}

.search--side .search__button {
  max-width: 80px;
  font-size: 18px;
}

.search__box {
  height: 58px;
  border: 3px solid #CBD8E4;
  border-radius: 6px;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .search__box {
    height: 48px;
  }
}

.search__input {
  width: 100%;
  max-width: calc(100% - 110px);
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 33px;
  text-indent: 15px;
  padding: 5px 0 !important;
}

@media screen and (max-width: 767px) {
  .search__input {
    font-size: 18px;
    max-width: calc(100% - 80px);
  }
}

.search__button {
  max-width: 110px;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  line-height: 27px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2F9EE1), to(#1565C0));
  background: linear-gradient(180deg, #2F9EE1 0%, #1565C0 100%);
}

@media screen and (max-width: 767px) {
  .search__button {
    max-width: 80px;
    font-size: 18px;
  }
}

.search__submit {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .search__submit {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .search__submit .c-button.c-button--l {
    width: 100%;
    max-width: 326px;
  }
}

/* ヘッダーと一緒に追従する検索エリア */
.header-search{
  border-radius: 0 0 3px 3px;
  position: fixed;
  display: inline-block;
  top: 86px;
  right: calc(50% - 1240px/2 );
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .header-search{
    display: none;
  }
}

.header-search__box {
  border: 3px solid #CBD8E4;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .header-search__box {
    height: 40px;
  }
}

.header-search__input {
  width: 160px;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 46px;
  text-indent: 15px;
  height: 46px;
  padding: 5px 0 !important;
  transition: all .6s ease;
  background: #FFF !important;
}

@media screen and (max-width: 767px) {
  .header-search__input {
    font-size: 16px;
    max-width: calc(100% - 80px);
  }
}

.header-search__button {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: bold;
  line-height: 22px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2F9EE1), to(#1565C0));
  background: linear-gradient(180deg, #2F9EE1 0%, #1565C0 100%);
  width: 64px;
}

@media screen and (max-width: 767px) {
  .header-search__button {
    max-width: 80px;
    font-size: 18px;
  }
}

.header-search__input:focus{
  width: 300px;
}

.c-download-area {
  margin: 40px 0;
}

@media screen and (max-width: 767px) {
  .c-download-area {
    margin: 30px 0;
  }
}

.c-download-area__inner {
  width: 1240px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .c-download-area__inner {
    width: 100%;
    padding: 0 30px;
  }
}

.c-download-area__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-contact-area {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, right top, from(#1565C0), to(#03A9F4));
  background: linear-gradient(90deg, #1565C0 0%, #03A9F4 100%);
}

@media screen and (max-width: 767px) {
  .c-contact-area {
    padding: 40px 30px 35px;
  }
}

.c-contact-area__inner {
  width: 1240px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .c-contact-area__inner {
    width: 100%;
  }
}

.c-contact-area__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact {
  text-align: center;
}

.contact__link {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .contact__link .c-button:last-child {
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .contact__link .c-button.c-button--xl {
    width: 100%;
    max-width: 420px;
  }
}

/* 他サービス紹介部分 */
.top-section--other-services .top-section__body {
  margin: 60px 0 100px;
}

@media screen and (max-width: 767px) {
  .top-section--other-services .top-section__body {
    margin: 30px 0;
    padding: 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .top-section--other-services .top-section__heading {
    font-size: 23px;
  }
}

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

@media screen and (max-width: 767px) {
  .other-services__items {
    display: flex;
    flex-direction: column;
  }
}

.other-services__items li {
  flex-basis: 48%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .other-services__items li {
    flex-basis: 100%;
    padding-bottom: 40px;
  }
}

.other-services__items li a {
  display: block;
  transition: 300ms;
}

.other-services__items li a:hover {
  opacity: 0.8;
}

.other-services__img img {
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  .other-services__img img {
    width: 100%;
    height: auto;
  }
}

.other-services__title {
  display: block;
  font-size: 22px;
  color: #1565C0;
  font-weight: bold;
  margin-top: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .other-services__title{
    font-size: 22px;
    margin-top: 16px;
  }
}

.other-services__description {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.cta__cost-reduction {
  text-align: center;
  padding-bottom: 50px;
  background-color: #044777;
}

@media screen and (max-width: 767px) {
  .cta__cost-reduction {
    padding-bottom: 20px;
  }
}

.cta__cost-reduction--inner {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 14px;
}

@media screen and (max-width: 767px) {
  .cta__cost-reduction--inner {
    padding-top: 30px;
    padding-bottom: 0px;
  }
}

.cta__cost-reduction--inner img {
  max-width: 90%;
  height: auto;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.cta__cost-reduction--inner img:hover {
  opacity: 0.8;
}

.cta__cost-reduction--subheading {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta__cost-reduction .contact__link {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .cta__cost-reduction .contact__link {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
}

.contact__tel-num {
  display: inline-block;
  font-size: 24px;
  padding-left: 24px;
  margin-left: 10px;
  background: url(../img/common/icon_tel_white.svg) no-repeat left center;
}

.contact__tel-num a {
  color: #FFFFFF;
}

.contact__text {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.5;
}

/* -----------------------------
共通フッターに複数CTAを置くABテスト用
----------------------------- */
.c-contact-alternate-area {
  display: none;
}

#AbTestFooterCta:target .c-contact-area {
  display: none;
}

#AbTestFooterCta:target .c-contact-alternate-area {
  display: block;
}

.c-contact-alternate-area img {
  max-width: 100%;
}

.contact-alternate__headline {
  padding: 70px 0 170px;
  background: -webkit-gradient(linear, left top, right top, from(#1565C0), to(#03A9F4));
  background: linear-gradient(90deg, #1565C0 0%, #03A9F4 100%);
}

@media screen and (max-width: 767px) {
  .contact-alternate__headline {
    padding: 50px 30px 35px;
  }
}

.contact-alternate__headline__inner {
  width: 910px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .contact-alternate__headline__inner {
    width: 100%;
    flex-flow: column;
  }
}

.contact-alternate__headline--image {
  flex-basis: 270px;
  position: relative;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .contact-alternate__headline--image {
    text-align: center;
  }
}

.contact-alternate__headline--image img {
  width: 180px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(13, 25, 66, 0.2);
  box-shadow: 0 2px 12px 0 rgba(13, 25, 66, 0.2);
}

.contact-alternate__add-resource {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background-color: #1565C0;
  color: #FFF;
  position: absolute;
  top: 20px;
  left: 18px;
  transform: rotate(-12deg);
  font-size: 20px;
  padding-top: 23px;
  text-align: center;
  font-weight: bold;
}

.contact-alternate__add-resource span {
  font-size: 17px;
  display: inline-block;
  border-top: 1px solid #FFF;
  margin-top: 2px;
  padding-top: 3px;
  font-weight: normal;
}

.contact-alternate__headline--text {
  flex-basis: 590px;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .contact-alternate__headline--text {
    margin-top: 20px;
    flex-basis: auto;
  }
}

.contact-alternate__headline--text strong {
  font-weight: bold;
}

.contact-alternate__headline--text .c-button {
  display: block;
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .contact-alternate__headline--text .c-button {
    display: block;
    margin: 15px auto 0;
    max-width: 100%;
  }
}

.content-alternate__heading--title {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .content-alternate__heading--title{
    font-size: 25px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .contact-alternate__headline {
    width: 100%;
  }
}

.contact-alternate__items {
  width: 1040px;
  margin: 0 auto;
  position: relative;
  top: -100px;
}

@media screen and (max-width: 767px) {
  .contact-alternate__items {
    width: 100%;
    top: 0px;
  }
}

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

@media screen and (max-width: 767px) {
  .contact-alternate__items ul {
    flex-flow: column;
  }
}

.contact-alternate__items li {
  width: 320px;
  font-size: 13px;
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 30px 25px 0;
}

@media screen and (max-width: 767px) {
  .contact-alternate__items li {
    margin: 0 auto 10px;
    padding-bottom: 20px;
  }
}

.contact-alternate__items li img {
  margin-bottom: 10px;
}

.contact-alternate__items li .c-button {
  width: 90%;
  margin-top: 30px;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  border-radius: 24px;
  padding: 12px 0;
  -webkit-box-shadow: 0 3px 20px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 3px 20px 0 rgb(0 0 0 / 20%);
}

@media screen and (max-width: 767px) {
  .contact-alternate__items li .c-button {
    margin: 10px auto 0;
  }
}

.content-alternate__items--title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .content-alternate__items--title {
    margin-bottom: 10px;
  }
}

/* -----------------------------
共通フッターに複数CTAを置くABテスト用　ここまで
----------------------------- */

.spot-contact {
  text-align: center;
}

.spot-contact__button {
  margin-bottom: 16px;
}

.spot-contact__button .c-button.c-button--spot-top {
  width: 100%;
  max-width: 420px;
}

.spot-contact__link {
  margin-top: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .spot-contact__link {
    margin-top: 15px;
  }
}

.spot-contact__link a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .spot-contact__link a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .spot-contact__link a {
    font-size: 24px;
    line-height: 36px;
  }
}

.spot-contact__text {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .spot-contact__text {
    text-align: left;
  }
}

.c-banner-area {
  padding: 40px 0 15px;
}

@media screen and (max-width: 767px) {
  .c-banner-area {
    padding: 30px;
  }
}

.c-banner-area__inner {
  width: 1240px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .c-banner-area__inner {
    width: 100%;
  }
}

.c-banner-area__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .banner__list {
    display: block;
  }
}

.banner__item {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .banner__item {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .banner__item + .banner__item {
    margin-top: 20px;
  }
}

.banner__button {
  display: block;
  background: #165D73 no-repeat center;
  background-size: cover;
  border-radius: 6px;
  width: 520px;
  color: #FFFFFF;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 34px;
  padding: 26px 16px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(13, 25, 66, 0.2);
  box-shadow: 0 2px 12px 0 rgba(13, 25, 66, 0.2);
  -webkit-transition: 200ms;
  transition: 200ms;
  opacity: 1;
}

.banner__button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .banner__button {
    -webkit-transition: none;
    transition: none;
  }
  .banner__button:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .banner__button {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    padding: 32px 16px;
  }
}

.banner__button--recruit.lazyloaded {
  background-image: url(../img/common/bn_bg_duty.webp);
}

.banner__button--contact {
  background-image: url(../img/common/bn_bg_alliance.webp);
}

.other-site-link {
  text-align: center;
  font-size: 13px;
  padding-bottom: 20px;
}

.other-site-link a {
  color: #637487;
}

.other-site-link a:hover {
  opacity: 0.8;
}

.spot-note-area {
  padding: 60px 0 80px;
  background: #EBF6FD;
}

@media screen and (max-width: 767px) {
  .spot-note-area {
    padding: 40px 30px 60px;
  }
}

.spot-note-area__inner {
  width: 1240px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .spot-note-area__inner {
    width: 100%;
  }
}

.spot-note-area__heading {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .5px;
  color: #1565C0;
  text-align: center;
  padding-top: 30px;
}

.spot-note-area__heading:before, .spot-note-area__heading:after {
  content: '';
  display: block;
  height: 2px;
  width: 40px;
  position: absolute;
  top: 0;
}

.spot-note-area__heading:before {
  right: 50%;
  background: #03A9F4;
}

.spot-note-area__heading:after {
  left: 50%;
  background: #1565C0;
}

@media screen and (max-width: 767px) {
  .spot-note-area__heading {
    font-size: 28px;
  }
}

.spot-note-area__body {
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .spot-note-area__body {
    margin-top: 30px;
  }
}

.spot-note-area__list {
  display: inline-block;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .spot-note-area__list {
    display: block;
  }
}

.spot-note-area__item {
  font-size: 14px;
  line-height: 28px;
}

@media screen and (max-width: 767px) {
  .spot-note-area__item {
    line-height: 24px;
  }
}

.spot-note-area__item a {
  color: #1565C0;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .spot-note-area__item a:hover {
    text-decoration: none;
  }
}

.c-pagination--hidden {
  display: none;
}

.c-share__list {
  display: flex;
  border-radius: 6px;
  background-color: #FFFFFF;
  column-gap: 20px;

}

@media screen and (max-width: 767px) {
  .c-share__list {
    border-radius: 0;
  }
}

.c-share-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 200ms;
  opacity: 1;
  padding: 6px 0;
}

.c-share-item:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .c-share-item {
    -webkit-transition: none;
    transition: none;
    padding: 0;
  }
  .c-share-item:hover {
    opacity: 1;
  }
}

.c-share-item--x .c-share-item__icon {
  background-image: url(../img/common/icon_sns_x.svg);
}

.c-share-item--facebook .c-share-item__icon {
  background-image: url(../img/common/icon_sns_facebook.svg);
}

.c-share-item--hatena .c-share-item__icon {
  background-image: url(../img/common/icon_sns_bookmark.svg);
}

.c-share-item--pocket .c-share-item__icon {
  background-image: url(../img/common/icon_sns_pocket.svg);
}

.c-share-item__icon {
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .c-share-item__icon {
    width: 24px;
    height: 24px;
  }
}

.c-service-link {
  margin-top: 60px;
}

.c-service-link__item + .c-service-link__item {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .c-service-link__item + .c-service-link__item {
    margin-top: 50px;
  }
}

.c-service-link-item {
  display: block;
  position: relative;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-transition: 200ms;
  transition: 200ms;
  opacity: 1;
}

.c-service-link-item:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .c-service-link-item {
    -webkit-transition: none;
    transition: none;
  }
  .c-service-link-item:hover {
    opacity: 1;
  }
}

.c-service-link-item:before {
  content: "";
  display: block;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .c-service-link-item--recruitment {
    padding-top: 188px;
  }
}

.c-service-link-item--recruitment:before {
  bottom: 15px;
  left: 40px;
  width: 123px;
  height: 142px;
  background: url(../img/common/img_service_recruitment.svg) no-repeat center/contain;
}

@media screen and (max-width: 767px) {
  .c-service-link-item--recruitment:before {
    bottom: auto;
    top: -30px;
    left: 50%;
    width: 173px;
    height: 199px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .c-service-link-item--advisory {
    padding-top: 188px;
  }
}

.c-service-link-item--advisory:before {
  bottom: 13px;
  left: 27px;
  width: 137px;
  height: 142px;
}

.c-service-link-item--advisory.lazyloaded:before{
  background: url(../img/common/img_service_advisory.svg) no-repeat center/contain;
}

@media screen and (max-width: 767px) {
  .c-service-link-item--advisory:before {
    bottom: auto;
    top: -30px;
    left: 50%;
    width: 191px;
    height: 198px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .c-service-link-item--spot {
    padding-top: 140px;
  }
}

.c-service-link-item--spot:before {
  top: 12px;
  left: -10px;
  width: 189px;
  height: 108px;
  background: url(../img/common/img_service_spot.svg) no-repeat center/contain;
}

@media screen and (max-width: 767px) {
  .c-service-link-item--spot:before {
    bottom: auto;
    top: -30px;
    left: 50%;
    width: 264px;
    height: 151px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.c-service-link-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 40px 40px 210px;
}

@media screen and (max-width: 767px) {
  .c-service-link-item__inner {
    padding: 0 30px 40px;
    display: block;
    text-align: center;
  }
}

.c-service-link-item__sub-heading {
  color: #323B44;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 14px;
}

.c-service-link-item__sub-heading span {
  font-weight: normal;
  display: block;
}

.c-service-link-item__heading {
  color: #1565C0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-service-link-item__heading {
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .c-service-link-item__more {
    margin-top: 25px;
  }
}


/* -----------------------------
トップと嘱託産業医サービスページに導入実績を設置するABテスト用
----------------------------- */
.top-section--achievement {
  display: none;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #FFF;
}

@media screen and (max-width: 767px) {
  .top-section--achievement {
    padding-top: 30px;
    padding-bottom: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

#AbTestAchievement:target .top-section--achievement {
  display: block;
}

@media screen and (max-width: 767px) {
  .top-section--achievement .top-section__inner{
    padding: 0 30px;
  }
}

.top-section--achievement__contents{
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .top-section--achievement__contents{
    display: flex;
    height: 250px;
  }
}

.top-section--achievement__contents-title{
  flex-basis: 25%;
  background-color: #1565C0;
  color: #FFFFFF;
  padding: 25px 40px 30px;
}

@media screen and (max-width: 767px) {
  .top-section--achievement__contents-title{
    padding: 10px 20px 20px;
  }
}

.top-section__achievement-title{
  font-size: 30px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .top-section__achievement-title{
    text-align: center;
    margin-bottom: 0px;
  }
}

.top-section--achievement__supplement{
  font-size: 11px;
}

.top-section--achievement__contents-element {
  padding: 30px;
  border: 1px solid #1565C0;
}

@media screen and (min-width: 768px) {
  .top-section--achievement__contents-element {
    flex-basis: 75%;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .top-section--achievement__contents-element {
    padding: 0 20px;
  }
}

.top-section--achievement__contents-element li{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .top-section--achievement__contents-element li{
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .top-section--achievement__contents-element li{
    flex-basis: 33.333%;
    background-position: center 5px;
  }
}

.top-section--achievement__contents-element li:nth-child(1){
  padding-top: 110px;
  line-height: 1.4;
  background-image: url(../img/advisory/img_problem_advisory_02.svg);
  background-size: 170px auto;
}

@media screen and (max-width: 767px) {
  .top-section--achievement__contents-element li:nth-child(1){
    background-position: calc(50% - 80px) 20px;
    background-size: auto 85px;
    padding-left: 35%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.top-section--achievement__contents-element li:nth-child(2){
  padding-top: 125px;
  line-height: 1.2;
  background-image: url(../img/recruitment/img_problem_recruitment_03.svg);
  background-size: 170px auto;
}

@media screen and (max-width: 767px) {
  .top-section--achievement__contents-element li:nth-child(2){
    background-position: calc(50% - 80px) 12px;
    background-size: auto 85px;
    padding-left: 35%;
    padding-top: 30px;
    padding-bottom: 32px;
  }
}

.top-section--achievement__contents-element li:nth-child(3){
  padding-top: 125px;
  line-height: 1.4;
  background-image: url(../img/common/img_6per-cancel.svg);
  background-size: 110px auto;
}

@media screen and (max-width: 767px) {
  .top-section--achievement__contents-element li:nth-child(3){
    background-position: calc(50% - 80px) 10px;
    background-size: auto 80px;
    padding-left: 35%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.top-section--achievement__contents-element li strong{
  font-size: 37px;
  color: #1565C0;
  margin: 0 3px 0 6px;
  vertical-align: -2px;
}

@media screen and (max-width: 767px) {
  .top-section--achievement__contents-element li strong{
    font-size: 30px;
  }
}

.top-section--achievement__contents-element li span{
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .top-section--achievement__contents-element li span{
    font-size: 13px;
  }
}

.top-section--achievement__contents-element li small{
  font-size: 13px;
  font-weight: normal;
  margin-left: 3px;
}

@media screen and (min-width: 768px) {
  .top-section--achievement__contents-element li small{
    font-size: 7px;
  }
}

@media screen and (min-width: 768px) {
  .top-section--achievement__contents li:nth-child(1),
  .top-section--achievement__contents li:nth-child(2){
    border-right: 1px solid #E0E4E8;
  }
}

@media screen and (max-width: 767px) {
  .top-section--achievement__contents li:nth-child(1),
  .top-section--achievement__contents li:nth-child(2){
    border-bottom: 1px solid #E0E4E8;
  }
}

/* -----------------------------
簡易お見積もりフォームにリンクした事業場のみ選択するフォーム設置部分
----------------------------- */
.easy-estimate{
  background-color: #1565C0;
  border-radius: 6px;
  text-align: center;
  padding: 35px 0 45px;
  margin: 40px 0;
}

@media screen and (max-width: 767px) {
  .easy-estimate{
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 30px 30px 30px;
    border-radius: 0px;
  }
}

.easy-estimate__description{
  font-size: 18px;
  margin-bottom: 10px;
  color: #FFFFFF;
  width: 370px;
  margin: 0 auto 15px;
  background: url(../../assets/img/common/img_estimate.svg) no-repeat left 24px;
  background-size: 40px auto;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .easy-estimate__description{
    width: 100%;
    background-size: 35px auto;
  }
}

.easy-estimate__description span{
  display: block;
  font-size: 26px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .easy-estimate__description span{
    font-size: 22px;
  }
}

.easy-estimate__form-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 700px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .easy-estimate__form-inner {
    width: 100%;
    display: block;
  }
}

.easy-estimate__form-inner::before {
  z-index: 1;
  position: absolute;
  right: 160px;
  top: 16px;
  content: "";
  display: block;
  height: 20px;
  width: 10px;
  background: url(../../assets/img/common/arrow_step.svg) no-repeat left top;
  transform: rotate(90deg);
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .easy-estimate__form-inner::before {
    height: 15px;
    width: 15px;
    top: 20px;
    right: 20px;
  }
}

.easy-estimate__select {
  height: 50px;
  border-radius: 6px;
  background-color: #FFFFFF;
  font-size: 16px;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .easy-estimate__select {
    width: 100%;
    font-size: 15px;
    margin-bottom: 20px;
  }
}

.easy-estimate__button{
  border-radius: 6px;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
  width: auto;
  font-size: 18px;
  box-shadow: none;
  margin-left: 10px;
}

.pagenation {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagenation__sp{
  visibility: hidden;
  height: 0;
}

@media screen and (max-width: 767px) {
  .pagenation__pc{
    visibility: hidden;
    height: 0;
  }
  .pagenation__sp{
    visibility: visible;
    height: auto;
  }
}

.pagenation .page-numbers {
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
}

.pagenation a,
.pagenation span {
  margin: 0 4px;
  border-radius: 50%;
}

.pagenation a:hover {
  background-color: #1565C0;
  color: #FFF;
}

.pagenation .prev,
.pagenation .next {
  width: auto;
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .pagenation .prev,
  .pagenation .next {
    display: inline-block;
  }
}

.pagenation .prev {
  margin-right: 10px;
}

.pagenation .next {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .pagenation .prev {
    margin-right: 0;
  }

  .pagenation .next {
    margin-left: 0;
  }
}

.pagenation .prev::before,
.pagenation .next::after {
  content: '';
  width: 26px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/common/img_arrow_m_gray.svg);
  background-repeat: no-repeat;
  position: relative;
  top: 0;
}

@media screen and (max-width: 767px) {
  .pagenation .prev::before,
  .pagenation .next::after {
    display: none;
  }
}

.pagenation .prev::before {
  transform: rotate(180deg);
  background-position: right 6px;
}

.pagenation .next::after {
  background-position: right 5px;
}

.pagenation .prev:hover,
.pagenation .next:hover {
  background-color: transparent;
  color: #1565C0;
}

.pagenation .current{
  background-color: #1565C0;
  color: #FFF;
}

/* -----------------------------
コラムカテゴリ
----------------------------- */
.column-category{
  margin-top: 20px;
  padding: 15px 30px;
}

.column-category__heading {
  position: relative;
  color: #434E5B;
  font-weight: bold;
  line-height: 1.4;
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 4px;
}


.column-category__heading:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  bottom: 0;
  background: #F7F7F7;
}

.column-category__heading:after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 3px;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1565C0), to(#03A9F4));
  background: linear-gradient(90deg, #1565C0 0%, #03A9F4 100%);
}

@media screen and (max-width: 767px) {
  .column-category__heading:after {
    width: 50px;
  }
}

.column-category__items {
  display: flex;
  flex-wrap: wrap;
}

.column-category__items li {
  border-bottom: 1px solid #E0E4E8;
  flex-basis: 50%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.column-category__items li a {
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 46px;
  -webkit-transition: 300ms;
  transition: 300ms;
  padding-right: 20px;
  background: url(../img/common/img_arrow_m_gray.svg) no-repeat right 0px center;
}

.column-category__items li:nth-of-type(2n) a {
  padding-left: 10px;
}

.column-category__items li a:hover {
  color: #1565C0;
}

.column-category__items li a img {
  vertical-align: -3px;
}

@media screen and (max-width: 767px) {
  .column-category__items li a img {
    vertical-align: -4px;
    width: 18px;
    height: auto;
  }
}


/* -----------------------------
サービス一覧への動線（下層ページ用）
----------------------------- */
.service__list {
  display: flex;
  margin: 0 -20px;
}

@media screen and (max-width: 767px) {
  .service__list {
    margin: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.service__item {
  flex-basis: 33.333%;
  padding: 0 20px;
}

.column__services .service__item,
.case__services .service__item {
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .column__services .service__item,
  .case__services .service__item {
    padding: 0;
  }
  .column__services .service__item:nth-child(1),
  .case__services .service__item:nth-child(1)  {
    flex-basis: 100%;
  }
  .column__services .service__item:nth-child(2),
  .column__services .service__item:nth-child(3),
  .case__services .service__item:nth-child(2),
  .case__services .service__item:nth-child(3)  {
    flex-basis: 48%;
  }
}

@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
    padding: 0;
  }
}

.service-card {
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
}

@media screen and (max-width: 767px) {
  .column__services .service-card,
  .case__services .service-card {
    box-shadow: none;
  }
}

.service-card--advisory .service-card__header--pc {
  background-color: #1565C0;
}

.service-card--recruitment .service-card__header--pc {
  background-color: #1E88E5;
}

.service-card--spot .service-card__header--pc {
  background-color: #03A9F4;
}

.service-card--advisory .service-card__header--pc {
  padding-top: 34px;
}


.service-card--recruitment .service-card__header--pc {
  padding-top: 20px;
}

.service-card--spot .service-card__header--pc {
  padding-top: 34px;
}

.column__services .service-card__header--pc,
.case__services .service-card__header--pc {
  padding-left: 10px;
  padding-right: 10px;
}

.service-card__header--pc span {
  font-size: 16px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.column__services .service-card__header--pc span,
.case__services .service-card__header--pc span {
  font-size: 14px;
}

.service-card__body {
  padding: 236px 30px 40px;
  background-repeat: no-repeat;
}

.column__services .service-card__body,
.case__services .service-card__body {
  background-size: auto 120px;
  padding: 160px 10px 10px;
}

.column__services .service__item:nth-child(3) .service-card__body,
.case__services .service__item:nth-child(3) .service-card__body {
  background-size: auto 90px;
}

@media screen and (max-width: 767px) {
  .column__services .service-card__body,
  .case__services .service-card__body {
    padding-right: 0px;
    padding-left: 0px;
  }
}

.service-card--advisory .service-card__body.lazyloaded {
  background-image: url(../img/common/img_service_advisory.svg);
  background-position: top 18px center;
}

.service-card--recruitment .service-card__body.lazyloaded {
  background-image: url(../img/common/img_service_recruitment.svg);
  background-position: top 20px center;
}

.service-card--spot .service-card__body.lazyloaded {
  background-image: url(../img/common/img_service_spot.svg);
  background-position: top 33px center;
}

@media screen and (max-width: 767px) {
  .column__services .service-card__body .c-button--fluid,
  .case__services .service-card__body .c-button--fluid {
    padding: 10px 0;
    font-size: 18px;
  }
}

.service-card__heading {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  color: #1565C0;
  font-weight: bold;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .service-card__heading {
    font-size: 18px;
  }
}

.service-card__text {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 24px;
  height: calc(24px * 5);
}

@media screen and (max-width: 767px) {
  .service-card__text {
    height: auto;
  }
}

.service-card__target {
  text-align: center;
  margin-bottom: 20px;
}

.service-card__target-header {
  background-color: #EBF6FD;
  color: #1565C0;
  font-size: 16px;
  line-height: 24px;
  padding: 5px;
}

.service-card__target-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 78px;
  background-color: #FAFAFA;
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .service-card__target-body {
    padding: 16px 14px;
  }
}

.service-card__target-body span {
  font-size: 14px;
}

.column__block + .column__block {
  margin-top: 50px;
}

.service-card__header--pc {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  height: 90px;
}

@media screen and (max-width: 767px) {
  .service-card__header--pc {
    display: none;
  }
}

.service-card__header--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .service-card__header--sp {
    display: block;
    text-align: center;
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 22px;
    font-size: 13px;
    height: 4em;
  }
}

.service-card__header--sp span {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .service-card__header--sp span {
    font-size: 10px;
    line-height: 16px;
    display: block;
  }
}

.column__heading {
  position: relative;
  font-size: 26px;
  font-weight: bold;
  line-height: 30px;
  letter-spacing: .5px;
  color: #434E5B;
  padding: 15px 15px 15px 36px;
  background: #FAFAFA;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .column__heading {
    background: #FFFFFF;
    color: #434E5B;
    line-height: 1.4;
    font-size: 24px;
    padding: 0 0 15px;
    margin-bottom: 30px;
  }
}

.column__heading:before {
  content: '';
  position: absolute;
  display: block;
  background: #1565C0;
  height: 2px;
  width: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media screen and (max-width: 767px) {
  .column__heading:before {
    width: 100%;
    top: auto;
    height: 3px;
    bottom: 0;
    background: #F7F7F7;
    -webkit-transform: none;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .column__heading:after {
    content: "";
    position: absolute;
    display: block;
    height: 3px;
    bottom: 0;
    background: -webkit-gradient(linear, left top, right top, from(#1565C0), to(#03A9F4));
    background: linear-gradient(90deg, #1565C0 0%, #03A9F4 100%);
    width: 50px;
  }
}


/* -----------------------------
コラム右カラムのおすすめのお役立ち資料
----------------------------- */
.material__list--column-sidebar {
  margin-top: 20px;
}

.material__item--image-only + .material__item--image-only {
  margin-top: 30px;
}

.material__item--image-only .c-material-card__thumbnail img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.material__item--image-only .c-material-card__thumbnail a:hover {
  opacity: 0.8;
  transition: 200ms;
}

.material__item--image-only a:hover .c-material-card__title {
  color: #1565C0;
}

.material__item--image-only .c-material-card__body {
  margin-top: 8px;
}

.material__item--image-only .c-material-card__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* -----------------------------
企業ロゴスライダー
----------------------------- */

.company {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .company {
    padding: 16px 0 10px;
    position: relative;
    top: 0;
    width: 100%;
    background-color: #FFF;
  }
}

.company__logo-slider {
  background: url(../img/common/img_company_logos.webp) repeat-x left top;
  background-size: auto 100%;
  /* 画像の横幅が変わったからここのdurationの数値を変える(PC用) */
  animation: bg-slider 40s linear infinite;
  height: 156px;
  width: 100%;
}


@media screen and (max-width: 767px) {
  .company__logo-slider {
    height: 76px;
    /* 画像の横幅が変わったからここのdurationの数値を変える(SP用) */
    animation-duration: 52s;
  }
}

@keyframes bg-slider {
  from {
    background-position: 0 0;
  }

  to {
    /* 画像の横幅が変わったからここのxの数値を変える */
    background-position: -4598px 0;
  }
}

.performance-basis {
  font-size: 11px;
  color: #525C67;
  letter-spacing: 0.5px;
  padding-bottom: 30px;
  width: 1240px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .performance-basis {
    padding-bottom: 4px;
    width: 100%;
    padding-left: 1em;
    text-indent: -1em;
  }
}

/* -----------------------------
実績訴求部分
----------------------------- */
.appeal-items {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .appeal-items {
    padding-top: 16px;
    flex-wrap: wrap;
    gap: 2vw 3vw;
  }
}

@media screen and (max-width: 767px) {
  .appeal-items li {
    width: 44%;
    text-align: center;
  }

  .appeal-items li img {
    width: 100%;
    height: auto;
  }
}

.top-section__appeal {
  width: 1240px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top-section__appeal {
    width: 100%;
    margin: 0;
  }
}

.top-section__appeal .appeal-items {
  width: 1000px;
  border-radius: 8px;
  background: #FFF;
  padding-left: 16px;
  padding-right: 16px;
  box-shadow: 2px 2px 10px 0px rgba(46, 46, 46, 0.18);
}

@media screen and (max-width: 767px) {
  .top-section__appeal .appeal-items {
    width: 100%;
    border-radius: 0;
    padding-left: 0px;
    padding-right: 0px;
    box-shadow: none;
  }
}


/* -----------------------------
会社概要
----------------------------- */
.block__company--about {
  padding: 80px 0 96px 0;
  background-color: #FFF;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .block__company--about {
    padding: 48px 0 64px 0;
  }
}

.block__company--about--table {
  margin: 24px auto 64px auto;
}

@media only screen and (max-width: 767px) {
  .block__company--about--table {
    margin: 0 20px 48px 20px;
  }
}

.block__company--about--table th {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.7;
  vertical-align: bottom;
  min-width: 160px;
  padding: 16px;
  height: 96px;
  text-align: right;
  border-bottom: 4px solid #03A9F4;
  color: #323B44;
}

@media only screen and (max-width: 767px) {
  .block__company--about--table th {
    min-width: 110px;
    padding: 8px;
  }
}

.block__company--about--table td {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  vertical-align: bottom;
  padding: 16px;
  height: 96px;
  border-bottom: 2px solid #959595;
  color: #323B44;
}

@media only screen and (max-width: 767px) {
  .block__company--about--table td {
    padding: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .block__company--about--table th,
  .block__company--about--table td {
    font-size: 14px;
  }
}

.top-cvr__yuryo_img img {
  width: 270px;
}

.top-cvr__yuryo {
  display: flex;
  justify-content: center;
  gap: 48px;
}

@media only screen and (max-width: 767px) {
  .top-cvr__yuryo {
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
  }
}

.top-cvr__yuryo .title {
  color: #323B44;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.top-cvr__yuryo .text {
  color: #323B44;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

/* -----------------------------
産業医紹介を確約（タクシーCM埋め込み部分）
----------------------------- */
.taxi-cm {
  background-color: #FAFAFA;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .taxi-cm {
    /* padding: 20px 20px 80vw; */
    padding: 30px 20px;
  }
}

.taxi-cm__inner {
  background-size: 342px auto;
  box-shadow: 2px 2px 10px 0px rgba(46, 46, 46, 0.18);
  width: 1010px;
  margin-left: auto;
  margin-right: auto;
  padding: 70px 64px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .taxi-cm__inner {
    width: 100%;
    padding: 8vw;
    flex-direction: column;
    row-gap: 20px;
  }
}

.taxi-cm__heading {
  color: #1565C0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 767px) {
  .taxi-cm__heading {
    font-size: 20px;
  }
}

.taxi-cm__description {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.5px;
  margin-top: 24px;
  color: #637487;
}

@media screen and (max-width: 767px) {
  .taxi-cm__description {
    font-size: 15px;
  }
}

.taxi-cm__note {
  font-size: 12px;
  margin-top: 10px;
}

.taxi-cm__text {
  flex-basis: 520px;
}

@media screen and (max-width: 767px) {
  .taxi-cm__text {
    flex-basis: 100%;
  }
}

.taxi-cm__movie {
  flex-basis: 320px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .taxi-cm__movie {
    flex-basis: auto;
    text-align: center;
  }
}

.taxi-cm__movie img {
  margin-top: 10px;
  width: 100%;
  height: auto;
}

.taxi-cm__movie span {
  display: inline-block;
  margin: 0 auto;
  font-weight: bold;
  text-align: center;
  position: relative;
  font-size: 18px;
  padding: 0 30px;
}

.taxi-cm__movie span::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 1px;
  height: 70%;
  background: #323B44;
  border-radius: 3px;
  transform: rotate(-25deg);
}
.taxi-cm__movie span::after {
  position: absolute;
  content: "";
  right: 0;
  top: 2px;
  width: 1px;
  height: 70%;
  background: #323B44;
  border-radius: 3px;
  transform: rotate(25deg);
}

/*--------------------------------------
  モーダル表示
--------------------------------------*/
.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
    align-self: center;
    width: 60%;
    padding: 30px 30px 15px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.4em;
    transition: 0.5s;
}

.modal_content p {
  padding-top: 0;
}

.close_button {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: translateY(20px);
}

.open_button {
   color: #4f96f6;
    background-color: #eeeeee;
    font-weight: bold;
    text-align: center;
    cursor :pointer;
    transition: all 0.3s;
    display: block;
    margin-top: 40px;
    margin-bottom: 1px;
    padding: 12px 2px;
    max-width:300px;
    text-decoration: none;
}

.open-button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/

}

/*アイコンを表示*/
.open-button:after {
font-family: "Font Awesome 5 Free";
  content: "\f2d0";
    padding-left: 8px;
}

/*ラベルホバー時*/
.open-button:hover {
  color: #FFFFFF;
  background-color: #4f96f6;
  transition: .6s;
}

.modal_title2 {
  font-size: 1.5em;
	position: relative;
	overflow: hidden;
  padding-bottom: 10px;
  margin-top:0;
  margin-bottom: 0;
}

.modal_title2::before,
.modal_title2::after{
	content: "";
	position: absolute;
	bottom: 0;
}

/* h2 プライマリカラー*/
.modal_title2:before{
	border-bottom: 4px solid #6bb6ff;
	width: 100%;
}
/* h2 セカンダリカラー*/
.modal_title2:after{
	border-bottom: 4px solid #c8e4ff;
	width: 100%;
}

/* -----------------------------
「専門資格を有するスタッフがチーム体制でサポート」のパート
----------------------------- */
.top-section--support {
  padding: 80px 0 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top-section--support {
    padding: 56px 0 0;
  }
}

.top-cvr__support_img {
  padding: 40px 0 0 0;
}

@media screen and (max-width: 767px) {
  .top-cvr__support_img {
    padding: 48px 0 24px 0;
  }
}

.top-cvr__support_img img {
  width: 963px;
}

@media screen and (max-width: 767px) {
  .top-cvr__support_img img {
    width: calc(335 / 375 * 100vw);
  }
}


/* -----------------------------
accompaniment_elements
----------------------------- */
.accompaniment_elements {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding-bottom: 48px;
}

@media only screen and (max-width: 767px) {
  .accompaniment_elements {
    gap: 16px;
    padding-bottom: 64px;
  }
}

.accompaniment_elements--list {
  display: flex;
  justify-content: center;
  gap: 32px;
}

@media only screen and (max-width: 767px) {
  .accompaniment_elements--list {
    flex-direction: column;
    gap: 16px;
  }
}

.accompaniment_elements--list li {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.5px;
  width: 240px;
  height: 80px;
  background: #EBF6FD;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 12px solid;
  border-color: #1565C0;
}

@media only screen and (max-width: 767px) {
  .block__company--function--list li {
    width: calc(335 / 375 * 100vw);
    height: 56px;
  }
}

/* -----------------------------
上部に2色の青い線付きのタイトル
----------------------------- */
.top-section__heading {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .5px;
}

@media screen and (max-width: 767px) {
  .top-section__heading {
    font-size: 28px;
  }
}

.top-section__heading--with-line {
  color: #1565C0;
  text-align: center;
  padding-top: 20px;
}

.top-section__heading--with-line:before, .top-section__heading--with-line:after {
  content: '';
  display: block;
  height: 2px;
  width: 40px;
  position: absolute;
  top: 0;
}

.top-section__heading--with-line:before {
  right: 50%;
  background: #03A9F4;
}

.top-section__heading--with-line:after {
  left: 50%;
  background: #1565C0;
}

.top-section__heading strong {
  color: #1565C0;
}

.top-section__heading--p {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.5px;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .top-section__heading--p {
    font-size: 16px;
  }
}

.top-section__heading_wrapper {
  margin: 0 0 80px 0;
}

@media screen and (max-width: 767px) {
  .top-section__heading_wrapper {
    margin: 0 0 48px 0;
  }
}

.top-section__heading_bottom {
  margin: 0 0 48px 0;
}

/* -----------------------------
だから選ばれる。 エムスリーキャリア
----------------------------- */
.advisory__selected {
  background-color: #FFFAE2;
}

@media screen and (max-width: 767px) {
  .advisory__selected {
    padding: var(--inner-padding-num);
  }
}

.advisory__selected--inner {
  width: 740px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .advisory__selected--inner {
    width: 100%;
    padding-left: var(--inner-padding-num);
    padding-right: var(--inner-padding-num);
    flex-direction: column;
    row-gap: 20px;
  }
}

.advisory__selected--heading {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 767px) {
  .advisory__selected--heading {
    font-size: 28px;
  }
}

.advisory__selected--heading b {
  color: var(--main-color);
  display: block;
}


/* -----------------------------
サービス紹介パンフレットCTA
----------------------------- */
.top-cta{
  padding: 80px 0 96px 0;
  background: url('../img/common/bg_cvr_flyer.webp');
}

@media only screen and (max-width: 767px) {
  .top-cta {
    padding: 56px 0 64px 0;
  }
}

.top-cta__inner {
  width: 680px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .top-cta__inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.top-cta__heading {
  font-weight: 700;
  color: #FFF;
  letter-spacing: 1.4px;
  font-size: 34px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .top-cta__heading {
    font-size: 22px;
    line-height: 1.5;
  }
}

.top-cta__lead {
  font-size: 28px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 1.1px;
}

@media only screen and (max-width: 767px) {
  .top-cta__lead {
    font-size: 16px;
    margin-top: 10px;
  }
}

.top-cta__wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .top-cta__wrapper {
    display: block;
  }
}

.top-cta__left {
  flex-basis: 220px;
}

.top-cta__left img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .top-cta__left {
    flex-basis: 100%;
    text-align: center;
    padding-bottom: 24px;
  }

  .top-cta__left img {
    width: 40%;
  }
}

.top-cta__right {
  flex-basis: 360px;
  position: relative;
  transform: translateY(-10px);
}

@media only screen and (max-width: 767px) {
  .top-cta__right {
    margin-top: 20px;
  }
}

.top-cta__right--heading {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  display: block;
  transform: translateY(-10px);
}

.top-cta__right--heading span {
  color: #1565C0;
  padding: 6px 20px;
  background-color: #FFF;
  font-size: 20px;
  font-weight: 700;
  border-radius: 999px;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .top-cta__right--heading span {
    padding: 4px 20px;
    font-size: 18px;
  }
}

.top-cta__right-items {
  border-radius: 8px;
  border: 3px solid #FFF;
  padding: 30px 26px 26px;
  position: relative;
  margin-top: -28px;
}

.top-cta__right-items li {
  font-size: 18px;
  color: #FFF;
  list-style-type: disc;
  list-style-position: inside;
}

@media only screen and (max-width: 767px) {
  .top-cta__right-items li {
    font-size: 14px;
  }
}

.top-cta__right-button {
  margin-top: 30px;
}

/* -----------------------------
  セクションに挟むリンク
----------------------------- */
.section__link {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 48px;
}

.section__link a {
  color: #1565C0;
  font-size: 24px;
  font-weight: bold;
  text-decoration: underline;
}

/* -----------------------------
  交代特化ページ
----------------------------- */
.blue-txt {
  color: #1565c0;
}

b {
  font-weight: bold;
}

.top-section--worry {
  background: #f5fbfd;
  padding: 80px 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-section--worry {
    padding: 40px 0 0;
  }
}
.top-section--worry .top-section__heading_wrapper {
  margin-bottom: 32px;
}
.top-section--worry::before {
  position: absolute;
  content: "";
  background-color: #f5fbfd;
  width: 100%;
  height: 300px;
  left: 0;
  bottom: -300px;
}
.top-section--worry .worry-img {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.top-section--worry .worry-img img {
  width: 100%;
}

.top-section--consider {
  background-color: #fff;
  max-width: 1200px;
  margin: -10px auto 0;
  padding: 60px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-section--consider {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.top-section--consider::after {
  content: "";
  width: 0;
  position: absolute;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 60px 140px 0px 140px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .top-section--consider::after {
    border-width: 40px 100px 0px 100px;
  }
}
.top-section--consider .img {
  max-width: 840px;
  margin: 40px auto 0;
}
.top-section--consider .img img {
  width: 100%;
}

.top-section--match {
  background: #fffae2;
  padding: 80px 20px;
}
@media screen and (max-width: 767px) {
  .top-section--match {
    padding: 80px 20px 20px;
  }
}
.top-section--match h2 {
  color: #1565c0;
  text-align: center;
  margin-bottom: 30px;
}
.top-section--match .top-section__heading_wrapper {
  margin-bottom: 40px;
}
.top-section--match .match-subtitle {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.top-section--match .match-subtitle .big-txt {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .top-section--match .match-subtitle .big-txt {
    font-size: 24px;
  }
}
.top-section--match .match-price {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 3px solid #1565c0;
  border-radius: 4px;
  position: relative;
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .top-section--match .match-price {
    flex-direction: column;
  }
}
.top-section--match .match-price .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-section--match .match-price .box {
    width: 100%;
  }
}
.top-section--match .match-price .box .title {
  font-size: 18px;
  font-weight: bold;
}
.top-section--match .match-price .box .price {
  display: flex;
  align-items: flex-end;
}
.top-section--match .match-price .box .zero {
  color: #ffb32c;
  font-size: 110px;
  font-weight: 900;
  line-height: 1.1;
}
.top-section--match .match-price .box .en {
  font-weight: 900;
  font-size: 40px;
}
.top-section--match .match-price .box .sub-txt {
  background-color: #fff1b0;
  padding: 8px 16px;
  text-align: center;
  border-radius: 4px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-section--match .match-price .plus {
    padding: 24px 0;
  }
}
.top-section--match .match-price .plus img {
  height: 180px;
}
@media screen and (max-width: 767px) {
  .top-section--match .match-price .plus img {
    width: 100%;
    height: 40px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.top-section--reason {
  background-color: #fafafa;
  padding: 80px 20px;
}
@media screen and (max-width: 767px) {
  .top-section--reason {
    padding: 60px 20px;
  }
}
.top-section--reason .reason-box-wrap .box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 2px 2px 7px 0px rgba(46, 46, 46, 0.18);
  border-radius: 4px;
  max-width: 940px;
  margin: 0 auto 24px;
  padding: 32px 40px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-section--reason .reason-box-wrap .box {
    flex-direction: column;
    padding: 32px 24px;
  }
}
.top-section--reason .reason-box-wrap .box::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 80px 0 0;
  border-color: #1565c0 transparent transparent transparent;
}
.top-section--reason .reason-box-wrap .box::after {
  position: absolute;
  display: block;
  font-size: 24px;
  font-weight: bold;
  white-space: pre;
  color: #fff;
  top: 14px;
  left: 8px;
  text-align: center;
  z-index: 2;
  line-height: 1.2;
}
.top-section--reason .reason-box-wrap .box .img {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .top-section--reason .reason-box-wrap .box .img {
    width: 70%;
    margin: 0 auto;
    min-width: 200px;
    max-width: 300px;
  }
}
.top-section--reason .reason-box-wrap .box .img img {
  width: 100%;
}
.top-section--reason .reason-box-wrap .box .txtbox {
  width: 68%;
  font-weight: 700;
  font-size: 18px;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .top-section--reason .reason-box-wrap .box .txtbox {
    width: 100%;
    margin-left: 0;
    font-size: 14px;
    margin-top: 24px;
  }
}
.top-section--reason .reason-box-wrap .box .txtbox .big-txt {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .top-section--reason .reason-box-wrap .box .txtbox .big-txt {
    font-size: 18px;
  }
}
.top-section--reason .reason-box-wrap .box .txtbox .small-txt {
  font-size: 12px;
  font-weight: 500;
  margin-top: 12px;
}
.top-section--reason .reason-box-wrap .box:nth-child(1)::after {
  content: "01";
}
.top-section--reason .reason-box-wrap .box:nth-child(2)::after {
  content: "02";
}
.top-section--reason .reason-box-wrap .box:nth-child(3)::after {
  content: "03";
}
.top-section--reason .reason-box-wrap .box:nth-child(4)::after {
  content: "04";
}

.top-section--consult {
  padding: 40px;
  background-color: #ebf6fd;
}
@media screen and (max-width: 767px) {
  .top-section--consult {
    padding: 40px 20px;
  }
}
.top-section--consult .consult-inner {
  border-radius: 4px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 40px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top-section--consult .consult-inner {
    padding: 24px 24px 50px;
  }
}
.top-section--consult .consult-inner .txtbox {
  font-weight: bold;
  text-align: left;
}
.top-section--consult .consult-inner .txtbox .title {
  font-size: 22px;
  color: #1565c0;
}
@media screen and (max-width: 767px) {
  .top-section--consult .consult-inner .txtbox .title {
    font-size: 18px;
  }
}
.top-section--consult .consult-inner .txtbox .txt {
  font-size: 16px;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .top-section--consult .consult-inner .txtbox .txt {
    font-size: 12px;
    width: 80%;
  }
}
.top-section--consult .consult-inner .img {
  max-width: 116px;
  position: absolute;
  right: 40px;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .top-section--consult .consult-inner .img {
    max-width: 80px;
    right: 20px;
  }
}
.top-section--consult .consult-inner .img img {
  width: 100%;
}

.top-section__award {
  padding: 40px 20px;
}
.top-section__award .award-inner {
  max-width: 940px;
  margin: 0 auto;
}
.top-section__award .title {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .top-section__award .title {
    font-size: 18px;
  }
}
.top-section__award .award-box-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-section__award .award-box-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.top-section__award .award-box-wrap .box {
  width: 33.3333333333%;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .top-section__award .award-box-wrap .box {
    width: 46%;
  }
}
.top-section__award .award-box-wrap .box:last-child {
  margin-right: 0;
}
.top-section__award .award-box-wrap .box img {
  width: 100%;
}
.top-section__award .small-txt {
  font-size: 12px;
  margin-top: 12px;
}

.top-section__voice {
  padding: 80px 20px;
  background-color: #fafafa;
}
@media screen and (max-width: 767px) {
  .top-section__voice {
    padding: 60px 20px;
  }
}
.top-section__voice .voice-inner {
  max-width: 940px;
  margin: 0 auto;
}
.top-section__voice .voice-inner .box {
  display: flex;
  box-shadow: 2px 2px 7px 0px rgba(46, 46, 46, 0.18);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top-section__voice .voice-inner .box {
    flex-direction: column;
  }
}
.top-section__voice .voice-inner .box:hover {
  opacity: 0.8;
}
.top-section__voice .voice-inner .box:last-child {
  margin-bottom: 0;
}
.top-section__voice .voice-inner .box .imgbox {
  position: relative;
}
.top-section__voice .voice-inner .box .imgbox .img {
  height: 100%;
}
.top-section__voice .voice-inner .box .imgbox .img img {
  width: 240px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .top-section__voice .voice-inner .box .imgbox .img img {
    width: 100%;
    height: 280px;
  }
}
.top-section__voice .voice-inner .box .imgbox .logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px;
  background-color: #fff;
}
.top-section__voice .voice-inner .box .imgbox .logo img {
  max-width: 76px;
  width: 100%;
  height: auto;
  max-height: 52px;
}
.top-section__voice .voice-inner .box .txtbox {
  background-color: #fff;
  padding: 32px 90px 32px 32px;
  position: relative;
}
.top-section__voice .voice-inner .box .txtbox::before {
  position: absolute;
  content: "";
  background-image: url(../img/top/img_voice-arrow.webp);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top-section__voice .voice-inner .box .txtbox::before {
    right: 12px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-section__voice .voice-inner .box .txtbox {
    padding: 24px 50px 24px 24px;
  }
}
.top-section__voice .voice-inner .box .txtbox .title {
  font-size: 22px;
  font-weight: bold;
  color: #1565c0;
  line-height: 1.5;
  margin-bottom: 4px;
}
.top-section__voice .voice-inner .box .txtbox .company-name {
  font-size: 12px;
  margin-bottom: 4px;
}
.top-section__voice .voice-inner .box .txtbox .tag {
  margin-bottom: 12px;
}
.top-section__voice .voice-inner .box .txtbox .tag li {
  color: #1565c0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 32px;
  border: 1.5px solid #1565c0;
  background: #fff;
  display: inline-block;
  padding: 6px 8px;
}
.top-section__voice .voice-inner .box .txtbox .detail {
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .top-section__voice .voice-inner .box .txtbox .detail {
    font-size: 14px;
  }
}

.top-section--faq {
  background-color: #fff;
}

.top-section__cta-button--seo2 {
  padding: 16px 32px;
}

.top-tab {
  max-width: 940px;
  margin: 24px auto 0;
  padding: 0 8px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-tab {
    margin-top: 32px;
  }
}
.top-tab ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.top-tab li {
  background-color: #fff;
  width: calc(50% - 16px);
  font-weight: bold;
  cursor: pointer;
  font-size: 24px;
  padding: 20px 40px;
  border-radius: 5px;
  line-height: 1.5;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-shadow: 2px 2px 7px 0px rgba(46, 46, 46, 0.18);
  a {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top-tab li {
    flex-direction: column-reverse;
    width: calc(50% - 8px);
    font-size: 15px;
    padding: 12px 4px;
    text-align: center;
  }
}
.top-tab li.active::before {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  border: 30px solid transparent;
}
@media screen and (max-width: 767px) {
  .top-tab li.active::before {
    bottom: -50px;
  }
}
.top-tab li.first-time-tab {
  border: 4px solid #18BB7F;
  .txt {
    color: #18BB7F;
  }
}
.top-tab li.first-time-tab.active {
  background-color: #E1FFF4;
}
.top-tab li.first-time-tab.active::before {
  border-top: 30px solid #18BB7F;
}
@media screen and (max-width: 767px) {
  .top-tab li.first-time-tab.active::before {
    border-top: 20px solid #18BB7F;
  }
}
.top-tab li.change2-tab {
  border: 4px solid #F49219;
  .txt {
    color: #F49219;
  }
}
.top-tab li.change2-tab.active {
  background-color: #FFF1E0;
}
.top-tab li.change2-tab.active::before {
  border-top: 30px solid #F49219;
}
@media screen and (max-width: 767px) {
  .top-tab li.change2-tab.active::before {
    border-top: 20px solid #F49219;
  }
}
@media screen and (max-width: 767px) {
  .top-tab li .img {
    margin-bottom: 8px;
  }
}
.top-tab li .img img {
  width: auto;
  height: 102px;
}
@media screen and (max-width: 767px) {
  .top-tab li .img img {
    height: 60px;
  }
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.consider-img {
  max-width: 800px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .consider-img {
    flex-direction: column;
  }
}
.consider-img .graph {
  width: 440px;
}
@media screen and (max-width: 767px) {
  .consider-img .graph {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.consider-img .graph img {
  width: 100%;
}
.consider-img .data {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 440px;
}
@media screen and (max-width: 767px) {
  .consider-img .data {
    position: static;
    top: 0;
    right: auto;
    transform: translateY(0);
    width: 100%;
    margin: 0 auto;
  }
}
.consider-img .data img {
  width: 100%;
}
