@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
  display: block;
}

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;
}

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 {
  box-sizing: border-box;
}

main {
  display: block;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type=datetime-local]::-webkit-calendar-picker-indicator,
input[type=month]::-webkit-calendar-picker-indicator,
input[type=week]::-webkit-calendar-picker-indicator {
  color: transparent;
  cursor: pointer;
  background: #fff no-repeat center right 0px/16px 16px;
  background-size: 16px;
}

/******* Common ********/
.notscroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #282a32;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  /*スマホで横向きにしたとき文字サイズが変わらないようにする。*/
  /*文字詰め（ 古いAndroid4で一部の文字が文字化けした。使用する際は要検証。）*/
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
  /* 文字詰めすると文字間が詰まりすぎるので調整 */
}
@media screen and (max-width: 767px) {
  body {
    /* 767px */
    font-size: 14px;
  }
}

.win body {
  /* Windows (全バージョン)のみ */
}

.win body .normal-text.normal-text.normal-text.normal-text,
.win .footer .footer-nav-block .footer-nav-item a.normal-text {
  /* Windows (全バージョン)のみ */
}

.mac {
  /* Mac OSのみ */
}

.linux {
  /* linux（x11とlinux）のみ */
}

.iphone {
  /* iphoneのみ */
}

.ipad {
  /* ipadのみ */
}

.android {
  /* Androidのみ */
}

/*IE11は游ゴシックの下に隙間ができる。游ゴシックを使うときIE11はメイリオにする。*/
a {
  text-decoration: underline;
  color: #4c79af;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}
a:active {
  text-decoration: none;
}
a:focus:not(:focus-visible) {
  outline: none;
}

.client a {
  color: #386097;
}

.jobseeker a,
.customer a {
  color: #9d323d;
}

.company a {
  color: #5c7d70;
}

/*IE11用*/
main {
  display: block;
}

/*IE11用*/
picture {
  display: block;
}

/*IE11用 display:noneだとjQueryでサイズを取得できない。*/
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
template {
    visibility: hidden;
    width: 0px;
    height: 0px;
    overflow: hidden;
    speak: none;
    /* 読み上げ無視。効果は不明。*/
  }
}
img,
svg,
iframe,
picture,
video {
  vertical-align: top;
}

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

/* IE11でのSVGのサイズがおかしくなる問題
img[src$=".svg"] {
    width: 100%;
    height: auto;
}
*/
b,
strong {
  font-weight: bold;
}
.win b,
.win strong {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

em,
i {
  font-style: normal;
}

small {
  font-size: 0.8em;
}

:target {
  scroll-margin-top: 70px;
}
@media screen and (max-width: 680px) {
  :target {
    scroll-margin-top: 60px;
  }
}

/******* end Common ********/
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 *
 * Copyright (c) 2023 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1 ;
}

.animate__animated {
  opacity: 0;
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -35px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #737373;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #737373;
  opacity: 0.75;
}

.layout-h,
.layout-h-medium {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .layout-h,
.layout-h-medium {
    flex-direction: column;
  }
}

.layout-center {
  display: flex;
  justify-content: center;
}

.layout-middle {
  display: flex;
  align-items: center;
}

.layout-child-fill {
  flex: 1 1 auto;
}

.w-100 {
  width: 100% !important;
}

.mt-xl {
  margin-top: 128px;
}
@media screen and (max-width: 1280px) {
  .mt-xl {
    /* 1280px */
  }
}
@media screen and (max-width: 1024px) {
  .mt-xl {
    /* 1024px */
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .mt-xl {
    /* 767px */
    margin-top: 60px;
  }
}
@media screen and (max-width: 680px) {
  .mt-xl {
    /* 680px */
    margin-top: 40px;
  }
}
@media screen and (max-width: 350px) {
  .mt-xl {
    /* 350px */
  }
}
.mt-l {
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .mt-l {
    /* 1280px */
  }
}
@media screen and (max-width: 1024px) {
  .mt-l {
    /* 1024px */
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .mt-l {
    /* 767px */
    margin-top: 40px;
  }
}
@media screen and (max-width: 680px) {
  .mt-l {
    /* 680px */
  }
}
@media screen and (max-width: 350px) {
  .mt-l {
    /* 350px */
  }
}
.mt-m {
  margin-top: 56px;
}
@media screen and (max-width: 1280px) {
  .mt-m {
    /* 1280px */
  }
}
@media screen and (max-width: 1024px) {
  .mt-m {
    /* 1024px */
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .mt-m {
    /* 767px */
    margin-top: 30px;
  }
}
@media screen and (max-width: 680px) {
  .mt-m {
    /* 680px */
    margin-top: 25px;
  }
}
@media screen and (max-width: 350px) {
  .mt-m {
    /* 350px */
  }
}
.mt-s {
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .mt-s {
    /* 1280px */
  }
}
@media screen and (max-width: 1024px) {
  .mt-s {
    /* 1024px */
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .mt-s {
    /* 767px */
    margin-top: 25px;
  }
}
@media screen and (max-width: 680px) {
  .mt-s {
    /* 680px */
    margin-top: 15px;
  }
}
@media screen and (max-width: 350px) {
  .mt-s {
    /* 350px */
  }
}
.mt-xs {
  margin-top: 24px;
}
@media screen and (max-width: 680px) {
  .mt-xs {
    /* 680px */
    margin-top: 15px;
  }
}
.mt-60-40 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .mt-60-40 {
    margin-top: 40px;
  }
}
.mt-40 {
  margin-top: 40px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-1em {
  margin-top: 1em;
}
.mt-0 {
  margin-top: 0 !important;
}

.mb-xl {
  margin-bottom: 128px;
}
@media screen and (max-width: 1280px) {
  .mb-xl {
    /* 1280px */
  }
}
@media screen and (max-width: 1024px) {
  .mb-xl {
    /* 1024px */
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .mb-xl {
    /* 767px */
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 680px) {
  .mb-xl {
    /* 680px */
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 350px) {
  .mb-xl {
    /* 350px */
  }
}
.mb-l {
  margin-bottom: 80px;
}
@media screen and (max-width: 1280px) {
  .mb-l {
    /* 1280px */
  }
}
@media screen and (max-width: 1024px) {
  .mb-l {
    /* 1024px */
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .mb-l {
    /* 767px */
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 680px) {
  .mb-l {
    /* 680px */
  }
}
@media screen and (max-width: 350px) {
  .mb-l {
    /* 350px */
  }
}
.mb-m {
  margin-bottom: 56px;
}
@media screen and (max-width: 1280px) {
  .mb-m {
    /* 1280px */
  }
}
@media screen and (max-width: 1024px) {
  .mb-m {
    /* 1024px */
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .mb-m {
    /* 767px */
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 680px) {
  .mb-m {
    /* 680px */
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 350px) {
  .mb-m {
    /* 350px */
  }
}
.mb-s {
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .mb-s {
    /* 1280px */
  }
}
@media screen and (max-width: 1024px) {
  .mb-s {
    /* 1024px */
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .mb-s {
    /* 767px */
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 680px) {
  .mb-s {
    /* 680px */
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 350px) {
  .mb-s {
    /* 350px */
  }
}
.mb-xs {
  margin-bottom: 24px;
}
@media screen and (max-width: 680px) {
  .mb-xs {
    /* 680px */
    margin-bottom: 15px;
  }
}
.mb-60-40 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .mb-60-40 {
    margin-bottom: 40px;
  }
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-1em {
  margin-bottom: 1em;
}
.mb-0 {
  margin-bottom: 0 !important;
}

/*******  既存utility ********/
/*-------------------------------------------------------------------
	layout
-------------------------------------------------------------------*/
@media print, screen and (min-width: 737px) {
  .spOnly {
    display: none !important;
  }
}
@media screen and (max-width: 736px) {
  .pcOnly {
    display: none !important;
  }
}
@media print, screen and (min-width: 737px) {
  .pcFl {
    float: left;
  }
}
@media print, screen and (min-width: 737px) {
  .pcFr {
    float: right;
  }
}
.fL {
  float: left;
}

.fR {
  float: right;
}

.rImg {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.lImg {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

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

.wb {
  word-break: break-all;
}

.clear {
  clear: both;
}

.taL {
  text-align: left;
}

.taR {
  text-align: right;
}

.taC {
  text-align: center !important;
}

.vaM {
  vertical-align: middle;
}

.blk {
  display: block;
}

.iblk {
  display: inline-block;
}

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

/*-------------------------------------------------------------------
      text
  -------------------------------------------------------------------*/
.bold {
  font-weight: bold;
}
.win .bold {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

.fz10 {
  font-size: 10px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.colBl {
  color: #6390c6;
}

.colOr,
.catchColor {
  color: #d47c18;
}

.catchColor {
  font-weight: bold;
}
.win .catchColor {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

.ls-004 {
  letter-spacing: -0.04em;
}

.ls-1 {
  letter-spacing: -1px;
}

.leadText {
  margin-bottom: 14px;
}

@media print, screen and (min-width: 737px) {
  .leadText {
    margin-bottom: 38px;
  }
}
@media print, screen and (min-width: 737px) {
  .pcNowrap {
    white-space: nowrap;
  }
}
/*******  Utility ********/
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.inline-block {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .flex-colum-revers-sp {
    display: flex;
    flex-direction: column-reverse;
  }
}

.text-center {
  text-align: center;
}
@media (min-width: 768px) {
  .text-center-pc {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}
.text-right {
  text-align: right;
}
@media (min-width: 768px) {
  .text-right-pc {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .text-right-sp {
    text-align: right;
  }
}
.text-left {
  text-align: left;
}
@media (min-width: 768px) {
  .text-left-pc {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .text-left-sp {
    text-align: left;
  }
}

/******* end Utility ********/
.layout-text-with-pic {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .layout-text-with-pic {
    gap: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.layout-text-with-pic .layout-child-pic {
  flex: 0 0 auto;
  text-align: center;
}
.layout-text-with-pic .layout-child-text {
  flex: 1 1 auto;
}

.narrow-contents {
  width: 780px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-ttl__01 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.375;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 24px;
}
.win .c-ttl__01 {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
  .c-ttl__01 {
    font-size: 22px;
    margin-bottom: 30px;
    padding-bottom: 16px;
  }
}
.c-ttl__01:after {
  content: "";
  width: 70px;
  height: 8px;
  background: #799ac3;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.client .c-ttl__01:after {
  background-color: #6a88b1;
}

.company .c-ttl__01:after {
  background-color: #859d94;
}

@media screen and (max-width: 767px) {
  .c-ttl__01:after {
    width: 50px;
    height: 6px;
  }
}

.title-border-left {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5555555556;
  position: relative;
  padding-left: 16px;
  position: relative;
  margin-bottom: 20px;
}
.win .title-border-left {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
  .title-border-left {
    font-size: 15px;
    padding-left: 10px;
    margin-bottom: 15px;
  }
}
.title-border-left::before {
  content: "";
  display: inline-block;
  width: 3px;
  top: 0;
  bottom: 0;
  background: #4c79af;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3px;
}
.client .title-border-left::before {
  background-color: #386097;
}

.company .title-border-left::before {
  background-color: #5c7d70;
}

.title-border-bottom {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5555555556;
  padding-bottom: 15px;
  border-bottom: 2px solid #d2ddeb;
  margin-bottom: 20px;
}
.win .title-border-bottom {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

.title-bold-small {
  font-size: inherit;
  font-weight: bold;
  line-height: 1.375;
  margin-bottom: 0.75em;
}
.win .title-bold-small {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

/*******  パーツTitle ********/
.title-en {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 35px;
}
.win .title-en {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 1024px) {
  .title-en {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .title-en {
    font-size: 22px;
  }
}
@media screen and (max-width: 680px) {
  .title-en {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.title-en-in::after {
  content: "";
  width: 16px;
  height: 4px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  background-color: #4c79af;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .title-en-in::after {
    margin: 0 5px;
    height: 3px;
    width: 13px;
  }
}
.title-en::after {
  content: attr(data-title-en);
  font-family: "Ropa Sans", Arial, sans-serif;
  color: #4c79af;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .title-en::after {
    font-size: 16px;
  }
}
.title-en.title-en-center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title-en.title-en-center {
    text-align: left;
  }
}
.title-en.title-en-center .title-en-in {
  display: block;
}
@media screen and (max-width: 767px) {
  .title-en.title-en-center .title-en-in {
    display: inline-block;
  }
}
.title-en.title-en-center .title-en-in::after {
  display: block;
  margin: 5px auto;
}
@media screen and (max-width: 767px) {
  .title-en.title-en-center .title-en-in::after {
    display: inline-block;
    margin: 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .title-en.title-en-center-sp {
    text-align: center;
  }
  .title-en.title-en-center-sp .title-en-in {
    display: block;
  }
  .title-en.title-en-center-sp .title-en-in::after {
    display: block;
    margin: 5px auto;
  }
}

.pic-on-title {
  position: relative;
}
.pic-on-title img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}
.pic-on-title .on-title {
  background-color: #4c79af;
  color: #fff;
  position: absolute;
  left: -10px;
  bottom: 15px;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
  padding: 12px 20px 10px 10px;
  min-width: 180px;
  border-radius: 0px 30px 30px 0px;
  text-align: left;
}
.win .pic-on-title .on-title {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 1024px) {
  .pic-on-title .on-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .pic-on-title .on-title {
    font-size: 19px;
    padding: 8px 20px 6px 20px;
  }
}
.pic-on-title .on-title::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #146297 transparent transparent;
  position: absolute;
  left: 0px;
  bottom: -10px;
}
.pic-on-title.pic-on-title-arrow .on-title::after {
  content: "";
  background-image: url(/assets/images/arrow-white.svg);
  width: 1em;
  height: 0.9em;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
  transition: 0.3s ease-in-out transform;
}
@media (any-hover: hover) {
  .pic-on-title.pic-on-title-arrow:hover .on-title::after {
    background-image: url(/assets/images/arrow-white.svg);
    transform: translate(30%, -50%);
  }
}

.client .title-en-in::after,
.section-client .title-en-in::after,
.page-client .title-en-in::after {
  background-color: #386097;
}
.client .title-en::after,
.section-client .title-en::after,
.page-client .title-en::after {
  color: #386097;
}
.client .pic-on-title,
.section-client .pic-on-title,
.page-client .pic-on-title {
  position: relative;
}
.client .pic-on-title .on-title,
.section-client .pic-on-title .on-title,
.page-client .pic-on-title .on-title {
  background-color: #386097;
}

.customer .title-en-in::after {
  background-color: #9d323d;
}
.customer .title-en::after {
  color: #9d323d;
}
.customer .pic-on-title {
  position: relative;
}
.customer .pic-on-title .on-title {
  background-color: #9d323d;
}

.company .title-en-in::after {
  background-color: #5c7d70;
}
.company .title-en::after {
  color: #5c7d70;
}
.company .pic-on-title {
  position: relative;
}
.company .pic-on-title .on-title {
  background-color: #5c7d70;
}

.page-title {
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 70px;
  font-size: 42px;
}
.win .page-title {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 1024px) {
  .page-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .page-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 680px) {
  .page-title {
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
    max-width: 70vw;
  }
  .company .page-title {
    max-width: 78vw;
  }
  .beginner .page-title {
    max-width: 78vw;
  }
}
@media screen and (max-width: 400px) {
  .page-title {
    max-width: 80vw;
  }
}
.page-title > small:first-child {
  display: block;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  margin: 0 0 0.75em;
}
.page-title .title-in {
  display: inline-block;
  position: relative;
}
.page-title .title-in::after {
  content: "";
  position: absolute;
  background-color: #E4EBF3;
  border-radius: 100px;
  left: -10px;
  right: -10px;
  top: 50%;
  transform: translate(0, -50%);
  height: 0.34em;
  z-index: -1;
}

.client .page-title .title-in::after {
  background-color: #E1E7F0;
}

.company .page-title .title-in::after {
  background-color: #E7ECEA;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section-title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title .title-in {
  display: inline-block;
  position: relative;
  padding: 0 calc(1.875em + 30px);
  font-weight: bold;
  font-size: 32px;
  line-height: 1.375;
}
.win .section-title .title-in {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 1024px) {
  .section-title .title-in {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .section-title .title-in {
    font-size: 24px;
  }
}
@media screen and (max-width: 680px) {
  .section-title .title-in {
    font-size: 22px;
    line-height: 1.36;
  }
}
@media screen and (max-width: 1024px) {
  .section-title .title-in {
    padding: 0 calc(1.875em + 20px);
  }
}
@media screen and (max-width: 767px) {
  .section-title .title-in {
    padding: 0 calc(1.64em + 10px);
  }
}
.section-title .title-in::before {
  content: "";
  background-image: url(/assets/images/client/section-title-feature-left.svg);
  width: 1.875em;
  height: 1.46875em;
  position: absolute;
  left: calc(-1.875em - 30px);
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .section-title .title-in::before {
    left: calc(-1.875em - 20px);
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .section-title .title-in::before {
    width: 1.64em;
    height: 1.26875em;
  }
}
.section-title .title-in::after {
  content: "";
  background-image: url(/assets/images/client/section-title-feature-right.svg);
  width: 1.875em;
  height: 1.46875em;
  position: absolute;
  right: calc(-1.875em - 30px);
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .section-title .title-in::after {
    right: calc(-1.875em - 20px);
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .section-title .title-in::after {
    width: 1.64em;
    height: 1.26875em;
  }
}
.section-title.section-title-left-underline .title-in {
  padding: 0;
  padding-bottom: 0.9em;
}
.section-title.section-title-left-underline .title-in::before {
  content: none;
}
.section-title.section-title-left-underline .title-in::after {
  background-image: none;
  background-color: #4c79af;
  width: 70px;
  height: 8px;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.client .section-title .title-in::before {
  background-image: url(/assets/images/client/section-title-feature-left.svg);
}
.client .section-title .title-in::after {
  background-image: url(/assets/images/client/section-title-feature-right.svg);
}
.client .section-title.section-title-left-underline .title-in::after {
  background-image: none;
  background-color: #386097;
}

.customer .section-title .title-in::before {
  background-image: url(/assets/images/customer/section-title-feature-left.svg);
}
.customer .section-title .title-in::after {
  background-image: url(/assets/images/customer/section-title-feature-right.svg);
}
.customer .section-title.section-title-left-underline .title-in::after {
  background-image: none;
  background-color: #9d323d;
}

.company .section-title .title-in::before {
  background-image: url(/assets/images/company/section-title-feature-left.svg);
}
.company .section-title .title-in::after {
  background-image: url(/assets/images/company/section-title-feature-right.svg);
}
.company .section-title.section-title-left-underline .title-in::after {
  background-image: none;
  background-color: #5c7d70;
}

.title-bold-color {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 0.8em;
  color: #4c79af;
  line-height: 1.4;
}
.win .title-bold-color {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

.title-bold-color.title-color-blue {
  color: #386097;
}
.title-bold-color.title-color-red {
  color: #9d323d;
}
.title-bold-color.title-color-green {
  color: #5c7d70;
}
.title-bold-color-arrow {
  position: relative;
}
.title-bold-color-arrow::after {
  content: "";
  background-image: url(/assets/images/arrow-white.svg);
  width: 1em;
  height: 0.9em;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translate(-10%, -50%);
  right: 0;
  transition: 0.3s ease-in-out transform;
}
.client .title-bold-color-arrow::after {
  background-image: url(/assets/images/arrow-blue.svg);
}

@media (any-hover: hover) {
  a.box:hover .title-bold-color-arrow::after {
    transform: translate(10%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .title-bold-color {
    font-size: 18px;
  }
}
@media screen and (max-width: 680px) {
  .title-bold-color {
    font-size: 16px;
  }
}

.normal-text + .normal-text {
  margin-top: 1.3em;
}

.txt-green {
  color: #5c7d70;
}

.txt-orange {
  color: #c25700;
}

.btn-container-bottom {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .btn-container-bottom {
    margin-top: 40px;
  }
}

.back-btn-container {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .back-btn-container {
    margin-top: 40px;
  }
}
.back-btn-container-content {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.back-btn-container a.btn {
  text-decoration: none;
}

/******* 白ボックスの次にボタン ********/
.box-next-btn-block {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .box-next-btn-block {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .btn-group .btn {
    min-width: 0;
  }
}

/*******  ボタン ********/
@media screen and (max-width: 680px) {
  .btn-prev + .btn-center {
    min-width: 8em;
  }
}

.btn {
  /** 基本ボタン  **/
  display: inline-block;
  border: 2px solid;
  color: #4c79af;
  background-color: #fff;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.65em 1em 0.55em;
  padding-right: 2.2em;
  min-width: 260px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.win .btn {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 400px) {
  .btn {
    min-width: 0;
    width: 260px;
    max-width: 100%;
  }
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: #4c79af;
    border-color: #4c79af;
    color: #fff;
    text-decoration: none;
  }
  .btn:hover::after {
    background-image: url(/assets/images/arrow-white.svg);
    transform: translate(30%, -50%);
  }
}
.btn::after {
  content: "";
  background-image: url("/assets/images/arrow-light-blue.svg");
  width: 1em;
  height: 0.9em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out transform;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}
.btn.btn-external::after {
  background-image: url("/assets/images/icon-external-link-light-blue.svg");
}
@media (any-hover: hover) {
  .btn.btn-external:hover::after {
    background-image: url("/assets/images/icon-external-link-white.svg");
    transform: translate(0, -50%);
  }
}
.btn.btn-center {
  text-align: center;
  padding-right: 1em;
}
.btn.btn-center::after {
  content: none;
}
.btn.btn-blue {
  /** ボタン青  **/
  display: inline-block;
  border: 2px solid;
  color: #386097;
  background-color: #fff;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.65em 1em 0.55em;
  padding-right: 2.2em;
  min-width: 260px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.win .btn.btn-blue {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 400px) {
  .btn.btn-blue {
    min-width: 0;
    width: 260px;
    max-width: 100%;
  }
}
@media (any-hover: hover) {
  .btn.btn-blue:hover {
    background-color: #386097;
    border-color: #386097;
    color: #fff;
    text-decoration: none;
  }
  .btn.btn-blue:hover::after {
    background-image: url(/assets/images/arrow-white.svg);
    transform: translate(30%, -50%);
  }
}
.btn.btn-blue::after {
  content: "";
  background-image: url("/assets/images/arrow-blue.svg");
  width: 1em;
  height: 0.9em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out transform;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}
.btn.btn-blue.btn-external::after {
  background-image: url("/assets/images/icon-external-link-blue.svg");
}
@media (any-hover: hover) {
  .btn.btn-blue.btn-external:hover::after {
    background-image: url("/assets/images/icon-external-link-white.svg");
    transform: translate(0, -50%);
  }
}
.btn.btn-blue.btn-center {
  text-align: center;
  padding-right: 1em;
}
.btn.btn-blue.btn-center::after {
  content: none;
}
.btn.btn-orange {
  /** ボタンオレンジ  **/
  display: inline-block;
  border: 2px solid;
  color: #e77c22;
  background-color: #fff;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.65em 1em 0.55em;
  padding-right: 2.2em;
  min-width: 260px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.win .btn.btn-orange {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 400px) {
  .btn.btn-orange {
    min-width: 0;
    width: 260px;
    max-width: 100%;
  }
}
@media (any-hover: hover) {
  .btn.btn-orange:hover {
    background-color: #e77c22;
    border-color: #e77c22;
    color: #fff;
    text-decoration: none;
  }
  .btn.btn-orange:hover::after {
    background-image: url(/assets/images/arrow-white.svg);
    transform: translate(30%, -50%);
  }
}
.btn.btn-orange::after {
  content: "";
  background-image: url("/assets/images/arrow-orange.svg");
  width: 1em;
  height: 0.9em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out transform;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}
.btn.btn-orange.btn-external::after {
  background-image: url("/assets/images/icon-external-link-orange.svg");
}
@media (any-hover: hover) {
  .btn.btn-orange.btn-external:hover::after {
    background-image: url("/assets/images/icon-external-link-white.svg");
    transform: translate(0, -50%);
  }
}
.btn.btn-orange.btn-center {
  text-align: center;
  padding-right: 1em;
}
.btn.btn-orange.btn-center::after {
  content: none;
}
.btn.btn-green {
  /** ボタン緑  **/
  display: inline-block;
  border: 2px solid;
  color: #5c7d70;
  background-color: #fff;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.65em 1em 0.55em;
  padding-right: 2.2em;
  min-width: 260px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.win .btn.btn-green {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 400px) {
  .btn.btn-green {
    min-width: 0;
    width: 260px;
    max-width: 100%;
  }
}
@media (any-hover: hover) {
  .btn.btn-green:hover {
    background-color: #5c7d70;
    border-color: #5c7d70;
    color: #fff;
    text-decoration: none;
  }
  .btn.btn-green:hover::after {
    background-image: url(/assets/images/arrow-white.svg);
    transform: translate(30%, -50%);
  }
}
.btn.btn-green::after {
  content: "";
  background-image: url("/assets/images/arrow-green.svg");
  width: 1em;
  height: 0.9em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out transform;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}
.btn.btn-green.btn-external::after {
  background-image: url("/assets/images/icon-external-link-green.svg");
}
@media (any-hover: hover) {
  .btn.btn-green.btn-external:hover::after {
    background-image: url("/assets/images/icon-external-link-white.svg");
    transform: translate(0, -50%);
  }
}
.btn.btn-green.btn-center {
  text-align: center;
  padding-right: 1em;
}
.btn.btn-green.btn-center::after {
  content: none;
}
.btn.btn-red {
  /** ボタン赤  **/
  display: inline-block;
  border: 2px solid;
  color: #9d323d;
  background-color: #fff;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.65em 1em 0.55em;
  padding-right: 2.2em;
  min-width: 260px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.win .btn.btn-red {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 400px) {
  .btn.btn-red {
    min-width: 0;
    width: 260px;
    max-width: 100%;
  }
}
@media (any-hover: hover) {
  .btn.btn-red:hover {
    background-color: #9d323d;
    border-color: #9d323d;
    color: #fff;
    text-decoration: none;
  }
  .btn.btn-red:hover::after {
    background-image: url(/assets/images/arrow-white.svg);
    transform: translate(30%, -50%);
  }
}
.btn.btn-red::after {
  content: "";
  background-image: url("/assets/images/arrow-red.svg");
  width: 1em;
  height: 0.9em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out transform;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}
.btn.btn-red.btn-external::after {
  background-image: url("/assets/images/icon-external-link-red.svg");
}
@media (any-hover: hover) {
  .btn.btn-red.btn-external:hover::after {
    background-image: url("/assets/images/icon-external-link-white.svg");
    transform: translate(0, -50%);
  }
}
.btn.btn-red.btn-center {
  text-align: center;
  padding-right: 1em;
}
.btn.btn-red.btn-center::after {
  content: none;
}
.btn.btn-contact {
  /** ボタン　コンタクト　オレンジ  **/
  display: inline-block;
  border: 2px solid;
  color: #e77c22;
  background-color: #fff;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.65em 1em 0.55em;
  padding-right: 2.2em;
  min-width: 260px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  background-color: #e77c22;
  color: #fff;
  border-color: #e77c22;
  font-size: 22px;
  width: 460px;
  margin-bottom: 10px;
}
.win .btn.btn-contact {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 400px) {
  .btn.btn-contact {
    min-width: 0;
    width: 260px;
    max-width: 100%;
  }
}
@media (any-hover: hover) {
  .btn.btn-contact:hover {
    background-color: #e77c22;
    border-color: #e77c22;
    color: #fff;
    text-decoration: none;
  }
  .btn.btn-contact:hover::after {
    background-image: url(/assets/images/arrow-white.svg);
    transform: translate(30%, -50%);
  }
}
.btn.btn-contact::after {
  content: "";
  background-image: url("/assets/images/arrow-white.svg");
  width: 1em;
  height: 0.9em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out transform;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}
.btn.btn-contact.btn-external::after {
  background-image: url("/assets/images/icon-external-link-white.svg");
}
@media (any-hover: hover) {
  .btn.btn-contact.btn-external:hover::after {
    background-image: url("/assets/images/icon-external-link-white.svg");
    transform: translate(0, -50%);
  }
}
.btn.btn-contact.btn-center {
  text-align: center;
  padding-right: 1em;
}
.btn.btn-contact.btn-center::after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .btn.btn-contact {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .btn.btn-contact {
    width: 100%;
    max-width: 400px;
    font-size: 18px;
  }
}
@media screen and (max-width: 680px) {
  .btn.btn-contact {
    font-size: 16px;
  }
}
.btn.btn-contact::after {
  right: 30px;
}
.btn.btn-download {
  /** ボタン　ダウンロード  **/
  display: inline-block;
  border: 2px solid;
  color: #386097;
  background-color: #fff;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.65em 1em 0.55em;
  padding-right: 2.2em;
  min-width: 260px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  background-color: #386097;
  color: #fff;
  border-color: #386097;
  width: 100%;
  transition: background-color 0.3s ease-in-out;
}
.win .btn.btn-download {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 400px) {
  .btn.btn-download {
    min-width: 0;
    width: 260px;
    max-width: 100%;
  }
}
@media (any-hover: hover) {
  .btn.btn-download:hover {
    background-color: #386097;
    border-color: #386097;
    color: #fff;
    text-decoration: none;
  }
  .btn.btn-download:hover::after {
    background-image: url(/assets/images/arrow-white.svg);
    transform: translate(30%, -50%);
  }
}
.btn.btn-download::after {
  content: "";
  background-image: url("/assets/images/arrow-white.svg");
  width: 1em;
  height: 0.9em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out transform;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}
.btn.btn-download.btn-external::after {
  background-image: url("/assets/images/icon-external-link-white.svg");
}
@media (any-hover: hover) {
  .btn.btn-download.btn-external:hover::after {
    background-image: url("/assets/images/icon-external-link-white.svg");
    transform: translate(0, -50%);
  }
}
.btn.btn-download.btn-center {
  text-align: center;
  padding-right: 1em;
}
.btn.btn-download.btn-center::after {
  content: none;
}
.btn.btn-download::after {
  background-image: url(/assets/images/icon-download.svg);
  height: 1.3em;
  width: 1.4em;
}
@media (any-hover: hover) {
  .btn.btn-download:hover {
    background-color: #4c79af;
    border-color: #4c79af;
    color: #fff;
    text-decoration: none;
  }
  .btn.btn-download:hover::after {
    background-image: url(/assets/images/icon-download.svg);
    transform: translate(0, -50%);
  }
}
.btn.btn-w100 {
  /** ボタン 幅100%  **/
  width: 100%;
  min-width: auto;
}
.btn.btn-float-contact {
  /** ボタン フロードバナー　お問い合わせボタン  **/
  font-size: 18px;
  border-radius: 100px;
  background-color: #f9ab02;
  border-color: #fff;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .btn.btn-float-contact {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .btn.btn-float-contact {
    font-size: 14px;
  }
}
.btn.btn-float-contact::after {
  background-image: url(/assets/images/arrow-white.svg);
}
.col3-item .box-in > .btn:last-child {
  margin-bottom: 5px;
}

.btn.btn-down::after {
  transform: translate(0, -50%) rotate(90deg);
}
@media (any-hover: hover) {
  .btn.btn-down:hover::after {
    transform: translate(0, -50%) rotate(90deg);
  }
}

.btn-prev.btn-prev,
.btn-next.btn-next {
  min-width: 0;
}

.btn-prev.btn-prev {
  padding-left: 2.4em;
  padding-right: 1em;
  text-align: right;
}
.btn-prev.btn-prev::after {
  right: auto;
  left: 15px;
  transform: translate(0%, -50%) rotate(180deg);
}
@media (any-hover: hover) {
  .btn-prev.btn-prev:hover::after {
    transform: translate(-30%, -50%) rotate(180deg);
  }
}

.btn-next.btn-next {
  padding-right: 2.4em;
}

.client .float-bnr .btn-float-contact {
  background-color: #e77c22;
}

.hero-contact-btn {
  /** ボタン セカンド　MV お問い合わせボタン  **/
  display: inline-block;
  width: 416px;
  max-width: 100%;
  margin: 0 auto;
  background: #e77c22;
  border: 2px solid #e77c22;
  text-align: center;
  border-radius: 100px;
  position: relative;
}
.lead-text + .hero-contact-btn:last-child {
  width: 460px;
  max-width: 100%;
}
@media (min-width: 1400px) {
  .lead-text + .hero-contact-btn:last-child {
    width: 560px;
  }
}
@media screen and (max-width: 767px) {
  .hero-contact-btn {
    width: 100%;
    max-width: 400px;
  }
}
.hero-contact-btn a {
  border: 2px solid #fff;
  border-radius: 100px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  line-height: 1.4;
  padding: 0.6em 1em;
}
.win .hero-contact-btn a {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media (min-width: 1400px) {
  .lead-text + .hero-contact-btn:last-child a {
    font-size: 29px;
  }
}

.hero-contact-btn a:visited, .hero-contact-btn a:active {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .hero-contact-btn a {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .hero-contact-btn a {
    font-size: 18px;
  }
}
.hero-contact-btn a::before {
  content: "";
  background-image: url("/assets/images/hero-contact-feature.svg");
  width: 124px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -10px;
  top: -35px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.16));
}
@media (min-width: 1400px) {
  .lead-text + .hero-contact-btn:last-child a::before {
    width: 149px;
    height: 72px;
  }
}

@media screen and (max-width: 1024px) {
  .hero-contact-btn a::before {
    width: 110px;
    height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .hero-contact-btn a::before {
    width: 96px;
    height: 47px;
    top: -26px;
  }
}
@media screen and (max-width: 680px) {
  .hero-contact-btn a::before {
    top: -30px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.16));
  }
}
@media (any-hover: hover) {
  .hero-contact-btn a:hover {
    color: #fff;
    text-decoration: none;
  }
  .hero-contact-btn a:hover::after {
    transform: translate(30%, -50%);
  }
}
.hero-contact-btn a::after {
  content: "";
  background-image: url("/assets/images/arrow-white.svg");
  width: 1em;
  height: 0.9em;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out transform;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 30px;
}

/******* end ボタン ********/
.link[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 0.2em;
  margin-right: 0.4em;
  vertical-align: middle;
  position: relative;
  top: -0.02em;
  aspect-ratio: 22/17;
  width: 1.2941176471em;
  height: 1em;
  background: bottom right/contain no-repeat;
  background-image: url(/assets/images/target-icon-light-blue.svg);
}
.client .link[target=_blank]::after {
  background-image: url(/assets/images/target-icon-blue.svg);
}

.company .link[target=_blank]::after {
  background-image: url(/assets/images/target-icon-green.svg);
}

.staff .link[target=_blank]::after {
  background-image: url(/assets/images/target-icon-red.svg);
}

/******* end ボックス ********/
/** 背景グレー **/
.bg-normal {
  background-color: #F7F7F7;
  border-radius: 5px;
}

/** 背景白　影付き **/
.box {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 20px #d7d7d7;
  display: block;
}
a.box {
  color: inherit;
  text-decoration: none;
}
a.box.visited, a.box.active {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  a.box:hover {
    transition: box-shadow 0.3s ease-in-out;
    text-decoration: none;
  }
}
@media (any-hover: hover) and (any-hover: hover) {
  a.box:hover:hover {
    box-shadow: 0 0 25px #b3b3b3;
  }
}

.box-thumb {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 54%;
  position: relative;
}
.box-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.box-in {
  /** ボックスパディング **/
  padding: 25px 30px 25px;
}
@media screen and (max-width: 1024px) {
  .box-in {
    padding: 25px 25px 25px;
  }
}
@media screen and (max-width: 767px) {
  .box-in {
    padding: 20px;
  }
}
.box-in-narrow {
  /** ボックスパディング タブレット狭い **/
  padding: 25px 30px 20px;
}
@media screen and (max-width: 1024px) {
  .box-in-narrow {
    padding: 20px 20px 15px;
  }
}
@media screen and (max-width: 767px) {
  .box-in-narrow {
    padding: 20px;
  }
}
.box-in-has-only-child {
  padding: 20px 30px;
}
@media screen and (max-width: 1024px) {
  .box-in-has-only-child {
    padding: 16px 25px;
  }
}
@media screen and (max-width: 767px) {
  .box-in-has-only-child {
    padding: 12px 15px;
  }
}
.box-in-large {
  /** ボックスパディング 広い **/
  padding: 50px 50px 50px;
}
@media screen and (max-width: 1024px) {
  .box-in-large {
    padding: 40px 30px 40px;
  }
}
@media screen and (max-width: 767px) {
  .box-in-large {
    padding: 25px;
  }
}

/* 丸リスト */
.disc-list .disc-item {
  padding-left: 1em;
  position: relative;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .disc-list .disc-item {
    padding-left: 0.8em;
  }
}
.disc-list .disc-item::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: #4c79af;
  border-radius: 20px;
  position: absolute;
  top: 0.6em;
  left: 0;
}
@media screen and (max-width: 767px) {
  .disc-list .disc-item::before {
    width: 0.4em;
    height: 0.4em;
  }
}
.client .disc-list .disc-item::before {
  background-color: #386097;
}

.company .disc-list .disc-item::before {
  background-color: #5c7d70;
}

.disc-list .disc-item + .disc-item {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .disc-list .disc-item + .disc-item {
    margin-top: 10px;
  }
}

/*番号リスト*/
.num-list {
  counter-reset: number 0;
}
.num-list .num-item {
  position: relative;
  padding-left: 1em;
}
.num-list .num-item::before {
  counter-increment: number 1;
  content: counter(number);
  color: #4c79af;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.client .num-list .num-item::before {
  color: #386097;
}

.company .num-list .num-item::before {
  color: #5c7d70;
}

.num-list .num-item + .num-item {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .num-list .num-item + .num-item {
    margin-top: 10px;
  }
}

.content-box:where(:not(.content-box-bordered)) {
  border-radius: 5px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .content-box:where(:not(.content-box-bordered)) {
    padding: 20px;
  }
}
.content-box-bordered {
  border-radius: 5px;
  padding: 30px;
  background: #fff;
  border: 2px solid;
  border-color: #d2ddeb;
}
@media screen and (max-width: 767px) {
  .content-box-bordered {
    padding: 20px;
  }
}
.client .content-box-bordered {
  border-color: #cdd7e5;
}

.company .content-box-bordered {
  border-color: #d6dedb;
}

.staff .content-box-bordered {
  border-color: #e6ccce;
}

.form-register-single {
  display: flex;
  gap: 20px;
  max-width: 100%;
  width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.form-register-single-sub {
  flex: 1 0 0%;
  text-align: center;
  background: #F6F6F6;
  border-radius: 5px;
  padding: 56px 25px 64px;
}
.company .form-register-single-sub {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 767px) {
  .form-register-single-sub {
    width: 100%;
    padding: 40px 25px 40px;
  }
}
.form-register-single-sub-ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5555555556;
  color: #282A32;
  margin-bottom: 20px;
}
.win .form-register-single-sub-ttl {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
  .form-register-single-sub-ttl {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.form-register-single-sub-btn-normal {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 460px;
  max-width: 100%;
  min-height: 64px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding: 0.2em 1em;
  background: #e77c22;
  color: #fff;
}
.form-register-single-sub-btn-normal:visited, .form-register-single-sub-btn-normal:active {
  text-decoration: none;
  color: #fff;
}
/******* 資料ダウンロード ********/
.document-download-contents {
  text-align: left;
}
.document-download-contents .document-thumb a {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .document-download-contents .document-thumb a:hover {
    opacity: 0.8;
  }
}
.document-download-contents .document-thumb img {
  width: 100%;
}
.document-download-contents .document-name {
  background-color: #F4F7FA;
  background-color: #E1E7F0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  padding: 8px 10px;
  margin-bottom: 20px;
}
.win .document-download-contents .document-name {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media all and (-ms-high-contrast: none) {
  .document-download-contents .document-name {
    font-family: "Noto Sans JP", "メイリオ", sans-serif;
  }
}
@media screen and (max-width: 1024px) {
  .document-download-contents .document-name {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .document-download-contents .document-name {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.document-download-contents .document-category {
  margin-top: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .document-download-contents .document-category {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
.document-download-contents .document-category-item {
  background-color: #E4EBF3;
  color: #386097;
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  padding: 0 8px;
  border-radius: 3px;
  margin-right: 5px;
}
.document-download-contents .btn-download {
  margin-top: 25px;
}

/******* end 資料ダウンロード ********/
/******* マンパワークリップ ********/
.manpower-clip .manpower-clip-list .slick-dots {
  bottom: -30px;
}
.manpower-clip .manpower-clip-list .slick-list {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .manpower-clip .manpower-clip-list.col3-wrap {
    margin-left: -4vw;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .manpower-clip .manpower-clip-list .col3-item {
    margin: 0 4vw;
    margin-right: 0;
  }
}
.manpower-clip .manpower-clip-title .manpower-clip-logo {
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .manpower-clip .manpower-clip-title .manpower-clip-logo {
    width: 220px;
  }
}
@media screen and (max-width: 680px) {
  .manpower-clip .manpower-clip-title .manpower-clip-logo {
    width: 170px;
    display: block;
    margin-bottom: 5px;
  }
}
.manpower-clip .manpower-clip-title .manpower-clip-title-text {
  display: inline-block;
  vertical-align: middle;
}
.manpower-clip .manpower-clip-column a {
  text-decoration: none;
  color: #282A32;
  transition: box-shadow 0.3s ease-in-out;
  text-decoration: none;
}
@media (any-hover: hover) {
  .manpower-clip .manpower-clip-column a:hover {
    box-shadow: 0 0 25px #b3b3b3;
  }
}
.manpower-clip .manpower-clip-column .column-thumb {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 54%;
  position: relative;
}
.manpower-clip .manpower-clip-column .column-thumb-in {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.manpower-clip .manpower-clip-column .column-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
  -o-object-position: center;
     object-position: center;
  display: block;
}
.manpower-clip .manpower-clip-column .column-category {
  font-size: 14px;
  padding: 5px 8px;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  vertical-align: middle;
  color: #386097;
  background-color: #cdd7e5;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .manpower-clip .manpower-clip-column .column-category {
    /* 767px */
    font-size: 13px;
  }
}
.win .manpower-clip .manpower-clip-column .column-category {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
  .manpower-clip .manpower-clip-column .column-category {
    margin-right: 6px;
  }
}
.manpower-clip .manpower-clip-column .column-date {
  display: inline-block;
  color: #8c8c8c;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .manpower-clip .manpower-clip-column .column-date {
    font-size: 14px;
  }
}
.manpower-clip .manpower-clip-column .column-text {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .manpower-clip .manpower-clip-column .column-text {
    margin-top: 10px;
  }
}
.manpower-clip .manpower-clip-column .column-item-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

/******* end マンパワークリップ ********/
.modaal-inner-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.modaal-container {
  background: transparent;
  box-shadow: none;
}

.modaal-content {
  padding: 30px 0;
}

.modaal-content-container {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .modaal-content-container {
    padding: 25px;
  }
}

.modaal-wrapper .modaal-close {
  position: absolute;
  top: 30px;
  right: 0;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 1024px) {
  .modaal-wrapper .modaal-close {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .modaal-wrapper .modaal-close {
    transform: translate(40%, -50%);
  }
}

.modaal-wrapper .modaal-close {
  background-color: #4c79af;
}
@media (hover: hover) {
  .modaal-wrapper .modaal-close:hover {
    background-color: #799ac3;
  }
}
.modaal-wrapper.client .modaal-close {
  background-color: #386097;
}
@media (hover: hover) {
  .modaal-wrapper.client .modaal-close:hover {
    background-color: #6a88b1;
  }
}
.modaal-wrapper.company .modaal-close {
  background-color: #5c7d70;
}
@media (hover: hover) {
  .modaal-wrapper.company .modaal-close:hover {
    background-color: #859d94;
  }
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #fff;
}

@media screen and (max-width: 1024px) {
  .modaal-close:after, .modaal-close:before {
    height: 18px;
    width: 3px;
    left: 20px;
    top: 12px;
  }
}

.carousel .slick-prev, .carousel .slick-next,
.comSliderBox .slick-prev,
.comSliderBox .slick-next {
  width: 11.5px;
  height: 21px;
  background: url(/assets/images/client/download/ico-arr.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.carousel .slick-prev::before, .carousel .slick-prev::after, .carousel .slick-next::before, .carousel .slick-next::after,
.comSliderBox .slick-prev::before,
.comSliderBox .slick-prev::after,
.comSliderBox .slick-next::before,
.comSliderBox .slick-next::after {
  content: none;
}
.carousel .slick-prev,
.comSliderBox .slick-prev {
  left: -22px;
}
.carousel .slick-next,
.comSliderBox .slick-next {
  right: -22px;
  transform: translateY(-50%) scaleX(-1);
}

.sns-share {
  margin: 24px 0;
}
.sns-share-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 16px 0;
  color: #4c79af;
}
.win .sns-share-title {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

.client .sns-share-title {
  color: #386097;
}

.company .sns-share-title {
  color: #5c7d70;
}

.staff .sns-share-title {
  color: #9d323d;
}

@media screen and (max-width: 767px) {
  .sns-share-title {
    font-size: 14px;
    margin: 0 0 8px 0;
  }
}
.sns-share .sns-list {
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .sns-share .sns-list {
    gap: 4px;
  }
}

.sns-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1280px) {
  .sns-list {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .sns-list {
    gap: 4px;
  }
}

@media (any-hover: hover) {
  .link-share:hover {
    opacity: 0.8;
  }
}

/******* end コンポーネント ********/
/** モチーフ **/
.feature {
  position: relative;
  /** モチーフ左上 **/
  /** モチーフ右下 **/
  /** モチーフPCのみ **/
  /** モチーフSPのみ **/
  /** モチーフ　青 **/
  /** モチーフ　緑 **/
  /** モチーフ　赤 **/
}
.feature::before {
  content: "";
  width: 100px;
  height: 325px;
  border-radius: 100px;
  transform: rotate(20deg);
  position: absolute;
  background-color: #a5bcd7;
  z-index: -1;
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
@media screen and (max-width: 1280px) {
  .feature::before {
    width: 7.8125vw;
    height: 25.390625vw;
  }
}
@media screen and (max-width: 767px) {
  .feature::before {
    width: 11.7333333333vw;
    height: 42.1333333333vw;
  }
}
.feature::after {
  content: "";
  width: 156px;
  height: 543px;
  border-radius: 100px;
  transform: rotate(20deg);
  position: absolute;
  background-color: #a5bcd7;
  z-index: -1;
  opacity: 0.1;
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
@media screen and (max-width: 1280px) {
  .feature::after {
    width: 12.1875vw;
    height: 42.421875vw;
  }
}
@media screen and (max-width: 767px) {
  .feature::after {
    width: 16vw;
    height: 67.2vw;
  }
}
.feature.animate-fadeInTopRight::before {
  animation-name: featureFadeInTopRight;
}
.feature.animate-fadeInTopRight::after {
  animation-name: featureFadeInTopRight;
}
.feature.feature-left::before {
  left: -230px;
  top: -60px;
}
@media screen and (max-width: 1280px) {
  .feature.feature-left::before {
    left: -17.96875vw;
    top: -4.6875vw;
  }
}
@media screen and (max-width: 767px) {
  .feature.feature-left::before {
    left: -18.6666666667vw;
    top: -8vw;
  }
}
.feature.feature-left::after {
  left: -100px;
  top: -100px;
}
@media screen and (max-width: 1280px) {
  .feature.feature-left::after {
    left: -7.8125vw;
    top: -7.8125vw;
  }
}
@media screen and (max-width: 767px) {
  .feature.feature-left::after {
    left: -6.4vw;
    top: -10.6666666667vw;
  }
}
.feature.feature-right::before {
  right: -30px;
  bottom: -30px;
}
@media screen and (max-width: 1280px) {
  .feature.feature-right::before {
    right: -2.34375vw;
    bottom: -2.34375vw;
  }
}
@media screen and (max-width: 767px) {
  .feature.feature-right::before {
    right: -5.3333333333vw;
    bottom: -5.3333333333vw;
  }
}
.feature.feature-right::after {
  right: -220px;
  bottom: -200px;
}
@media screen and (max-width: 1280px) {
  .feature.feature-right::after {
    right: -17.1875vw;
    bottom: -15.625vw;
  }
}
@media screen and (max-width: 767px) {
  .feature.feature-right::after {
    right: -25.0666666667vw;
    bottom: -21.3333333333vw;
  }
}
@media (max-width: 767px) {
  .feature.feature-pc::before {
    display: none;
  }
  .feature.feature-pc::after {
    display: none;
  }
}
@media (min-width: 768px) {
  .feature.feature-sp::before {
    display: none;
  }
  .feature.feature-sp::after {
    display: none;
  }
}
.feature.feature-blue::before {
  background-color: #9bafcb;
}
.feature.feature-blue::after {
  background-color: #9bafcb;
}
.feature.feature-green::before {
  background-color: #adbeb7;
}
.feature.feature-green::after {
  background-color: #adbeb7;
}
.feature.feature-red::before {
  background-color: #ce989e;
}
.feature.feature-red::after {
  background-color: #ce989e;
}

/** 写真テキスト横並び **/
.pic-text-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .pic-text-wrap {
    display: block;
  }
}
.pic-text-wrap .pic-block {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .pic-text-wrap .pic-block {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}
.pic-text-wrap .text-block {
  width: 60%;
  padding-left: 6%;
}
@media screen and (max-width: 1024px) {
  .pic-text-wrap .text-block {
    padding-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .pic-text-wrap .text-block {
    padding-left: 0;
    width: 100%;
  }
}

/** 横2列 **/
.col2-wrap {
  letter-spacing: -0.5em;
  margin-left: -3%;
  /** width1024でw100 **/
}
@media screen and (max-width: 767px) {
  .col2-wrap {
    margin-left: 0%;
    margin-bottom: -30px;
  }
}
@media screen and (max-width: 680px) {
  .col2-wrap {
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 1024px) {
  .col2-wrap.mq-large-w100 {
    margin-left: 0%;
    margin-bottom: -30px;
  }
}
@media screen and (max-width: 680px) {
  .col2-wrap.mq-large-w100 {
    margin-bottom: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .col2-wrap.mq-large-w100 .col2-item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 680px) {
  .col2-wrap.mq-large-w100 .col2-item {
    margin-bottom: 25px;
  }
}
.col2-wrap .col2-item {
  display: inline-block;
  width: 46.95%;
  vertical-align: top;
  letter-spacing: normal;
  margin-left: 3%;
}
.col2-wrap .col2-item:nth-of-type(n + 3) {
  margin-top: 3%;
}
@media screen and (max-width: 767px) {
  .col2-wrap .col2-item:nth-of-type(n + 3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .col2-wrap .col2-item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 680px) {
  .col2-wrap .col2-item {
    margin-bottom: 20px;
  }
}

/** 横3列 **/
.col3-wrap {
  letter-spacing: -0.5em;
  margin-left: -3%;
  margin-left: min(-30px, -3%);
  /** width1024で横2列 **/
}
@media screen and (max-width: 767px) {
  .col3-wrap {
    margin-bottom: -3%;
  }
}
@media screen and (max-width: 680px) {
  .col3-wrap {
    margin-left: 0;
  }
}
.col3-wrap .col3-item {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  margin-left: 3%;
  margin-left: min(30px, 3%);
  width: 30.3%;
  width: calc((99.9% - min(30px, 3%) * 3) / 3);
}
@media screen and (max-width: 767px) {
  .col3-wrap .col3-item {
    width: 46.95%;
    margin-bottom: 3%;
  }
}
@media screen and (max-width: 680px) {
  .col3-wrap .col3-item {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }
}
.col3-wrap .col3-item:nth-of-type(n + 4) {
  margin-top: 3%;
}
@media screen and (max-width: 767px) {
  .col3-wrap .col3-item:nth-of-type(n + 4) {
    margin-top: 0;
  }
}
.col3-wrap .col3-item:nth-of-type(n + 4).slick-slide {
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .col3-wrap.mq-large-2col {
    margin-bottom: -3%;
  }
}
@media screen and (max-width: 1024px) {
  .col3-wrap.mq-large-2col .col3-item {
    width: 46.95%;
    margin-bottom: 3%;
  }
}
@media screen and (max-width: 680px) {
  .col3-wrap.mq-large-2col .col3-item {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .col3-wrap.mq-large-2col .col3-item:nth-of-type(n + 3) {
    margin-top: 0;
  }
}

/** end 横3列 **/
/** 注釈 **/
.note {
  font-size: 14px;
  color: #868687;
  line-height: 1.4;
}

/** end 注釈 **/
/** インデント **/
.text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

/** end インデント **/
/** ページナビゲーション **/
.page-navgation-block {
  text-align: center;
  margin-top: 80px;
}
.page-navgation-block .page-navgation-list {
  letter-spacing: -0.4em;
}
.page-navgation-block .page-navgation-item {
  display: inline-block;
  letter-spacing: normal;
  margin: 0 8px;
}
.page-navgation-block .page-navgation-item .page-navgation-btn {
  line-height: 40px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  width: 58px;
  border: 2px solid;
  border-radius: 5px;
  display: inline-block;
}
.win .page-navgation-block .page-navgation-item .page-navgation-btn {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

.page-navgation-block .page-navgation-item .page-navgation-btn.page-navgation-btn-arrow {
  width: 54px;
}
@media screen and (max-width: 767px) {
  .page-navgation-block {
    margin-top: 40px;
  }
  .page-navgation-block .page-navgation-item {
    margin: 0 4px;
  }
  .page-navgation-block .page-navgation-item .page-navgation-btn {
    line-height: 32px;
    width: 40px;
  }
  .page-navgation-block .page-navgation-item .page-navgation-btn.page-navgation-btn-arrow {
    width: 36px;
  }
}

.client .page-navgation-block .page-navgation-item .page-navgation-btn.active {
  background-color: #F3F6F9;
}
@media (any-hover: hover) {
  .client .page-navgation-block .page-navgation-item .page-navgation-btn:hover {
    background-color: #F3F6F9;
  }
}

.customer .page-navgation-block .page-navgation-item .page-navgation-btn.active {
  background-color: #F9F3F3;
}
@media (any-hover: hover) {
  .customer .page-navgation-block .page-navgation-item .page-navgation-btn:hover {
    background-color: #F9F3F3;
  }
}

.company .page-navgation-block .page-navgation-item .page-navgation-btn.active {
  background-color: #E7ECEA;
}
@media (any-hover: hover) {
  .company .page-navgation-block .page-navgation-item .page-navgation-btn:hover {
    background-color: #E7ECEA;
  }
}

/** end ページナビゲーション **/
/******* end コンポーネント ********/
/******* Header ********/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media (max-width: 1200px) {
  .header {
    top: 0px;
    position: fixed;
  }
}
.header.fixed {
  position: fixed;
  top: -30px;
}
@media (max-width: 1200px) {
  .header.fixed {
    top: 0px;
  }
}
.header .header-top {
  background-color: #fff;
  border-bottom: 1px solid #cfcfcf;
  text-align: right;
}
@media (max-width: 1200px) {
  .header .header-top {
    display: none;
  }
}
.header .header-top .global-nav {
  letter-spacing: -0.4em;
}
.header .header-top .global-nav-item {
  display: inline-block;
  margin-right: 15px;
}
.header .header-top .global-nav-item a {
  letter-spacing: initial;
  line-height: 30px;
  color: #575757;
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
  font-size: 12px;
}
@media (any-hover: hover) {
  .header .header-top .global-nav-item a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .header .header-top .global-nav-item a {
    /* 767px */
    font-size: 11px;
  }
}
@media all and (-ms-high-contrast: none) {
  .header .header-top .global-nav-item a {
    letter-spacing: normal;
  }
}
.header .header-bottom {
  background-color: #fff;
  border-bottom: 1px solid #cfcfcf;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-bottom .header-logo {
  width: 220px;
  display: inline-block;
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
  margin: 1%;
  margin: 15px;
  font-size: 0;
}
@media (any-hover: hover) {
  .header .header-bottom .header-logo:hover {
    opacity: 0.8;
  }
}
@media (max-width: 1200px) {
  .header .header-bottom .header-logo {
    width: 185px;
    margin: 14px;
  }
}
@media screen and (max-width: 680px) {
  .header .header-bottom .header-logo {
    width: 150px;
    margin: 12px;
  }
}
.header .header-bottom .bottom-right {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 15px;
}
.win .header .header-bottom .bottom-right {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media (max-width: 1200px) {
  .header .header-bottom .bottom-right {
    font-size: 16px;
  }
}
@media screen and (max-width: 680px) {
  .header .header-bottom .bottom-right {
    margin-right: 0;
  }
}
.header .header-bottom .bottom-right .sp-menu-btn {
  display: none;
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .sp-menu-btn {
    /* 1024px */
    display: block;
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }
  .header .header-bottom .bottom-right .sp-menu-btn .line {
    background-color: #282a32;
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
  }
  .header .header-bottom .bottom-right .sp-menu-btn .line:nth-of-type(2) {
    top: 8px;
  }
  .header .header-bottom .bottom-right .sp-menu-btn .line:nth-of-type(3) {
    bottom: 0;
  }
  .header .header-bottom .bottom-right .sp-menu-btn.active .line:nth-of-type(1) {
    transform: rotate(-135deg);
    top: 8px;
  }
  .header .header-bottom .bottom-right .sp-menu-btn.active .line:nth-of-type(2) {
    opacity: 0;
  }
  .header .header-bottom .bottom-right .sp-menu-btn.active .line:nth-of-type(3) {
    transform: rotate(135deg);
    top: 8px;
  }
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-list-wrap {
    /* 1024px */
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    top: 62px;
    padding: 35px 70px;
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  .header .header-bottom .bottom-right .nav-list-wrap {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 680px) {
  .header .header-bottom .bottom-right .nav-list-wrap {
    top: 52px;
    padding: 10px 15px;
  }
}
.header .header-bottom .bottom-right .nav-list-wrap .global-nav {
  display: none;
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-list-wrap .global-nav {
    display: block;
    text-align: right;
    margin-bottom: 10px;
  }
  .header .header-bottom .bottom-right .nav-list-wrap .global-nav .global-nav-item {
    display: inline-block;
    margin: 0 5px;
  }
  .header .header-bottom .bottom-right .nav-list-wrap .global-nav .global-nav-item a {
    color: #282a32;
    font-weight: normal;
    font-size: 13px;
    transition: opacity 0.3s ease-in-out;
    text-decoration: none;
  }
  .win .header .header-bottom .bottom-right .nav-list-wrap .global-nav .global-nav-item a {
    font-weight: bold;
  }
}
@media (max-width: 1200px) and (any-hover: hover) {
  .header .header-bottom .bottom-right .nav-list-wrap .global-nav .global-nav-item a:hover {
    opacity: 0.8;
  }
}
.header .header-bottom .bottom-right .nav-list {
  display: flex;
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-list {
    display: block;
  }
}
.header .header-bottom .bottom-right .nav-item {
  margin-left: 2em;
  line-height: 1;
  position: relative;
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item {
    margin: 0;
    margin-bottom: 35px;
  }
}
.header .header-bottom .bottom-right .nav-item a {
  text-decoration: none;
  color: #282A32;
}
.header .header-bottom .bottom-right .nav-item .nav-link {
  line-height: 70px;
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .nav-link {
    line-height: 1.4;
  }
}
@media (any-hover: hover) and (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .nav-link a:hover {
    color: #4c79af;
  }
}
.header .header-bottom .bottom-right .nav-item.on-mouse .nav-link {
  position: relative;
}
.header .header-bottom .bottom-right .nav-item.on-mouse .nav-link::after {
  content: "";
  background: #4c79af;
  height: 4px;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
}
.header .header-bottom .bottom-right .nav-item .subnav {
  display: none;
  position: absolute;
  top: 70px;
  padding-top: 10px;
  width: 270px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 16px;
}
@media (min-width: 1200.02px) and (max-height: 650px) {
  .header .header-bottom .bottom-right .nav-item .subnav {
    font-size: 14px;
  }
}
@media (min-width: 1200.02px) and (max-height: 550px) {
  .header .header-bottom .bottom-right .nav-item .subnav {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav {
    display: block !important;
    position: static;
    transform: translate(0, 0);
    width: 100%;
    padding-top: 0;
  }
}
.header .header-bottom .bottom-right .nav-item .subnav.width-large {
  width: 480px;
}
@media (min-width: 1200.02px) and (max-height: 900px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large {
    width: 710px;
  }
}
@media (min-width: 1200.02px) and (max-height: 800px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large {
    width: 940px;
  }
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large {
    margin-top: 20px;
  }
}
.header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: calc(30 / 16 * 1em);
}
@media (min-width: 1200.02px) and (max-height: 600px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in {
    gap: calc(20 / 14 * 1em);
  }
}
.header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap {
  flex-basis: 100%;
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap {
    flex-basis: 48%;
  }
}
@media screen and (max-width: 1024px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap {
    flex-basis: 100%;
  }
}
.header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap .subnav-title {
  color: #386097;
  border-radius: 3px;
  margin-bottom: calc(5 / 16 * 1em);
  padding: calc(10 / 16 * 1em) calc(8 / 16 * 1em);
  background-color: #f4f4f4;
}
@media (max-width: 575px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap .subnav-title {
    margin-bottom: 0;
  }
}
.header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap .subnav-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
@media (max-width: 575px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap .subnav-list {
    display: block;
  }
}
.header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap .subnav-list .subnav-item {
  flex-basis: calc((99.8% - (10px * 1)) / 2);
}
@media (min-width: 1200.02px) and (max-height: 900px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap .subnav-list .subnav-item {
    flex-basis: calc((99.9% - (10px * 2)) / 3);
  }
}
@media (min-width: 1200.02px) and (max-height: 800px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap .subnav-list .subnav-item {
    flex-basis: calc((99.9% - (10px * 3)) / 4);
  }
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav.width-large .subnav-in .subnav-in-wrap .subnav-list .subnav-item {
    flex-basis: calc((99.9% - (10px * 1)) / 2);
  }
}
.header .header-bottom .bottom-right .nav-item .subnav-in {
  border-radius: 5px;
  padding: 25px;
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav-in {
    box-shadow: none;
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav .subnav-item {
    width: calc((99.9% - (10px * 3)) / 4);
    display: inline-block;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 1024px) {
  .header .header-bottom .bottom-right .nav-item .subnav .subnav-item {
    width: calc((99.9% - (10px * 2)) / 3);
  }
}
@media screen and (max-width: 767px) {
  .header .header-bottom .bottom-right .nav-item .subnav .subnav-item {
    width: calc((99.9% - (10px * 1)) / 2);
  }
}
@media (max-width: 575px) {
  .header .header-bottom .bottom-right .nav-item .subnav .subnav-item {
    width: 100%;
  }
}
.header .header-bottom .bottom-right .nav-item .subnav .subnav-item a {
  font-weight: normal;
  display: inline-block;
  position: relative;
  display: block;
  padding-top: calc(15 / 16 * 1em);
  padding-bottom: calc(15 / 16 * 1em);
  padding-left: calc(8 / 16 * 1em);
  border-bottom: 1px solid #e4e3e3;
  padding-right: calc(1em + ((15 + 5) / 16 * 1em));
}
.win .header .header-bottom .bottom-right .nav-item .subnav .subnav-item a {
  font-weight: bold;
}

@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav .subnav-item a {
    padding-top: 13px;
    padding-bottom: 11px;
    margin-top: 10px;
    padding-right: calc(1em + 10px + 5px);
  }
}
.header .header-bottom .bottom-right .nav-item .subnav .subnav-item a::after {
  content: "";
  background-image: url(/assets/images/arrow-light-blue.svg);
  width: 1em;
  height: 0.9em;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s ease-in-out transform;
  right: calc(15 / 16 * 1em);
}
@media (max-width: 1200px) {
  .header .header-bottom .bottom-right .nav-item .subnav .subnav-item a::after {
    right: 10px;
  }
}
@media (any-hover: hover) {
  .header .header-bottom .bottom-right .nav-item .subnav .subnav-item a:hover::after {
    transform: translate(30%, -50%);
  }
}
.header .header-bottom .bottom-right .nav-item .subnav .subnav-item a[target=_blank]::after {
  background-image: url(/assets/images/target-icon.svg);
  background-size: 90%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media all and (-ms-high-contrast: none) {
  .header .header-bottom .bottom-right .nav-item .subnav .subnav-item a[target=_blank]::after {
    background-size: contain;
  }
}
@media (any-hover: hover) {
  .header .header-bottom .bottom-right .nav-item .subnav .subnav-item a[target=_blank]:hover::after {
    opacity: 0.15;
    transform: translate(0, -50%);
  }
}
.header .header-bottom .bottom-right .contact-btn {
  display: inline-block;
  border: 2px solid #f9ab02;
  background-color: #f9ab02;
  border-radius: 5px;
  margin-left: 1em;
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
}
@media (any-hover: hover) {
  .header .header-bottom .bottom-right .contact-btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 680px) {
  .header .header-bottom .bottom-right .contact-btn {
    font-size: 0;
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 0;
    margin-left: 10px;
  }
}
.header .header-bottom .bottom-right .contact-btn .contact-btn-text {
  display: inline-block;
  background-color: #f9ab02;
  border: 2px solid;
  color: #fff;
  line-height: 36px;
  padding: 0 20px;
}
@media screen and (max-width: 680px) {
  .header .header-bottom .bottom-right .contact-btn .contact-btn-text {
    border: none;
    line-height: 50px;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header .header-bottom .bottom-right .contact-btn .contact-btn-text::after {
    content: "";
    background-image: url(/assets/images/contact-icon.svg);
    width: 25px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1280px) {
  .header.header-client .header-bottom .bottom-right {
    font-size: 17px;
  }
}
@media (max-width: 1398px) {
  .header.header-client .header-bottom .bottom-right .nav-item {
    margin-left: 1.2em;
  }
}
@media (max-width: 1200px) {
  .header.header-client .header-bottom .bottom-right .nav-item {
    margin-left: 0;
  }
}
.header.header-client .header-bottom .bottom-right .nav-item.on-mouse .nav-link::after {
  background: #386097;
}
.header.header-client .header-bottom .bottom-right .nav-item .subnav .subnav-item a::after {
  background-image: url(/assets/images/arrow-blue.svg);
}
.header.header-client .header-bottom .bottom-right .contact-btn {
  border: 2px solid #386097;
  background-color: #386097;
}
.header.header-client .header-bottom .bottom-right .contact-btn .contact-btn-text {
  background-color: #386097;
}
@media (min-width: 1200.02px) {
  .header .nav-list-wrap {
    display: block !important;
  }
}
@media screen and (max-width: 1280px) {
  .header {
    /* 1280px */
  }
}
@media (max-width: 1200px) {
  .header {
    /* 1024px */
  }
}
@media screen and (max-width: 767px) {
  .header {
    /* 767px */
  }
}
@media screen and (max-width: 680px) {
  .header {
    /* 680px */
  }
}
@media screen and (max-width: 350px) {
  .header {
    /* 350px */
  }
}

.header--simple {
  position: static !important;
  display: flex;
  align-items: center;
  min-height: 52px;
  box-sizing: border-box;
  padding: 8px 24px;
}
@media screen and (max-width: 767px) {
  .header--simple {
    padding: 8px 8px;
  }
}
.header--simple__logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: normal;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header--simple__logo:hover {
    opacity: 0.8;
  }
}
.header--simple__logo img {
  width: 156px;
  height: auto;
}
.header--simple__text {
  color: #a6a6a6;
}
@media screen and (max-width: 680px) {
  .header--simple__text {
    display: none;
  }
}

/******* end Header ********/
/******* Footer ********/
.footer-area {
  position: relative;
}

.footer-cta {
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .footer-cta {
    margin-top: 100px;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta {
    margin-top: 80px;
  }
}
.footer-cta .cta-contents {
  padding: 60px 5%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer-cta .cta-contents {
    padding: 40px 3%;
  }
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-contents {
    padding: 30px 3%;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta .cta-contents {
    padding: 20px 3%;
  }
}
.footer-cta .cta-btn {
  display: inline-block;
  max-width: 550px;
  width: 100%;
  border-radius: 100px;
  background-color: #FFF;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  padding: 13px 15px 10px;
  transition: box-shadow 0.3s ease-in-out;
  text-decoration: none;
}
.win .footer-cta .cta-btn {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media (any-hover: hover) {
  .footer-cta .cta-btn:hover {
    box-shadow: 0 0 25px #b3b3b3;
  }
}
.footer-cta .cta-btn::after {
  content: "";
  width: 1em;
  height: 0.9em;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s ease-in-out transform;
  right: 25px;
}
@media (any-hover: hover) {
  .footer-cta .cta-btn:hover::after {
    transform: translate(30%, -50%);
  }
}
.footer-cta .cta-client {
  background-color: #386097;
  color: #fff;
}
.footer-cta .cta-client-lead {
  font-size: 28px;
  font-weight: bold;
}
.win .footer-cta .cta-client-lead {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 1024px) {
  .footer-cta .cta-client-lead {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-client-lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta .cta-client-lead {
    font-size: 18px;
  }
}
.footer-cta .cta-client-middle-lead {
  font-size: 22px;
  font-weight: bold;
}
.win .footer-cta .cta-client-middle-lead {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
  .footer-cta .cta-client-middle-lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta .cta-client-middle-lead {
    font-size: 16px;
  }
}
.footer-cta .cta-client-text {
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .footer-cta .cta-client-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-client-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta .cta-client-text {
    font-size: 15px;
  }
}
.footer-cta .cta-client .cta-btn {
  margin-top: 30px;
  font-size: 22px;
  font-weight: bold;
  color: #386097;
  box-shadow: 0 0 10px #256C9E;
}
.win .footer-cta .cta-client .cta-btn {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 1024px) {
  .footer-cta .cta-client .cta-btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-client .cta-btn {
    font-size: 18px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta .cta-client .cta-btn {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media (any-hover: hover) {
  .footer-cta .cta-client .cta-btn:hover {
    box-shadow: 0 0 25px #175683;
  }
}
.footer-cta .cta-client .cta-btn .text-em {
  font-size: 26px;
}
@media screen and (max-width: 1024px) {
  .footer-cta .cta-client .cta-btn .text-em {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-client .cta-btn .text-em {
    font-size: 22px;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta .cta-client .cta-btn .text-em {
    font-size: 20px;
  }
}
.footer-cta .cta-client .cta-btn::after {
  content: "";
  background-image: url(/assets/images/arrow-blue.svg);
}
.footer-cta .cta-customer {
  display: flex;
  background-color: #e77c22;
  align-items: center;
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-customer {
    display: block;
  }
}
.footer-cta .cta-customer .cta-sub-lead {
  font-weight: bold;
  font-size: 18px;
  width: 92%;
  margin: 0 auto;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #fff;
}
.win .footer-cta .cta-customer .cta-sub-lead {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 1024px) {
  .footer-cta .cta-customer .cta-sub-lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta .cta-customer .cta-sub-lead {
    font-size: 14px;
  }
}
.footer-cta .cta-customer .cta-sub-lead br {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-customer .cta-sub-lead .inline-block {
    display: inline;
  }
  .footer-cta .cta-customer .cta-sub-lead br {
    display: block;
  }
}
.footer-cta .cta-customer .cta-sub-lead-in {
  display: inline-block;
  position: relative;
  padding: 0 20px;
}
.footer-cta .cta-customer .cta-sub-lead-in::before {
  content: "";
  height: 100%;
  width: 2px;
  background-color: #fff;
  left: 0;
  position: absolute;
  transform: rotate(-20deg) translate(0, -50%);
  top: 50%;
  height: 1.5em;
}
@media screen and (max-width: 680px) {
  .footer-cta .cta-customer .cta-sub-lead-in::before {
    height: 1.7em;
  }
}
.footer-cta .cta-customer .cta-sub-lead-in::after {
  content: "";
  top: 50%;
  position: absolute;
  height: 1.5em;
  width: 2px;
  background-color: #fff;
  right: 0;
  transform: rotate(20deg) translate(0, -50%);
}
@media screen and (max-width: 680px) {
  .footer-cta .cta-customer .cta-sub-lead-in::after {
    height: 1.7em;
  }
}
.footer-cta .cta-customer .cta-btn {
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .footer-cta .cta-customer .cta-btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-customer .cta-btn {
    font-size: 17px;
  }
}
.footer-cta .cta-customer .cta-btn .service-logo {
  line-height: 1;
  width: 110px;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-customer .cta-btn .service-logo {
    width: 90px;
  }
}
.footer-cta .cta-customer .cta-dispatch {
  background-color: #e77c22;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-customer .cta-dispatch {
    width: 100%;
  }
}
.footer-cta .cta-customer .cta-dispatch .cta-btn {
  color: #e77c22;
  box-shadow: 0 0 5px #c3700f;
}
@media (any-hover: hover) {
  .footer-cta .cta-customer .cta-dispatch .cta-btn:hover {
    box-shadow: 0 0 20px #b86c13;
  }
}
.footer-cta .cta-customer .cta-dispatch .cta-btn::after {
  content: "";
  background-image: url(/assets/images/arrow-orange.svg);
}
@media screen and (max-width: 1024px) {
  .footer-cta .cta-customer .cta-dispatch .cta-btn::after {
    right: 15px;
  }
}
.footer-cta .cta-customer .cta-job-hunting {
  background-color: #859d94;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-customer .cta-job-hunting {
    width: 100%;
  }
}
.footer-cta .cta-customer .cta-job-hunting .cta-btn {
  color: #5c7d70;
  box-shadow: 0 0 5px #adbeb7;
}
@media (any-hover: hover) {
  .footer-cta .cta-customer .cta-job-hunting .cta-btn:hover {
    box-shadow: 0 0 20px #859d94;
  }
}
.footer-cta .cta-customer .cta-job-hunting .cta-btn::after {
  content: "";
  background-image: url(/assets/images/arrow-green.svg);
}
@media screen and (max-width: 1024px) {
  .footer-cta .cta-customer .cta-job-hunting .cta-btn::after {
    right: 15px;
  }
}
.footer-cta .cta-customer .cta-job-hunting .cta-btn .service-logo {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .footer-cta .cta-customer .cta-job-hunting .cta-btn .service-logo {
    width: 110px;
  }
}
.footer-cta .footer-cta-gallery {
  opacity: 0.8;
}
.footer-cta .footer-cta-gallery img {
  width: 100%;
}

.section-recruit {
  padding: 50px 0;
  background-image: url(/assets/images/top/recruit-img.jpg);
  background-color: #f8fcfd;
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto 100%;
}
@media screen and (max-width: 1024px) {
  .section-recruit {
    padding: 40px 0;
    background-position: right 50% center;
  }
}
@media screen and (max-width: 767px) {
  .section-recruit {
    background-image: url(/assets/images/top/recruit-img-sp.jpg);
    background-size: 100% auto;
    padding: 30px;
    padding-bottom: 38%;
    background-position: bottom;
    text-align: center;
  }
}
.section-recruit .title-en {
  margin-bottom: 20px;
}
.section-recruit .title-en::after {
  color: #4c79af;
}
.section-recruit .title-en .title-en-in::after {
  background-color: #4c79af;
}
.section-recruit .btn {
  border-color: #4c79af;
  color: #4c79af;
}
@media (hover: hover) {
  .section-recruit .btn:hover {
    color: #fff;
  }
}

.footer {
  background-color: #F6F6F6;
}
.footer .footer-nav-block {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-nav-block {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block {
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
.footer .footer-nav-block .footer-nav {
  justify-content: space-between;
  overflow: hidden;
  margin-left: -5%;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav {
    margin-left: 0;
  }
}
.footer .footer-nav-block .footer-nav-item {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item {
    margin-bottom: 0;
  }
}
.footer .footer-nav-block .footer-nav-wrap {
  width: calc((99.9% - 180px - ( 5% * 4)) / 3);
  margin-left: 5%;
  float: left;
}
@media screen and (max-width: 1280px) {
  .footer .footer-nav-block .footer-nav-wrap {
    width: calc((99.9% - (5% * 4)) / 4);
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer-nav-block .footer-nav-wrap {
    width: calc((99.9% - (5% * 3)) / 3);
  }
}
@media (max-width: 990px) {
  .footer .footer-nav-block .footer-nav-wrap {
    width: calc((99.9% - (5% * 2)) / 2);
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-wrap {
    width: 100%;
    margin-left: 0;
  }
}
.footer .footer-nav-block .footer-nav-wrap:nth-last-of-type(1) .footer-nav-item:nth-last-of-type(1) .footer-nav-first-text {
  border-bottom: none;
}
.footer .footer-nav-block .footer-nav-wrap:nth-last-of-type(1) .footer-nav-item:nth-last-of-type(1) .footer-nav-first-text::after {
  content: none;
}
.footer .footer-nav-block .footer-nav-wrap:nth-last-of-type(1) .footer-nav-item:nth-last-of-type(1) .footer-nav-second {
  display: block;
  margin-top: 0;
}
@media screen and (min-width: 1280.02px) {
  .footer .footer-nav-block .footer-nav-wrap-small {
    width: 180px;
  }
}
.footer .footer-nav-block .footer-nav-item a {
  color: #282a32;
  line-height: 1.4;
  text-decoration: underline;
  position: relative;
  display: inline-block;
}
@media (any-hover: hover) {
  .footer .footer-nav-block .footer-nav-item a:hover {
    text-decoration: none;
  }
  .footer .footer-nav-block .footer-nav-item a:hover::before {
    content: none;
  }
}
.footer .footer-nav-block .footer-nav-item a.target-blank::after {
  content: "";
  background-image: url(/assets/images/target-icon.svg);
  width: 14px;
  height: 11px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  opacity: 0.6;
  margin-left: 0.3em;
}
.footer .footer-nav-block .footer-nav-item .footer-nav-first-text {
  font-size: 16px;
  font-weight: bold;
}
.win .footer .footer-nav-block .footer-nav-item .footer-nav-first-text {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-first-text {
    margin-bottom: 0;
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid #ccc;
  }
  .footer .footer-nav-block .footer-nav-item .footer-nav-first-text.has-second {
    cursor: pointer;
  }
  .footer .footer-nav-block .footer-nav-item .footer-nav-first-text.has-second::after {
    content: "";
    background-image: url(/assets/images/under-arrow.svg);
    width: 1em;
    height: 1em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  .footer .footer-nav-block .footer-nav-item .footer-nav-first-text.has-second.open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer .footer-nav-block .footer-nav-item .footer-nav-first-text.has-second a {
    pointer-events: none;
  }
}
.footer .footer-nav-block .footer-nav-item .footer-nav-second {
  font-size: 13px;
}
.footer .footer-nav-block .footer-nav-item .footer-nav-second::before, .footer .footer-nav-block .footer-nav-item .footer-nav-second::after {
  content: "";
  display: table;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-second {
    display: none;
    font-size: 0.9em;
    margin-top: 10px;
  }
}
.footer .footer-nav-block .footer-nav-item .footer-nav-second-list, .footer .footer-nav-block .footer-nav-item .footer-nav-second-wrap {
  margin-top: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-second .footer-nav-second-text {
    margin-bottom: 5px;
    font-weight: bold;
  }
  .win .footer .footer-nav-block .footer-nav-item .footer-nav-second .footer-nav-second-text {
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  }
}
.footer .footer-nav-block .footer-nav-item .footer-nav-second .footer-nav-second-text.mb0 {
  margin-bottom: 0;
}
.footer .footer-nav-block .footer-nav-item .footer-nav-second .footer-nav-second-item {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-third {
    padding-left: 0;
  }
}
.footer .footer-nav-block .footer-nav-item .footer-nav-third .footer-nav-third-list {
  margin-top: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-third .footer-nav-third-list {
    letter-spacing: -0.4em;
    margin-left: -15px;
  }
}
.footer .footer-nav-block .footer-nav-item .footer-nav-third .footer-nav-third-text {
  letter-spacing: normal;
}
.footer .footer-nav-block .footer-nav-item .footer-nav-third .footer-nav-third-item {
  margin-top: 10px;
  padding-left: 20px;
  position: relative;
}
.footer .footer-nav-block .footer-nav-item .footer-nav-third .footer-nav-third-item:only-child {
  margin-top: 0;
}
.footer .footer-nav-block .footer-nav-item .footer-nav-third .footer-nav-third-item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #b3b4b7;
  border-radius: 4px;
  position: absolute;
  left: 5px;
  top: 0.85em;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-third .footer-nav-third-item {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    width: calc((99.9% - 40px) / 2);
    margin-left: 15px;
  }
  .footer .footer-nav-block .footer-nav-item .footer-nav-third .footer-nav-third-item:nth-child(-n+2) {
    margin-top: 0;
  }
}
.footer .footer-nav-block .footer-nav-item .footer-nav-third .footer-nav-third-item.w100 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-fourth {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-fourth .footer-nav-fourth-list {
    letter-spacing: -0.4em;
    margin-left: -15px;
  }
}
.footer .footer-nav-block .footer-nav-item .footer-nav-fourth .footer-nav-fourth-item {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-fourth .footer-nav-fourth-item {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    width: calc((99.9% - 40px) / 2);
    margin-left: 20px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 680px) {
  .footer .footer-nav-block .footer-nav-item .footer-nav-fourth .footer-nav-fourth-item {
    width: 100%;
  }
}
.footer .footer-nav-block .footer-nav-item-sns {
  margin-top: 40px;
}
.footer .footer-nav-block .footer-nav-item-sns .footer-nav-first-text {
  margin-bottom: 4px;
}
.footer .footer-nav-block .sns-list {
  white-space: nowrap;
}
.footer .footer-nav-block .sns-list .sns-item {
  display: inline-block;
  width: 50px;
  margin-right: 10px;
}
.footer .footer-nav-block .sns-list .sns-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav-block .sns-list .sns-item {
    width: 37px;
  }
}
.footer .footer-link-block {
  background-color: #40424a;
  padding: 6px 0 6px;
  text-align: center;
}
@media screen and (max-width: 680px) {
  .footer .footer-link-block {
    text-align: center;
  }
}
.footer .footer-link-block a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .footer .footer-link-block a {
    font-size: 13px;
  }
}
@media (any-hover: hover) {
  .footer .footer-link-block a:hover {
    text-decoration: underline;
  }
}
.footer .footer-link-block .footer-link-item {
  display: inline-block;
  margin: 0 0.5em;
}
.footer .copyright {
  font-size: 12px;
  line-height: 1.3;
  padding: 7px 0;
  text-align: right;
  text-align: center;
}
@media screen and (max-width: 680px) {
  .footer .copyright {
    text-align: center;
    font-size: 10px;
  }
}

/******* end Footer ********/
/******* パンクズ ********/
.bread-crumb {
  padding-top: 15px;
  position: relative;
  z-index: 4;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .bread-crumb {
    display: none;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: -10px;
    font-size: 14px;
  }
}
.bread-crumb-item {
  display: inline-block;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .bread-crumb-item {
    margin-bottom: 10px;
  }
}
.bread-crumb-item a {
  text-decoration: underline;
  color: #4c79af;
}
@media (any-hover: hover) {
  .bread-crumb-item a:hover {
    text-decoration: none;
  }
}
.bread-crumb-item + .bread-crumb-item::before {
  content: "";
  background-image: url(/assets/images/breadcrumb-arrow.svg);
  width: 5px;
  height: 9px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 8px;
}

.bread-crumb-sp-container {
  background: #fff;
}

.bread-crumb-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .bread-crumb-sp {
    display: block;
  }
}

.client .bread-crumb-item a {
  color: #386097;
}

.jobseeker .bread-crumb-item a,
.customer .bread-crumb-item a {
  color: #9d323d;
}

.company .bread-crumb-item a {
  color: #5c7d70;
}

/******* end パンクズ ********/
/******* Layout ********/
.wrapper {
  position: relative;
  overflow: hidden;
  background: center 1400px/1614px repeat-y;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    background-size: 140% auto;
    background-position: center calc(1400 / 1024 * 100vw);
  }
}
@media screen and (max-width: 680px) {
  .wrapper {
    background-size: 188% auto;
  }
}

.wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1400px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .wrapper::before {
    height: calc(1400 / 1024 * 100vw);
  }
}

.wrapper.page-top,
.wrapper.client-top,
.wrapper.order {
  background: none;
}

.wrapper.page-top::before,
.wrapper.client-top::before,
.wrapper.order::before {
  content: none;
}

.wrapper:not(.page-top):not(.client-top):not(.order) {
  background-image: url(../images/bg.png);
}

.wrapper.company {
  background-image: url(../images/company/bg.png) !important;
}

.wrapper.jobseeker {
  background-image: url(../images/staff/bg.png) !important;
}

.wrapper.jobseeker.column {
  background-image: url(../images/staff/bg-2col.png) !important;
  background-size: 2300px auto;
}

.container {
  margin-top: 101px;
}
@media (max-width: 1200px) {
  .container {
    margin-top: 62px;
  }
}
@media screen and (max-width: 680px) {
  .container {
    margin-top: 52px;
  }
}

.header--simple + .container {
  margin-top: 0;
}

.inner {
  position: relative;
  max-width: 1080px;
  width: 92%;
  margin: 0 auto;
}
.footer .inner {
  max-width: 1280px;
}

.contents {
  margin-top: 180px;
}
@media screen and (max-width: 1280px) {
  .contents {
    margin-top: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .contents {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .contents {
    margin-top: 100px;
  }
}

/******* end Layout ********/
@media screen and (max-width: 680px) {
  .animate__animated[data-animate^=animate__fade] {
    opacity: 1;
    animation-name: none;
    animation-duration: 0s;
  }
}

/******* セカンドページ ********/
.second-hero {
  position: relative;
}
.second-hero.has-lead {
  height: calc(100vh - 101px);
  margin-bottom: 100px;
}
@media screen and (max-width: 1280px) {
  .second-hero.has-lead {
    margin-bottom: 11%;
  }
}
@media (max-width: 1200px) {
  .second-hero.has-lead {
    height: calc(100vh - 62px);
  }
}
@media screen and (max-width: 1024px) {
  .second-hero.has-lead {
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 767px) {
  .second-hero.has-lead {
    margin-bottom: 90px;
    height: auto;
  }
}
.second-hero.has-lead .inner {
  height: 100%;
}
.second-hero.has-lead .second-hero-inner {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  .second-hero.has-lead .second-hero-inner {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .second-hero.has-lead .second-hero-inner {
    position: static;
    transform: translate(0, 0%);
  }
}
.second-hero.has-lead .second-hero-inner .page-title {
  margin-bottom: 90px;
}
@media screen and (max-width: 1600px) {
  .second-hero.has-lead .second-hero-inner .page-title {
    margin-bottom: 60px;
  }
}
@media (max-height: 700px) {
  .second-hero.has-lead .second-hero-inner .page-title {
    margin-bottom: 6vh;
  }
}
@media screen and (max-width: 1024px) {
  .second-hero.has-lead .second-hero-inner .page-title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .second-hero.has-lead .second-hero-inner .page-title {
    margin-bottom: 30px;
  }
}
.second-hero.has-lead .hero-lead .lead-text {
  font-size: 34px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 70px;
}
.win .second-hero.has-lead .hero-lead .lead-text {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media (max-height: 700px) {
  .second-hero.has-lead .hero-lead .lead-text {
    margin-bottom: 6vh;
  }
}
@media screen and (max-width: 1024px) {
  .second-hero.has-lead .hero-lead .lead-text {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .second-hero.has-lead .hero-lead .lead-text {
    font-size: 22px;
    margin-bottom: 35px;
  }
}
.second-hero.has-lead .hero-lead .lead-text .text-em {
  color: #4c79af;
}
.second-hero--manpower02.has-lead:not(.no-height) {
  height: auto;
  display: flex;
  min-height: calc(100vh - 101px);
  flex-direction: column;
}
@media (max-width: 1200px) {
  .second-hero--manpower02.has-lead:not(.no-height) {
    min-height: calc(100vh - 62px);
  }
}
@media screen and (max-width: 767px) {
  .second-hero--manpower02.has-lead:not(.no-height) {
    display: block;
    min-height: 0;
  }
}
.second-hero--manpower02.has-lead:not(.no-height) .inner {
  height: auto;
  flex: 1 0 0;
  width: 92%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .second-hero--manpower02.has-lead:not(.no-height) .inner {
    display: block;
  }
}
.second-hero--manpower02.has-lead:not(.no-height) .bread-crumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.second-hero--manpower02.has-lead:not(.no-height) .second-hero-inner {
  position: relative;
  top: 0;
  transform: none;
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  .second-hero--manpower02.has-lead:not(.no-height) .second-hero-inner {
    margin: 0 auto;
  }
}
.second-hero .hero-feature-item {
  position: absolute;
}
.second-hero .hero-feature-item .feature-item-in {
  border-radius: 100px;
  transform: rotate(20deg);
}
.second-hero .hero-feature-item:nth-of-type(1) {
  top: 80px;
  left: -60px;
}
@media screen and (max-width: 1024px) {
  .second-hero .hero-feature-item:nth-of-type(1) {
    top: 7.8125vw;
    left: -5.859375vw;
  }
}
.second-hero .hero-feature-item:nth-of-type(1) .feature-item-in {
  border-radius: 100px;
  transform: rotate(20deg);
  width: 100px;
  height: 323px;
  background-color: #4c79af;
  opacity: 0.25;
}
@media screen and (max-width: 1024px) {
  .second-hero .hero-feature-item:nth-of-type(1) .feature-item-in {
    width: 9.765625vw;
    height: 31.54296875vw;
  }
}
.second-hero .hero-feature-item:nth-of-type(2) {
  top: 35%;
  top: 230px;
  left: 8%;
}
.second-hero .hero-feature-item:nth-of-type(2) .feature-item-in {
  width: 100px;
  height: 386px;
  background-color: #4c79af;
  opacity: 0.12;
}
@media screen and (max-width: 1024px) {
  .second-hero .hero-feature-item:nth-of-type(2) .feature-item-in {
    width: 9.765625vw;
    height: 37.6953125vw;
  }
}
.second-hero .hero-feature-item:nth-of-type(3) {
  display: none;
}
@media screen and (max-width: 767px) {
  .second-hero .hero-feature-item:nth-of-type(3) {
    display: block;
    top: -18vw;
    left: 30%;
  }
}
.second-hero .hero-feature-item:nth-of-type(3) .feature-item-in {
  width: 89px;
  height: 265px;
  background-color: #4c79af;
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .second-hero .hero-feature-item:nth-of-type(3) .feature-item-in {
    width: 8.69140625vw;
    height: 25.87890625vw;
  }
}
.second-hero .hero-feature-item:nth-of-type(4) {
  top: 60%;
  top: 380px;
  right: 13%;
}
@media screen and (max-width: 767px) {
  .second-hero .hero-feature-item:nth-of-type(4) {
    top: 50%;
    right: -5%;
  }
}
.second-hero .hero-feature-item:nth-of-type(4) .feature-item-in {
  width: 90px;
  height: 320px;
  background-color: #4c79af;
  opacity: 0.25;
}
@media screen and (max-width: 1024px) {
  .second-hero .hero-feature-item:nth-of-type(4) .feature-item-in {
    width: 8.7890625vw;
    height: 31.25vw;
  }
}
.second-hero .hero-feature-item:nth-of-type(5) {
  top: 20%;
  right: -120px;
  top: 130px;
  right: -140px;
}
.second-hero .hero-feature-item:nth-of-type(5) .feature-item-in {
  width: 122px;
  height: 475px;
  background-color: #4c79af;
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .second-hero .hero-feature-item:nth-of-type(5) .feature-item-in {
    width: 11.9140625vw;
    height: 46.38671875vw;
  }
}
.second-hero .inner {
  position: relative;
  z-index: 1;
}
.second-hero .hero-img {
  position: absolute;
  top: 0;
  right: 0;
}
.second-hero .hero-img img {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .second-hero .hero-img {
    max-width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .second-hero .hero-img {
    width: 200px;
  }
}
@media screen and (max-width: 680px) {
  .second-hero .hero-img {
    width: 30%;
  }
}
@media screen and (max-width: 360px) {
  .second-hero .hero-img {
    max-width: 58%;
    width: 58%;
    top: -5vw;
    right: -20vw;
  }
}
.second-hero-inner {
  padding-top: 100px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .second-hero-inner {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .second-hero-inner {
    padding-top: 96px;
  }
}

@media screen and (max-width: 1600px) {
  .second-hero .hero-feature-item:nth-of-type(2) .feature-item-in, .second-hero .hero-feature-item:nth-of-type(4) .feature-item-in {
    visibility: hidden;
  }
}

.client .second-hero.has-lead .hero-lead .lead-text .text-em {
  color: #386097;
}
.client .second-hero .hero-feature-item:nth-of-type(1) .feature-item-in, .client .second-hero .hero-feature-item:nth-of-type(2) .feature-item-in, .client .second-hero .hero-feature-item:nth-of-type(3) .feature-item-in, .client .second-hero .hero-feature-item:nth-of-type(4) .feature-item-in, .client .second-hero .hero-feature-item:nth-of-type(5) .feature-item-in {
  background-color: #386097;
}

.customer .second-hero.has-lead .hero-lead .lead-text .text-em {
  color: #9d323d;
}
.customer .second-hero .hero-feature-item:nth-of-type(1) .feature-item-in, .customer .second-hero .hero-feature-item:nth-of-type(2) .feature-item-in, .customer .second-hero .hero-feature-item:nth-of-type(3) .feature-item-in, .customer .second-hero .hero-feature-item:nth-of-type(4) .feature-item-in, .customer .second-hero .hero-feature-item:nth-of-type(5) .feature-item-in {
  background-color: #9d323d;
}

.company .second-hero.has-lead .hero-lead .lead-text .text-em {
  color: #5c7d70;
}
.company .second-hero .hero-feature-item:nth-of-type(1) .feature-item-in, .company .second-hero .hero-feature-item:nth-of-type(2) .feature-item-in, .company .second-hero .hero-feature-item:nth-of-type(3) .feature-item-in, .company .second-hero .hero-feature-item:nth-of-type(4) .feature-item-in, .company .second-hero .hero-feature-item:nth-of-type(5) .feature-item-in {
  background-color: #5c7d70;
}

.float-bnr {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 10px #aeaeae;
  z-index: 5;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .float-bnr {
    padding: 18px 0 14px;
  }
}
.float-bnr .inner {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .float-bnr .inner {
    display: block;
    text-align: center;
  }
}
.float-bnr .float-bnr-text {
  font-size: 20px;
  color: #4c79af;
  font-weight: bold;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .float-bnr .float-bnr-text {
    /* 767px */
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .float-bnr .float-bnr-text {
    /* 767px */
    font-size: 16px;
  }
}
@media screen and (max-width: 680px) {
  .float-bnr .float-bnr-text {
    /* 767px */
    font-size: 15px;
  }
}
.win .float-bnr .float-bnr-text {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
  .float-bnr .float-bnr-text {
    padding-right: 0;
    margin-bottom: 10px;
  }
}
.float-bnr .float-bnr-btn {
  display: inline-block;
  border: 3px solid #000;
  border-color: #f9ab02;
  border-radius: 100px;
}

.client .float-bnr .float-bnr-text {
  color: #386097;
}

.client .float-bnr .float-bnr-btn {
  border-color: #e77c22;
}

.customer .float-bnr .float-bnr-text {
  color: #9d323d;
}

.company .float-bnr .float-bnr-text {
  color: #5c7d70;
}

/******* end　セカンドページ ********/
/*# sourceMappingURL=style-without-pages.css.map */


/******* HubSpot 埋め込みフォーム *********/
/***** サイドバー埋め込みフォーム用スタイル *****/

/* 全体設定 */
.mc-side-form {
  color: #282a32;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  width: 340px;
  height: 373px;
}

/* ---------- 入力フィールドの共通スタイル ---------- */
.mc-side-form .hbspt-form .hs-input {
  width: 100% !important;
  max-width: 340px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 5px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s;
  min-width: initial;
}

/* 2カラム時のインプット幅調整 */
.mc-side-form .hs-form .form-columns-2 .hs-form-field .hs-input {
  width: 98% !important;
  margin-right: 4px;
}

/* セレクトボックスの幅調整 */
.mc-side-form .hbspt-form select.hs-input {
  width: 104% !important;
}

/* セレクトボックスの矢印カスタマイズ */
.mc-side-form .hs-form .hs-fieldtype-select .input {
  position: relative;
}

.mc-side-form .hs-form .hs-fieldtype-select .input::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0em;
  width: 1em;
  height: 1em;
  background-image: url("https://www.manpowergroup.jp/assets/images/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 80% 80%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

/* 無効入力時の背景色を固定 */
.mc-side-form .hbspt-form input:invalid,
.mc-side-form .hbspt-form select:invalid {
  background: #ffffff !important;
}

/* ---------- ラベル・必須マーク ---------- */
.mc-side-form .hbspt-form .form-columns-1 span,
.mc-side-form .hbspt-form .form-columns-2 span {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: #141413;
  margin: 2px 0;
}

/* 必須マーク（※）の追加 */
.mc-side-form .hbspt-form .form-columns-1 span:first-child::before,
.mc-side-form .hbspt-form .form-columns-2 span:first-child::before {
  content: "*";
  font-size: 0.8rem;
  color: #ff0000;
  background: #ffffff;
  border-radius: 3px;
  margin-right: 3px;
  padding: 1px 2px;
  display: inline-block;
}

/* HubSpot既定の必須マークを非表示に */
.mc-side-form .hbspt-form .form-columns-1 span.hs-form-required,
.mc-side-form .hbspt-form .form-columns-2 span.hs-form-required {
  display: none;
}

/* ---------- エラーメッセージ ---------- */
.mc-side-form .hbspt-form .no-list.hs-error-msgs.inputs-list {
  line-height: 12px;
  font-size: 10px;
  color: red;
}

/* ---------- 各フィールドのレイアウト調整 ---------- */
.mc-side-form .hbspt-form .field {
  margin-bottom: 5px;
  padding: 0 2px;
}

/* ---------- 個人情報フィールド ---------- */
.mc-side-form .hbspt-form .hs_personal_information .hs-input {
  width: auto !important;
  font-weight: normal;
}

.mc-side-form .hbspt-form .form-columns-1 .hs_personal_information {
  text-align: center;
}

.mc-side-form .hbspt-form .form-columns-1 .hs_personal_information span {
  padding-left: 6px;
  font-size: 1rem;
}

/* ---------- 同意文 ---------- */
.mc-side-form .hbspt-form .form-columns-1 .legal-consent-container .hs-richtext {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

/* ---------- 注意書きなどのテキストブロック ---------- */
.mc-side-form .hbspt-form .form-columns-0 .hs-richtext p {
  height: 20px;
  padding: 0;
  text-align: left;
  color: #141413;
  font-size: 1rem;
  font-weight: normal;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}

/* ---------- 送信ボタンエリア ---------- */
.mc-side-form .hbspt-form .actions {
  margin-top: 1em;
  padding-bottom: 6px;
  text-align: center;
}

.mc-side-form .hbspt-form .actions .hs-button {
  width: 100%;
  max-width: 340px;
  background: #386097;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 5px 0;
  border: 1px solid #386097;
  border-radius: 300px;
}

.mc-side-form .hbspt-form .actions .hs-button:hover {
  opacity: 0.7;
}


/***** 記事内埋め込みフォーム用スタイル *****/
/* フォーム全体の枠・背景スタイル */
.mc-embed-form {
  width: 60% !important;
  margin-left: auto !important;
  padding: 10px;
  border-radius: 8px;
}
 
/* スマホ画面（最大820px）でのスタイル */
@media screen and (max-width: 820px) {
.mc-embed-form {
  width: 100% !important;
  padding: 15px;
  margin: 0 auto;
}}

/* フォーム本体の最大幅 */
.mc-embed-form .hbspt-form {
  max-width: 423px !important;
}

/* 入力フィールド共通 */
.mc-embed-form .hbspt-form .hs-input {
  width: 100% !important;
  max-width: 420px !important;
  min-width: initial !important;
  font-size: 1rem !important;
  line-height: 1rem !important;
  padding: 5px !important;
  border: 1px solid #d3d3d3 !important;
  border-radius: 5px !important;
  outline: none !important;
  transition: all 0.3s !important;
}

/* セレクトボックスのみ横幅を調整 */
.mc-embed-form .hbspt-form select.hs-input {
  width: 103% !important;
}
@media screen and (max-width: 820px) {
.mc-embed-form .hbspt-form select.hs-input {
  width: 100% !important;
}}
/* 2カラムレイアウト */
.mc-embed-form .hs-form .form-columns-2 {
  display: flex !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 4px 0 0 !important;
}

/* 入力エラー時の背景色 */
.mc-embed-form .hbspt-form input:invalid,
.mc-embed-form .hbspt-form select:invalid {
  background: #ffffff !important;
}

/* ラベル共通スタイル */
.mc-embed-form .hbspt-form .form-columns-1 span,
.mc-embed-form .hbspt-form .form-columns-2 span {
  display: inline-block !important;
  font-size: 1rem !important;
  font-weight: bold !important;
  color: #151514 !important;
  margin: 2px 0 !important;
}

/* ラベルの先頭に※を付ける */
.mc-embed-form .hbspt-form .form-columns-1 span:first-child::before,
.mc-embed-form .hbspt-form .form-columns-2 span:first-child::before {
  content: "※" !important;
  display: inline-block !important;
  font-size: 0.5rem !important;
  color: #ff0000 !important;
  background: #ffffff !important;
  border-radius: 3px !important;
  margin-right: 3px !important;
  padding: 1px 2px !important;
}

/* HubSpotの必須マークを非表示 */
.mc-embed-form .hbspt-form .form-columns-1 span.hs-form-required,
.mc-embed-form .hbspt-form .form-columns-2 span.hs-form-required {
  display: none !important;
}

/* エラーメッセージのスタイル */
.mc-embed-form .hbspt-form .no-list.hs-error-msgs.inputs-list {
  line-height: 12px !important;
  font-size: 10px !important;
  color: red !important;
  margin: 0 !important;
}

/* 各フィールドの間隔 */
.mc-embed-form .hbspt-form .field {
  margin-bottom: 5px !important;
  padding: 0 2px !important;
}

/* 個人情報フィールド（例：氏名や電話番号） */
.mc-embed-form .hbspt-form .hs_personal_information .hs-input {
  width: auto !important;
  font-weight: normal !important;
}

.mc-embed-form .hbspt-form .form-columns-1 .hs_personal_information {
  text-align: center !important;
}

.mc-embed-form .hbspt-form .form-columns-1 .hs_personal_information span {
  padding-left: 6px !important;
  font-size: 1rem !important;
}

/* 同意文のスタイル */
.mc-embed-form .hbspt-form .form-columns-1 .legal-consent-container .hs-richtext {
  font-size: 1rem !important;
  font-weight: bold !important;
  text-align: center !important;
}

/* フリーテキストやリッチテキスト */
.mc-embed-form .hbspt-form .form-columns-0 .hs-richtext p {
  height: 20px !important;
  padding: 0 !important;
  text-align: left !important;
  color: #151514 !important;
  font-size: 1rem !important;
  font-weight: normal !important;
  background-color: #fff !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1 !important;
}

/* ボタンエリア */
.mc-embed-form .hbspt-form .actions {
  margin-top: 1em !important;
  padding-bottom: 6px !important;
  text-align: center !important;
}

/* 送信ボタン */
.mc-embed-form .hbspt-form .actions .hs-button {
  width: 100% !important;
  max-width: 340px !important;
  background: #386097 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: bold !important;
  padding: 5px 0 !important;
  border: 1px solid #386097 !important;
  border-radius: 300px !important;
}

.mc-embed-form .hbspt-form .actions .hs-button:hover {
  opacity: 0.7 !important;
}