@charset "UTF-8";
/*! SCSS Starter entry */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;600&family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* semantic / tailwind-like aliases */
.ttl-en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Foundation entry */
a, abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

input, select {
  vertical-align: middle;
}

input[type=button], input[type=radio] select, input[type=submit] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=button]::-webkit-search-decoration, input[type=radio]::-webkit-search-decoration select::-webkit-search-decoration, input[type=submit]::-webkit-search-decoration {
  display: none;
}

input[type=button]::focus, input[type=radio]::focus select::focus, input[type=submit]::focus {
  outline-offset: -2px;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

select::-ms-expand {
  display: none;
}

* {
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  color-scheme: light;
}

html {
  font-size: 100%;
}

body {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #ffffff;
  font-size: type-scale(md);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.l-high {
  line-height: 2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 論理プロパティ推奨 */
main {
  display: block;
}

/* 見出しスケール例 */
h1 {
  font-size: type-scale(3xl);
}

h2 {
  font-size: type-scale(2xl);
}

h3 {
  font-size: type-scale(xl);
}

h4 {
  font-size: type-scale(lg);
}

/* Layout entry */
/*! SCSS Starter entry */
.l-container {
  width: 89.7%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-container {
    width: 83.3%;
  }
}

/* ===================================================
   Grid Layout Utilities
   =================================================== */
/* ベースグリッド */
.l-grid {
  display: -ms-grid;
  display: grid;
  gap: 2.1875rem;
}

@media (min-width: 768px) {
  .l-md--grid {
    display: -ms-grid;
    display: grid;
  }
}

/* カラムバリエーション */
/* ギャップバリエーション（spaceトークンを使用） */
.l-grid--gap-8 {
  gap: 0.5rem;
}

.l-grid--gap-13 {
  gap: 0.8125rem;
}

.l-grid--gap-22 {
  gap: 1.375rem;
}

.l-grid--gap-35 {
  gap: 2.1875rem;
}

.l-grid--gap-56 {
  gap: 3.5rem;
}

.l-grid--gap-92 {
  gap: 5.75rem;
}

.l-grid--1 {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}

.l-grid--2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.l-grid--3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.l-grid--4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.l-grid--5 {
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}

.l-grid--6 {
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
}

.l-grid--7 {
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
}

.l-grid--8 {
  -ms-grid-columns: (1fr)[8];
  grid-template-columns: repeat(8, 1fr);
}

/* レスポンシブ（md以上でカラム変更） */
@media (min-width: 768px) {
  .l-grid--md-1 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .l-grid--md-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid--md-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .l-grid--md-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .l-grid--md-5 {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
  .l-grid--md-6 {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  .l-grid--md-7 {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
  }
  .l-grid--md-8 {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 1024px) {
  .l-grid--lg-1 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .l-grid--lg-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid--lg-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .l-grid--lg-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .l-grid--lg-5 {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
  .l-grid--lg-6 {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  .l-grid--lg-7 {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
  }
  .l-grid--lg-8 {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 1200px) {
  .l-grid--xl-1 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .l-grid--xl-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid--xl-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .l-grid--xl-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .l-grid--xl-5 {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
  .l-grid--xl-6 {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  .l-grid--xl-7 {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
  }
  .l-grid--xl-8 {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
  }
}
.home body.fixed,
.corporate-under body.fixed {
  position: fixed;
}
.home header,
.corporate-under header {
  padding: 15px 15px;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 5;
  top: 0;
}
@media (min-width: 768px) {
  .home header,
  .corporate-under header {
    padding: 8px 15px;
  }
}
@media (min-width: 1100px) {
  .home header,
  .corporate-under header {
    padding: 30px 0 40px 40px;
  }
}
@media (min-width: 1100px) {
  .home header #g-nav,
  .corporate-under header #g-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home header .header-logo,
.corporate-under header .header-logo {
  max-width: 80%;
}
@media (min-width: 768px) {
  .home header .header-logo,
  .corporate-under header .header-logo {
    max-width: 547px;
  }
}
@media (min-width: 1100px) {
  .home header .header-logo .header-logo,
  .corporate-under header .header-logo .header-logo {
    margin: inherit;
  }
}
.home header .header-logo a,
.corporate-under header .header-logo a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
}
@media (min-width: 968px) {
  .home header .header-logo a,
  .corporate-under header .header-logo a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .home header .header-logo a:hover,
  .corporate-under header .header-logo a:hover {
    opacity: 0.7;
  }
}
.home header nav,
.corporate-under header nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  display: none;
  overflow-y: scroll;
}
@media (min-width: 1100px) {
  .home header nav,
  .corporate-under header nav {
    opacity: 1;
    display: block;
    position: inherit;
    overflow-y: inherit;
  }
}
@media (min-width: 1100px) {
  .home header nav .p-header_pcActions,
  .corporate-under header nav .p-header_pcActions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.home header nav .p-header_pcActions > a,
.corporate-under header nav .p-header_pcActions > a {
  color: #fff;
}
.home header nav ul,
.corporate-under header nav ul {
  display: none;
}
@media (min-width: 1100px) {
  .home header nav ul,
  .corporate-under header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home header nav ul a,
.corporate-under header nav ul a {
  border-bottom: 1px solid transparent;
  padding-bottom: 10px;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff;
}
@media (min-width: 1100px) {
  .home header nav ul a,
  .corporate-under header nav ul a {
    font-size: 16px;
    position: relative;
    display: inline-block;
    color: #000;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .home header nav ul a:hover,
  .corporate-under header nav ul a:hover {
    border-bottom: 1px solid #fff;
  }
}
@media (min-width: 1100px) {
  .home header nav ul .spActions,
  .corporate-under header nav ul .spActions {
    display: none;
  }
}
.home header nav.panelactive,
.corporate-under header nav.panelactive {
  opacity: 1;
  display: block;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0b1f40;
}
.home header nav.panelactive ul,
.corporate-under header nav.panelactive ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px 0;
  text-align: center;
  position: absolute;
  z-index: 5;
  width: 90%;
  padding-bottom: 30px;
  top: 10%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media (min-width: 1100px) {
  .home header nav.panelactive ul,
  .corporate-under header nav.panelactive ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 65%;
  }
}
.home header nav .h-nav__attached,
.corporate-under header nav .h-nav__attached {
  font-size: 9px;
  position: absolute;
  top: 40%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  right: 0;
}
@media (min-width: 768px) {
  .home header nav .h-nav__attached,
  .corporate-under header nav .h-nav__attached {
    font-size: 14px;
  }
}
@media (min-width: 1100px) {
  .home header nav .h-nav__attached,
  .corporate-under header nav .h-nav__attached {
    position: inherit;
    -webkit-transform: inherit;
            transform: inherit;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    color: #fff;
  }
}
.home header nav .h-nav__attached a:first-child,
.corporate-under header nav .h-nav__attached a:first-child {
  display: none;
}
@media (min-width: 1100px) {
  .home header nav .h-nav__attached a:first-child,
  .corporate-under header nav .h-nav__attached a:first-child {
    display: block;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .home header nav .h-nav__attached a:first-child:hover,
  .corporate-under header nav .h-nav__attached a:first-child:hover {
    border-bottom: 1px solid #333;
  }
}
.home header nav .h-nav__attached a:last-child,
.corporate-under header nav .h-nav__attached a:last-child {
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
}
@media (min-width: 1100px) {
  .home header nav .h-nav__attached a:last-child,
  .corporate-under header nav .h-nav__attached a:last-child {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    margin-left: 44px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .home header nav .h-nav__attached a:last-child:hover,
  .corporate-under header nav .h-nav__attached a:last-child:hover {
    border-bottom: 1px solid #333;
  }
}
.home header #h-nav .nav-entry a,
.corporate-under header #h-nav .nav-entry a {
  background: #fff;
  color: #0059a8;
}
@media (min-width: 1100px) {
  .home header #h-nav .nav-entry,
  .corporate-under header #h-nav .nav-entry {
    display: none;
  }
}
.home header .h-nav__attached,
.corporate-under header .h-nav__attached {
  display: none;
}
@media (min-width: 1100px) {
  .home header .h-nav__attached,
  .corporate-under header .h-nav__attached {
    position: absolute;
    right: 0;
    top: 30px;
    -webkit-transform: inherit;
            transform: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 4px;
    font-size: 12px;
    margin-right: 140px;
  }
}
@media (min-width: 1200px) {
  .home header .h-nav__attached,
  .corporate-under header .h-nav__attached {
    top: 20px;
  }
}
.home header .h-nav__attached a:last-child,
.corporate-under header .h-nav__attached a:last-child {
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
}
@media (min-width: 1100px) {
  .home header .h-nav__attached a:last-child,
  .corporate-under header .h-nav__attached a:last-child {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    margin-left: 44px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .home header .h-nav__attached a:last-child:hover,
  .corporate-under header .h-nav__attached a:last-child:hover {
    border-bottom: 1px solid #333;
  }
}
.home header .openbtn,
.corporate-under header .openbtn {
  display: block;
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
@media (min-width: 1100px) {
  .home header .openbtn,
  .corporate-under header .openbtn {
    display: none;
    width: 120px;
    height: 120px;
  }
}
.home header .openbtn span,
.corporate-under header .openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #000;
  width: 50%;
}
@media (min-width: 1100px) {
  .home header .openbtn span,
  .corporate-under header .openbtn span {
    right: 35px;
    width: 40%;
  }
}
.home header .openbtn span:nth-of-type(1),
.corporate-under header .openbtn span:nth-of-type(1) {
  top: 20px;
}
@media (min-width: 1100px) {
  .home header .openbtn span:nth-of-type(1),
  .corporate-under header .openbtn span:nth-of-type(1) {
    top: 44px;
  }
}
.home header .openbtn span:nth-of-type(2),
.corporate-under header .openbtn span:nth-of-type(2) {
  top: 28px;
}
@media (min-width: 1100px) {
  .home header .openbtn span:nth-of-type(2),
  .corporate-under header .openbtn span:nth-of-type(2) {
    top: 54px;
  }
}
.home header .openbtn span:nth-of-type(3),
.corporate-under header .openbtn span:nth-of-type(3) {
  top: 36px;
}
@media (min-width: 1100px) {
  .home header .openbtn span:nth-of-type(3),
  .corporate-under header .openbtn span:nth-of-type(3) {
    top: 64px;
  }
}
.home header .openbtn.active,
.corporate-under header .openbtn.active {
  background: #fff;
}
.home header .openbtn.active span,
.corporate-under header .openbtn.active span {
  width: 50%;
  left: 14px;
  background: #0b1f40;
}
@media (min-width: 1100px) {
  .home header .openbtn.active span,
  .corporate-under header .openbtn.active span {
    left: 27px;
  }
}
.home header .openbtn.active span:nth-of-type(1),
.corporate-under header .openbtn.active span:nth-of-type(1) {
  top: 23px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
@media (min-width: 1100px) {
  .home header .openbtn.active span:nth-of-type(1),
  .corporate-under header .openbtn.active span:nth-of-type(1) {
    top: 47px;
  }
}
.home header .openbtn.active span:nth-of-type(2),
.corporate-under header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.home header .openbtn.active span:nth-of-type(3),
.corporate-under header .openbtn.active span:nth-of-type(3) {
  top: 35px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
}
@media (min-width: 1100px) {
  .home header .openbtn.active span:nth-of-type(3),
  .corporate-under header .openbtn.active span:nth-of-type(3) {
    top: 60px;
  }
}
.home main,
.corporate-under main {
  padding-top: 70px;
}
@media (min-width: 768px) {
  .home main,
  .corporate-under main {
    padding-top: 70px;
  }
}
@media (min-width: 1100px) {
  .home main,
  .corporate-under main {
    padding-top: 160px;
  }
}

.recruit-top body.fixed,
.recruit-under body.fixed {
  position: fixed;
}
.recruit-top header,
.recruit-under header {
  padding: 15px 15px;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 5;
  top: 0;
}
@media (min-width: 768px) {
  .recruit-top header,
  .recruit-under header {
    height: 66px;
  }
}
@media (min-width: 1100px) {
  .recruit-top header,
  .recruit-under header {
    height: 90px;
  }
}
@media (min-width: 1100px) {
  .recruit-top header #g-nav,
  .recruit-under header #g-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.recruit-top header .header-logo,
.recruit-under header .header-logo {
  max-width: 80%;
}
@media (min-width: 768px) {
  .recruit-top header .header-logo,
  .recruit-under header .header-logo {
    max-width: 547px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (min-width: 1100px) {
  .recruit-top header .header-logo,
  .recruit-under header .header-logo {
    max-width: 430px;
  }
}
@media (min-width: 1210px) {
  .recruit-top header .header-logo,
  .recruit-under header .header-logo {
    max-width: 547px;
  }
}
@media (min-width: 1325px) {
  .recruit-top header .header-logo,
  .recruit-under header .header-logo {
    max-width: 650px;
  }
}
@media (min-width: 1450px) {
  .recruit-top header .header-logo,
  .recruit-under header .header-logo {
    max-width: 748px;
  }
}
@media (min-width: 1100px) {
  .recruit-top header .header-logo,
  .recruit-under header .header-logo {
    margin: inherit;
  }
}
.recruit-top header .header-logo a,
.recruit-under header .header-logo a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
}
@media (min-width: 968px) {
  .recruit-top header .header-logo a,
  .recruit-under header .header-logo a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-top header .header-logo a:hover,
  .recruit-under header .header-logo a:hover {
    opacity: 0.7;
  }
}
.recruit-top header nav,
.recruit-under header nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  display: none;
  overflow-y: scroll;
}
.recruit-top header nav ul,
.recruit-under header nav ul {
  display: none;
}
.recruit-top header nav ul a,
.recruit-under header nav ul a {
  border-bottom: 1px solid transparent;
  padding-bottom: 10px;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff;
}
@media (min-width: 1100px) {
  .recruit-top header nav ul a,
  .recruit-under header nav ul a {
    font-size: 16px;
    position: relative;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-top header nav ul a:hover,
  .recruit-under header nav ul a:hover {
    border-bottom: 1px solid #fff;
  }
}
.recruit-top header nav.panelactive,
.recruit-under header nav.panelactive {
  opacity: 1;
  display: block;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0b1f40;
}
.recruit-top header nav.panelactive ul,
.recruit-under header nav.panelactive ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px 0;
  text-align: center;
  position: absolute;
  z-index: 5;
  width: 90%;
  padding-bottom: 30px;
  top: 10%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media (min-width: 1100px) {
  .recruit-top header nav.panelactive ul,
  .recruit-under header nav.panelactive ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 65%;
  }
}
.recruit-top header #h-nav .nav-entry a,
.recruit-under header #h-nav .nav-entry a {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  color: #0059a8;
}
@media (min-width: 1100px) {
  .recruit-top header #h-nav .nav-entry,
  .recruit-under header #h-nav .nav-entry {
    display: none;
  }
}
.recruit-top header .h-nav__attached,
.recruit-under header .h-nav__attached {
  display: none;
}
@media (min-width: 1100px) {
  .recruit-top header .h-nav__attached,
  .recruit-under header .h-nav__attached {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 4px;
    font-size: 12px;
    color: #fff;
  }
}
.recruit-top header .h-nav__attached a:last-child,
.recruit-under header .h-nav__attached a:last-child {
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
}
@media (min-width: 1100px) {
  .recruit-top header .h-nav__attached a:last-child,
  .recruit-under header .h-nav__attached a:last-child {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-top header .h-nav__attached a:last-child:hover,
  .recruit-under header .h-nav__attached a:last-child:hover {
    border-bottom: 1px solid #333;
  }
}
.recruit-top header .openbtn,
.recruit-under header .openbtn {
  display: block;
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: #0b1f40;
}
@media (min-width: 768px) {
  .recruit-top header .openbtn,
  .recruit-under header .openbtn {
    width: 66px;
    height: 66px;
  }
}
@media (min-width: 1100px) {
  .recruit-top header .openbtn,
  .recruit-under header .openbtn {
    width: 90px;
    height: 90px;
  }
}
.recruit-top header .openbtn span,
.recruit-under header .openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #fff;
  width: 50%;
}
@media (min-width: 1100px) {
  .recruit-top header .openbtn span,
  .recruit-under header .openbtn span {
    right: 27px;
    width: 40%;
  }
}
.recruit-top header .openbtn span:nth-of-type(1),
.recruit-under header .openbtn span:nth-of-type(1) {
  top: 20px;
}
@media (min-width: 768px) {
  .recruit-top header .openbtn span:nth-of-type(1),
  .recruit-under header .openbtn span:nth-of-type(1) {
    top: 26px;
  }
}
@media (min-width: 1100px) {
  .recruit-top header .openbtn span:nth-of-type(1),
  .recruit-under header .openbtn span:nth-of-type(1) {
    top: 31px;
  }
}
.recruit-top header .openbtn span:nth-of-type(2),
.recruit-under header .openbtn span:nth-of-type(2) {
  top: 28px;
}
@media (min-width: 768px) {
  .recruit-top header .openbtn span:nth-of-type(2),
  .recruit-under header .openbtn span:nth-of-type(2) {
    top: 34px;
  }
}
@media (min-width: 1100px) {
  .recruit-top header .openbtn span:nth-of-type(2),
  .recruit-under header .openbtn span:nth-of-type(2) {
    top: 40px;
  }
}
.recruit-top header .openbtn span:nth-of-type(3),
.recruit-under header .openbtn span:nth-of-type(3) {
  top: 36px;
}
@media (min-width: 768px) {
  .recruit-top header .openbtn span:nth-of-type(3),
  .recruit-under header .openbtn span:nth-of-type(3) {
    top: 42px;
  }
}
@media (min-width: 1100px) {
  .recruit-top header .openbtn span:nth-of-type(3),
  .recruit-under header .openbtn span:nth-of-type(3) {
    top: 48px;
  }
}
.recruit-top header .openbtn.active,
.recruit-under header .openbtn.active {
  background: #fff;
}
.recruit-top header .openbtn.active span,
.recruit-under header .openbtn.active span {
  width: 50%;
  left: 14px;
  background: #0b1f40;
}
@media (min-width: 1100px) {
  .recruit-top header .openbtn.active span,
  .recruit-under header .openbtn.active span {
    left: 27px;
  }
}
.recruit-top header .openbtn.active span:nth-of-type(1),
.recruit-under header .openbtn.active span:nth-of-type(1) {
  top: 23px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
@media (min-width: 768px) {
  .recruit-top header .openbtn.active span:nth-of-type(1),
  .recruit-under header .openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 18px;
  }
}
@media (min-width: 1100px) {
  .recruit-top header .openbtn.active span:nth-of-type(1),
  .recruit-under header .openbtn.active span:nth-of-type(1) {
    top: 38px;
  }
}
.recruit-top header .openbtn.active span:nth-of-type(2),
.recruit-under header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.recruit-top header .openbtn.active span:nth-of-type(3),
.recruit-under header .openbtn.active span:nth-of-type(3) {
  top: 35px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
}
@media (min-width: 768px) {
  .recruit-top header .openbtn.active span:nth-of-type(3),
  .recruit-under header .openbtn.active span:nth-of-type(3) {
    top: 39px;
    left: 18px;
  }
}
@media (min-width: 1100px) {
  .recruit-top header .openbtn.active span:nth-of-type(3),
  .recruit-under header .openbtn.active span:nth-of-type(3) {
    top: 50px;
  }
}
.recruit-top main,
.recruit-under main {
  padding-top: 58px;
}
@media (min-width: 768px) {
  .recruit-top main,
  .recruit-under main {
    padding-top: 65px;
  }
}
@media (min-width: 1100px) {
  .recruit-top main,
  .recruit-under main {
    padding-top: 90px;
  }
}

.rec-footer {
  padding-top: 60px;
}
@media (min-width: 968px) {
  .rec-footer {
    padding-top: 100px;
  }
}
.rec-footer .l-sns {
  padding-bottom: 40px;
}
@media (min-width: 968px) {
  .rec-footer .l-sns {
    padding-bottom: 60px;
  }
}
.rec-footer .l-sns .l-sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
}
@media (min-width: 968px) {
  .rec-footer .l-sns .l-sns__list img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 50%;
    border: 1px solid transparent;
  }
}
@media (min-width: 968px) {
  .rec-footer .l-sns .l-sns__list a:hover img {
    border: 1px solid #0059a8;
  }
}
.rec-footer .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #c1c8dd;
  padding-top: 50px;
}
@media (min-width: 968px) {
  .rec-footer .l-container {
    width: 73.3%;
    padding-top: 60px;
  }
}
.rec-footer .l-container .p-footer__logo {
  padding: 0 20px 40px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footer__logo {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
    border-bottom: none;
    width: 50%;
    padding: 0;
    margin-bottom: 50px;
  }
}
.rec-footer .l-container .p-footer__logo img {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .rec-footer .l-container .p-footer__logo img {
    max-width: 75%;
  }
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footer__logo img {
    margin-bottom: 50px;
  }
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footer__logo .m-btn {
    width: 240px;
    font-size: 16px;
    padding: 15px;
  }
  .rec-footer .l-container .p-footer__logo .m-btn:after {
    right: 24px;
    width: 8px;
    height: 8px;
  }
}
.rec-footer .l-container .p-footer__recruitInfo {
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-bottom: 50px;
  margin-bottom: 20px;
  border-bottom: 1px solid #c1c8dd;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footer__recruitInfo {
    width: 50%;
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.rec-footer .l-container .p-footer__recruitInfo .support-logo {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 10px;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footer__recruitInfo .support-logo {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0;
  }
}
.rec-footer .l-container .p-footer__recruitInfo .support-logo img.support__first {
  max-width: 134px;
}
@media (min-width: 1100px) {
  .rec-footer .l-container .p-footer__recruitInfo .support-logo img.support__first {
    max-width: 200px;
  }
}
.rec-footer .l-container .p-footer__recruitInfo .support-logo img.support__secound {
  max-width: 160px;
}
@media (min-width: 1100px) {
  .rec-footer .l-container .p-footer__recruitInfo .support-logo img.support__secound {
    max-width: 240px;
  }
}
.rec-footer .l-container .p-footerTop__nav {
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  .rec-footer .l-container .p-footerTop__nav {
    margin: 0 0 40px;
  }
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerTop__nav {
    width: 100%;
    border-bottom: 1px solid #c1c8dd;
    padding-bottom: 80px;
    margin: 0;
  }
}
.rec-footer .l-container .p-footerTop__nav .p-footer__corporate,
.rec-footer .l-container .p-footerTop__nav .p-footer__recruit {
  margin-top: 25px;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerTop__nav .p-footer__corporate,
  .rec-footer .l-container .p-footerTop__nav .p-footer__recruit {
    margin-top: 40px;
  }
}
.rec-footer .l-container .p-footerTop__nav .p-footer__corporate .f-ttl,
.rec-footer .l-container .p-footerTop__nav .p-footer__recruit .f-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerTop__nav .p-footer__corporate .f-ttl,
  .rec-footer .l-container .p-footerTop__nav .p-footer__recruit .f-ttl {
    font-size: 18px;
  }
}
.rec-footer .l-container .p-footerTop__nav .p-footer__corporate .f-ttl:before,
.rec-footer .l-container .p-footerTop__nav .p-footer__recruit .f-ttl:before {
  content: "";
  background: #0059a8;
  width: 20px;
  height: 5px;
  margin-right: 10px;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerTop__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px 80px;
  }
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerTop__nav ul li {
    position: relative;
  }
  .rec-footer .l-container .p-footerTop__nav ul li:after {
    content: "";
    width: 1px;
    height: 20px;
    background: #c1c8dd;
    position: absolute;
    right: -40px;
    top: 5px;
  }
}
.rec-footer .l-container .p-footerTop__nav ul li a {
  font-weight: bold;
  font-size: 14px;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerTop__nav ul li a {
    display: block;
    text-align: center;
    font-size: 17px;
  }
}
.rec-footer .l-container .p-footerTop__nav ul li + li {
  margin-top: 17px;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerTop__nav ul li + li {
    margin-top: 0;
  }
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerTop__nav ul li:last-child:after {
    content: none;
  }
}
.rec-footer .l-container .p-footerBottom__nav {
  margin-bottom: 20px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerBottom__nav {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
    width: 100%;
    margin: 20px 0;
  }
}
.rec-footer .l-container .p-footerBottom__nav .p-footerBottom__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 31px;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerBottom__nav .p-footerBottom__navList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1400px) {
  .rec-footer .l-container .p-footerBottom__nav .p-footerBottom__navList {
    gap: 0 115px;
  }
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerBottom__nav .p-footerBottom__navList li {
    position: relative;
  }
  .rec-footer .l-container .p-footerBottom__nav .p-footerBottom__navList li:after {
    content: "";
    width: 1px;
    height: 20px;
    background: #c1c8dd;
    position: absolute;
    right: -16px;
    top: 5px;
  }
}
@media (min-width: 968px) and (min-width: 1400px) {
  .rec-footer .l-container .p-footerBottom__nav .p-footerBottom__navList li:after {
    right: -50px;
  }
}
.rec-footer .l-container .p-footerBottom__nav .p-footerBottom__navList li a {
  font-size: 12px;
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerBottom__nav .p-footerBottom__navList li a {
    font-size: 16px;
  }
}
@media (min-width: 968px) {
  .rec-footer .l-container .p-footerBottom__nav .p-footerBottom__navList li:last-child:after {
    content: none;
  }
}
.rec-footer .p-footer__copyright {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 12px;
  padding: 16px 0;
}

/* Components entry */
.recruit-article .articleContents {
  padding-top: 0;
  /* ---- headings ---- */
}
.recruit-article .articleContents h1,
.recruit-article .articleContents h2,
.recruit-article .articleContents h3,
.recruit-article .articleContents h4,
.recruit-article .articleContents h5,
.recruit-article .articleContents h6 {
  font-weight: 600;
  line-height: 1.25;
}
.recruit-article .articleContents h1 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}
.recruit-article .articleContents h2 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}
.recruit-article .articleContents h3 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.75rem;
}
.recruit-article .articleContents h4 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}
.recruit-article .articleContents time {
  margin-bottom: 4em;
  display: block;
  text-align: right;
}
.recruit-article .articleContents {
  /* ---- text / inline ---- */
}
.recruit-article .articleContents p,
.recruit-article .articleContents ul,
.recruit-article .articleContents ol {
  margin: 0 0 1.25rem;
}
  .articleContents p img[src$="pdf.gif"] {
    display: inline;
}
.recruit-article .articleContents ul,
.recruit-article .articleContents ol {
  padding-left: 1.25rem;
}
.recruit-article .articleContents a {
  color: #00A99D;
}
.recruit-article .articleContents {
  /* ---- quote ---- */
}
.recruit-article .articleContents blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 0.1875rem solid #d1d5db;
  color: #4b5563;
  font-style: italic;
}
.recruit-article .articleContents {
  /* ---- media ---- */
}
.recruit-article .articleContents img,
.recruit-article .articleContents figure {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}
.recruit-article .articleContents {
  /* ---- code ---- */
}
.recruit-article .articleContents pre,
.recruit-article .articleContents code {
  margin: 1.5rem 0;
  padding: 0.75rem 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  background: #f9fafb;
  border-radius: 0.25rem;
  overflow-x: auto;
}
.recruit-article .articleContents {
  /* ---- hr ---- */
}
.recruit-article .articleContents hr {
  margin: 2rem 0;
  border: none;
  border-top: 0.0625rem solid #d1d5db;
}
.recruit-article .articleContents {
  /* ---- table ---- */
}
.recruit-article .articleContents table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.875rem;
}
.recruit-article .articleContents th,
.recruit-article .articleContents td {
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #d1d5db;
  text-align: left;
  vertical-align: top;
}
.recruit-article .articleContents th {
  background: #0059a8;
  color: #fff;
  font-weight: 600;
}
.recruit-article .articleContents caption {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: #4b5563;
  text-align: left;
}

.recruit-interview-archicle .s-interviewArticleHero {
  padding: 0 !important;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .s-interviewArticleHero {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url(ssx2025/assets/img-lib/service/interview/triangle.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 35%;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .s-interviewArticleHero__img {
    width: 73%;
  }
}
@media (min-width: 768px) {
  .recruit-interview-archicle .s-interviewArticleHero__img img {
    -o-object-fit: cover;
       object-fit: cover;
    block-size: 100%;
  }
}
.recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead {
  width: 89.7%;
  margin: 0 auto;
  padding: 20px 0 50px;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead {
    width: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
  background: #fff;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch {
    padding: 50px 20px 50px 17%;
  }
}
.recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch .s-interviewArticleHero__catch-title {
  font-size: clamp(1.438rem, 1.176rem + 1.11vw, 2.5rem);
}
@media (min-width: 968px) {
  .recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch .s-interviewArticleHero__catch-title {
    font-size: 25px;
  }
}
.recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch .s-interviewArticleHero__catch-copy {
  font-size: clamp(1.125rem, 1.033rem + 0.39vw, 1.5rem);
  font-weight: 500;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch .s-interviewArticleHero__catch-copy {
    font-size: 17px;
  }
}
.recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch .s-interviewArticleHero__profile-title {
  font-weight: bold;
  font-size: clamp(1.125rem, 1.033rem + 0.39vw, 1.5rem);
}
@media (min-width: 968px) {
  .recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch .s-interviewArticleHero__profile-title {
    font-size: 17px;
  }
}
.recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch .s-interviewArticleHero__profile-copy {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
}
@media (min-width: 968px) {
  .recruit-interview-archicle .s-interviewArticleHero .s-interviewArticleHeroHead .s-interviewArticleHero__catch .s-interviewArticleHero__profile-copy {
    font-size: 17px;
  }
}
.recruit-interview-archicle .sec-even,
.recruit-interview-archicle .sec-odd {
  padding: 40px 0;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-even,
  .recruit-interview-archicle .sec-odd {
    padding: 50px 0;
  }
}
.recruit-interview-archicle .sec-even .l-question,
.recruit-interview-archicle .sec-odd .l-question {
  text-align: center;
  font-size: 21px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .recruit-interview-archicle .sec-even .l-question,
  .recruit-interview-archicle .sec-odd .l-question {
    margin-bottom: 50px;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-even .l-question,
  .recruit-interview-archicle .sec-odd .l-question {
    font-size: 26px;
    margin-bottom: 70px;
  }
}
.recruit-interview-archicle .sec-even .l-question span,
.recruit-interview-archicle .sec-odd .l-question span {
  background-image: url(ssx2025/assets/img-lib/service/interview/brackets-left.svg), url(ssx2025/assets/img-lib/service/interview/brackets-right.svg);
  background-repeat: no-repeat;
  background-position: left top, right bottom;
  background-size: 5%;
  display: inline-block;
  width: 93%;
  padding: 10px 15px;
}
@media (min-width: 768px) {
  .recruit-interview-archicle .sec-even .l-question span,
  .recruit-interview-archicle .sec-odd .l-question span {
    background-size: 8%;
    display: inline;
    padding: 30px 40px;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-even .l-question span,
  .recruit-interview-archicle .sec-odd .l-question span {
    background-image: none;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-even .l-question span:before, .recruit-interview-archicle .sec-even .l-question span:after,
  .recruit-interview-archicle .sec-odd .l-question span:before,
  .recruit-interview-archicle .sec-odd .l-question span:after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-even .l-question span:before,
  .recruit-interview-archicle .sec-odd .l-question span:before {
    margin-top: -30px;
    margin-right: 20px;
    background-image: url(ssx2025/assets/img-lib/service/interview/brackets-left.svg);
    background-position: left top;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-even .l-question span:after,
  .recruit-interview-archicle .sec-odd .l-question span:after {
    margin-top: 30px;
    margin-left: 20px;
    background-image: url(ssx2025/assets/img-lib/service/interview/brackets-right.svg);
    background-position: right bottom;
  }
}
.recruit-interview-archicle .sec-even .text-area,
.recruit-interview-archicle .sec-odd .text-area {
  width: 89.7%;
  margin: 0 auto;
}
.recruit-interview-archicle .sec-even .text-area h2,
.recruit-interview-archicle .sec-odd .text-area h2 {
  font-size: 20px;
  margin-bottom: 25px;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-even .text-area h2,
  .recruit-interview-archicle .sec-odd .text-area h2 {
    font-size: 24px;
  }
}
.recruit-interview-archicle .sec-even .text-area p,
.recruit-interview-archicle .sec-odd .text-area p {
  font-size: 16px;
  line-height: 2;
}
.recruit-interview-archicle .sec-even img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .recruit-interview-archicle .sec-even img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.recruit-interview-archicle .sec-even .text-area {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 768px) {
  .recruit-interview-archicle .sec-even .text-area {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 5%;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-even.-even-last {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .recruit-interview-archicle .sec-odd .text-area {
    padding-right: 5%;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-odd.-odd-last {
    margin-bottom: 60px;
  }
}
.recruit-interview-archicle .sec-oneday {
  position: relative;
}
.recruit-interview-archicle .sec-oneday:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/top/triangle03.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: -10px;
}
@media (min-width: 768px) {
  .recruit-interview-archicle .sec-oneday:before {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday:before {
    width: 29em;
    height: 29em;
    top: -30px;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday .l-container {
    padding: 0;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday .l-container img {
    width: 55%;
  }
}
.recruit-interview-archicle .sec-oneday .l-container h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 20px;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday .l-container h2 {
    font-size: 24px;
  }
}
.recruit-interview-archicle .sec-oneday .l-container .text-area {
  background: #fff;
  padding: 30px;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday .l-container .text-area {
    width: 50%;
    margin-left: auto;
    margin-top: -19%;
    position: relative;
    z-index: 1;
    padding: 40px 70px;
  }
}
.recruit-interview-archicle .sec-oneday .l-container .text-area dl {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 16px;
  position: relative;
}
.recruit-interview-archicle .sec-oneday .l-container .text-area dl:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  top: 0;
  background: #0059a8;
  display: inline-block;
  position: absolute;
}
.recruit-interview-archicle .sec-oneday .l-container .text-area dl dt {
  width: 25%;
  position: relative;
  padding-left: 12px;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday .l-container .text-area dl dt {
    width: 14%;
    padding-left: 20px;
  }
}
.recruit-interview-archicle .sec-oneday .l-container .text-area dl dt:before {
  content: "";
  display: inline-block;
  background: #0059a8;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: -4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.recruit-interview-archicle .sec-oneday .l-container .text-area dl dd {
  width: 75%;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday .l-container .text-area dl dd {
    width: 86%;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday.-no-image {
    padding: 160px 0 80px;
  }
}
.recruit-interview-archicle .sec-oneday.-no-image dl {
  background: #fff;
  padding: 30px;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.recruit-interview-archicle .sec-oneday.-no-image dl:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 80%;
  top: 10%;
  background: #0059a8;
  display: inline-block;
  position: absolute;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday.-no-image dl {
    width: 68%;
    margin: 0 auto;
  }
}
.recruit-interview-archicle .sec-oneday.-no-image dl dt {
  width: 25%;
  position: relative;
  padding-left: 12px;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday.-no-image dl dt {
    width: 14%;
    padding-left: 20px;
  }
}
.recruit-interview-archicle .sec-oneday.-no-image dl dt:before {
  content: "";
  display: inline-block;
  background: #0059a8;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: -4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.recruit-interview-archicle .sec-oneday.-no-image dl dd {
  width: 75%;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-oneday.-no-image dl dd {
    width: 86%;
  }
}
.recruit-interview-archicle .sec-connection {
  background-color: #eef0f6;
  position: relative;
}
.recruit-interview-archicle .sec-connection:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/top/triangle03.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: -10px;
}
@media (min-width: 768px) {
  .recruit-interview-archicle .sec-connection:before {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-connection:before {
    width: 29em;
    height: 29em;
    top: -30px;
  }
}
.recruit-interview-archicle .sec-connection .l-connection .text-area {
  width: 89.7%;
  margin: 0 auto;
}
.recruit-interview-archicle .sec-connection .l-connection .text-area h2 {
  background: #fff;
  font-size: 18px;
  padding: 5px 5px 5px 0;
  margin-bottom: 10px;
  color: #0059a8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 968px) {
  .recruit-interview-archicle .sec-connection .l-connection .text-area h2 {
    margin-bottom: 20px;
    padding: 10px 10px 10px 0;
  }
}
.recruit-interview-archicle .sec-connection .l-connection .text-area h2:before {
  content: "";
  background: #0059a8;
  width: 20px;
  height: 5px;
  margin-right: 10px;
}
.recruit-interview-archicle .sec-connection .l-connection .text-area p {
  font-size: 16px;
  line-height: 2;
  padding-left: 2em;
}
.recruit-interview-archicle .sec-connection .l-connection + .l-connection {
  margin-top: 50px;
}

.recruit-talk-article .l-container.l-talk-title {
  background: #eef0f6;
  padding: 30px 20px 40px;
  margin-bottom: 40px;
}
@media (min-width: 968px) {
  .recruit-talk-article .l-container.l-talk-title {
    width: 100%;
    margin: -22% auto 3%;
    padding: 22% 5% 120px 12%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.recruit-talk-article .l-container.l-talk-title h1 {
  font-size: clamp(1.438rem, 1.176rem + 1.11vw, 2.5rem);
  margin-bottom: 25px;
}
@media (min-width: 968px) {
  .recruit-talk-article .l-container.l-talk-title h1 {
    width: 50%;
    font-size: 25px;
  }
}
.recruit-talk-article .l-container.l-talk-title p {
  font-size: 16px;
}
@media (min-width: 968px) {
  .recruit-talk-article .l-container.l-talk-title p {
    width: 77%;
  }
}
.recruit-talk-article .l-container.l-talk-title p .lead__ttl {
  font-weight: bold;
  display: block;
  font-size: clamp(1.438rem, 1.176rem + 1.11vw, 2.5rem);
  margin-bottom: 10px;
}
@media (min-width: 968px) {
  .recruit-talk-article .l-container.l-talk-title p .lead__ttl {
    font-size: 25px;
  }
}
.recruit-talk-article .sec-memmber {
  position: relative;
}
.recruit-talk-article .sec-memmber:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 768px) {
  .recruit-talk-article .sec-memmber:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-memmber:before {
    width: 34em;
    height: 29em;
    left: 5%;
    top: -7%;
  }
}
.recruit-talk-article .sec-memmber:after {
  content: "";
  display: inline-block;
  width: 7em;
  height: 7em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -60px;
}
@media (min-width: 768px) {
  .recruit-talk-article .sec-memmber:after {
    width: 12em;
    height: 12em;
  }
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-memmber:after {
    width: 16em;
    height: 16em;
  }
}
.recruit-talk-article .sec-memmber .l-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-memmber .l-grid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.recruit-talk-article .sec-memmber .l-grid .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
  width: 44%;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-memmber .l-grid .item {
    width: 21%;
  }
}
.recruit-talk-article .sec-memmber .l-grid .item h3 {
  font-size: clamp(1rem, 0.984rem + 0.07vw, 1.063rem);
  font-weight: normal;
  text-align: center;
}
.recruit-talk-article .sec-memmber .l-grid .item p {
  font-size: clamp(0.938rem, 0.921rem + 0.07vw, 1rem);
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment {
    padding: 160px 0 1px;
  }
}
.recruit-talk-article .sec-comment .ttl-copy {
  font-size: clamp(1.188rem, 1.123rem + 0.26vw, 1.438rem);
  font-weight: bold;
  margin-bottom: 10px;
}
.recruit-talk-article .sec-comment .ttl-copy span {
  display: block;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment .ttl-copy span {
    display: inline;
    margin-right: 0.5em;
  }
}
.recruit-talk-article .sec-comment .ttl-border {
  font-size: 20px;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment .ttl-border {
    font-size: 26px;
  }
}
.recruit-talk-article .sec-comment ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
  margin-bottom: 60px;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul {
    margin-bottom: 120px;
  }
}
.recruit-talk-article .sec-comment ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.recruit-talk-article .sec-comment ul li .s-talkArticle__img {
  display: block;
  width: 30%;
  margin-bottom: 30px;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul li .s-talkArticle__img {
    width: 15%;
    max-width: 180px;
    margin-bottom: 0;
  }
}
@media (min-width: 1536px) {
  .recruit-talk-article .sec-comment ul li .s-talkArticle__img {
    width: 100%;
  }
}
.recruit-talk-article .sec-comment ul li .s-talkArticle__img img {
  margin-bottom: 10px;
}
.recruit-talk-article .sec-comment ul li .s-talkArticle__img figcaption {
  text-align: center;
  font-size: clamp(0.938rem, 0.861rem + 0.33vw, 1.25rem);
}
.recruit-talk-article .sec-comment ul li .s-talkArticle__column {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul li .s-talkArticle__column {
    width: 80%;
    padding: 60px 35px;
  }
}
.recruit-talk-article .sec-comment ul li .s-talkArticle__column:before {
  content: "";
  position: absolute;
  top: -40px;
  border: 20px solid transparent;
  border-bottom: 20px solid #fff;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul li .s-talkArticle__column:before {
    top: 25%;
    border-bottom: none;
  }
}
.recruit-talk-article .sec-comment ul li .s-talkArticle__column p {
  font-size: 16px;
  line-height: 2;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul li.odd .s-talkArticle__column {
    margin-left: auto;
  }
}
.recruit-talk-article .sec-comment ul li.odd .s-talkArticle__column:before {
  left: 27px;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul li.odd .s-talkArticle__column:before {
    left: -40px;
    border: 13px solid transparent;
    border-right: 30px solid #fff;
  }
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul li.even .s-talkArticle__column {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: auto;
  }
}
.recruit-talk-article .sec-comment ul li.even .s-talkArticle__column:before {
  right: 27px;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul li.even .s-talkArticle__column:before {
    right: -40px;
    border: 13px solid transparent;
    border-left: 30px solid #fff;
  }
}
.recruit-talk-article .sec-comment ul li.even .s-talkArticle__img {
  margin-left: auto;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-comment ul li.even .s-talkArticle__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.recruit-talk-article .sec-message {
  padding: 0 0 60px;
  position: relative;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-message {
    padding: 0 0 160px;
  }
}
.recruit-talk-article .sec-message:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/top/triangle04.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: -10px;
}
@media (min-width: 768px) {
  .recruit-talk-article .sec-message:before {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-message:before {
    width: 31em;
    height: 29em;
    bottom: -30px;
  }
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-message .l-container {
    padding: 0;
  }
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-message .l-container img {
    width: 55%;
  }
}
.recruit-talk-article .sec-message .l-container .text-area {
  background: #fff;
  padding: 30px;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-message .l-container .text-area {
    width: 65%;
    margin-left: auto;
    margin-top: -13%;
    position: relative;
    z-index: 1;
    padding: 40px 70px;
  }
}
.recruit-talk-article .sec-message .l-container .text-area h2 {
  font-size: 20px;
  margin-bottom: 25px;
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-message .l-container .text-area h2 {
    font-size: 26px;
  }
}
.recruit-talk-article .sec-message .l-container .text-area p {
  font-size: 16px;
  line-height: 2;
}
.recruit-talk-article .sec-other {
  position: relative;
}
.recruit-talk-article .sec-other:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -60px;
}
@media (min-width: 768px) {
  .recruit-talk-article .sec-other:after {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-talk-article .sec-other:after {
    width: 27em;
    height: 27em;
  }
}
.recruit-talk-article .sec-other .l-grid {
  margin-bottom: 60px;
}
.recruit-talk-article .sec-other .l-grid .item img {
  margin-bottom: 10px;
}
.recruit-talk-article .sec-other .l-grid .item .roboto {
  font-size: clamp(0.875rem, 0.861rem + 0.33vw, 1.25rem);
  color: #0059a8;
}
.recruit-talk-article .sec-other .l-grid .item h3 {
  font-size: clamp(0.938rem, 0.799rem + 0.59vw, 1.5rem);
}

.l-breadcrumb {
  padding: 12px 20px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .l-breadcrumb {
    padding: 20px 12%;
    margin-bottom: 80px;
  }
}
.l-breadcrumb .p-breadcrumbNavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
}
.l-breadcrumb .p-breadcrumbNavList li {
  font-size: 12px;
}
@media (min-width: 768px) {
  .l-breadcrumb .p-breadcrumbNavList li {
    font-size: 14px;
  }
}
.l-breadcrumb .p-breadcrumbNavList li.current {
  color: rgba(51, 51, 51, 0.5);
}
.l-breadcrumb .p-breadcrumbNavList li + li::before {
  margin: 0 11px 1.5px;
  border-top: 0.5px solid #333;
  border-right: 0.5px solid #333;
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (min-width: 768px) {
  .recruit-interview-archicle .l-breadcrumb {
    padding: 20px 2%;
  }
}
@media (min-width: 1100px) {
  .recruit-interview-archicle .l-breadcrumb {
    margin-bottom: 0;
  }
}

.v-btn {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.m-btn {
  background: #0b1f40;
  color: #fff;
  display: inline-block;
  width: 240px;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.m-btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .m-btn {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
  }
  .m-btn:hover {
    border: 1px solid #0b1f40;
    background: #fff;
    color: #0b1f40;
  }
  .m-btn:hover:after {
    border-top: solid 2px #0b1f40;
    border-right: solid 2px #0b1f40;
  }
}
@media (min-width: 968px) {
  .m-btn {
    width: 380px;
    font-size: 18px;
    padding: 17px;
  }
  .m-btn:after {
    right: 40px;
    width: 10px;
    height: 10px;
  }
}

.g-btn {
  background: #0B1F40;
  color: #fff;
  display: inline-block;
  width: 240px;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.g-btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .g-btn {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
  }
  .g-btn:hover {
    border: 1px solid #0b1f40;
    background: #fff;
    color: #0b1f40;
  }
  .g-btn:hover:after {
    border-top: solid 2px #0b1f40;
    border-right: solid 2px #0b1f40;
  }
}
@media (min-width: 968px) {
  .g-btn {
    width: 380px;
    font-size: 18px;
    padding: 17px;
  }
  .g-btn:after {
    right: 40px;
    width: 10px;
    height: 10px;
  }
}

.d-btn {
  width: 160px;
  text-align: center;
  display: block;
  padding: 15px;
  color: #fff;
  background: #0b1f40;
  font-weight: bold;
  font-size: 14px;
}
@media (min-width: 1250px) {
  .d-btn {
    width: 240px;
    padding: 24px;
    font-size: 17px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
  }
  .d-btn:hover {
    border: 1px solid #0b1f40;
    background: #fff;
    color: #0b1f40;
  }
}

.recruit-top .mv .d-btn {
  padding: 10px 15px;
}

.mid-btn {
  width: 160px;
  text-align: center;
  display: block;
  padding: 10px 15px;
  color: #fff;
  background: #0059a8;
  font-weight: bold;
  font-size: 14px;
}
@media (min-width: 1250px) {
  .mid-btn {
    width: 240px;
    padding: 24px;
    font-size: 17px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
  }
  .mid-btn:hover {
    border: 1px solid #0059a8;
    background: #fff;
    color: #0059a8;
  }
}

@media (min-width: 1100px) {
  .recruit-top header .h-nav__attached .mid-btn,
  .recruit-under header .h-nav__attached .mid-btn,
  .recruit-top header .h-nav__attached a:last-child,
  .recruit-under header .h-nav__attached a:last-child {
    width: 240px;
    padding: 15px;
  }
}

.btn-center {
  text-align: center;
}

.fadein, .fv-target {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}

/*class付与後*/
.fadein.scrollin, .fv-target.scrollin {
  opacity: 1;
}

.fadein.fade-up {
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.fade-up.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade_order1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.fade_order2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.fade_order3 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fade_order4 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.fade_order5 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

@media (min-width: 768px) {
  .fv-target.fade_order1 {
    -webkit-animation: example 0.5s ease 1s 1 forwards;
            animation: example 0.5s ease 1s 1 forwards;
  }
}

@media (min-width: 768px) {
  .fv-target.fade_order2 {
    -webkit-animation: example 0.5s ease 1.2s 1 forwards;
            animation: example 0.5s ease 1.2s 1 forwards;
  }
}

@media (min-width: 768px) {
  .fv-target.fade_order3 {
    -webkit-animation: example 0.5s ease 1.4s 1 forwards;
            animation: example 0.5s ease 1.4s 1 forwards;
  }
}

@media (min-width: 768px) {
  .fv-target.fade_order4 {
    -webkit-animation: example 0.5s ease 1.4s 1 forwards;
            animation: example 0.5s ease 1.4s 1 forwards;
  }
}

@media (min-width: 768px) {
  .fv-target.fade_order5 {
    -webkit-animation: example 0.5s ease 1.6s 1 forwards;
            animation: example 0.5s ease 1.6s 1 forwards;
  }
}

@media (min-width: 768px) {
  .fv-target.fade-up {
    -webkit-animation: example 0.5s ease 1.8s 1 forwards;
            animation: example 0.5s ease 1.8s 1 forwards;
  }
}

@-webkit-keyframes example {
  100% {
    opacity: 1;
  }
}

@keyframes example {
  100% {
    opacity: 1;
  }
}
.p-pagenation {
  padding: 50px 0 0;
}
@media (min-width: 1100px) {
  .p-pagenation {
    padding: 100px 0 0;
  }
}
.p-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
}
.p-pagenation .p-pagenationList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
}
@media (min-width: 968px) {
  .p-pagenation .p-pagenationList {
    font-size: 18px;
  }
}
.p-pagenation .p-pagenationList li {
  font-size: 15px;
}
.p-pagenation .p-pagenationList li a {
  display: inline-block;
  text-align: center;
  border: 1px solid #000;
  color: #000;
  padding: 10px 13px;
}
@media (min-width: 1200px) {
  .p-pagenation .p-pagenationList li a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 12px 15px;
  }
  .p-pagenation .p-pagenationList li a:hover {
    background: #0059A8;
    color: #fff;
  }
}
.p-pagenation .p-pagenationList li.current span {
  display: inline-block;
  text-align: center;
  border: 1px solid #000;
  background: #0059A8;
  color: #fff;
  padding: 10px 13px;
}
@media (min-width: 1200px) {
  .p-pagenation .p-pagenationList li.current span {
    padding: 12px 15px;
  }
}
.p-pagenation .l-news__arrow {
  display: inline-block;
  vertical-align: middle;
  color: #0059A8;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.p-pagenation .l-news__arrow::before, .p-pagenation .l-news__arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
  top: 0;
  right: 0;
}
.p-pagenation .l-news__arrow::before {
  left: 0;
  height: 0.1em;
}
.p-pagenation .l-news__arrow::after {
  bottom: 0;
  width: 0.1em;
}

@media (min-width: 1100px) {
  .sec-recruit-info {
    padding: 160px 0 100px !important;
  }
}
@media (min-width: 1100px) {
  .sec-recruit-info .l-container {
    padding: 0 4%;
  }
}
.sec-recruit-info .l-container .employ-list {
  margin: 0 auto;
  padding: 0 20px;
  display: -ms-grid;
  display: grid;
  gap: 10px 0;
}
@media (min-width: 1100px) {
  .sec-recruit-info .l-container .employ-list {
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 40px;
  }
}
.sec-recruit-info .l-container .employ-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 12px;
  position: relative;
}
@media (min-width: 968px) {
  .sec-recruit-info .l-container .employ-list li a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
  }
}
@media (min-width: 1100px) {
  .sec-recruit-info .l-container .employ-list li a {
    display: block;
    padding: 40px 12px;
  }
}
.sec-recruit-info .l-container .employ-list li a:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
@media (min-width: 1100px) {
  .sec-recruit-info .l-container .employ-list li a:after {
    content: none;
  }
}
.sec-recruit-info .l-container .employ-list li a img {
  max-width: 56px;
}
@media (min-width: 968px) {
  .sec-recruit-info .l-container .employ-list li a img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
  }
}
@media (min-width: 1100px) {
  .sec-recruit-info .l-container .employ-list li a img {
    max-width: 120px;
    display: block;
    margin: 0 auto 25px;
  }
}
.sec-recruit-info .l-container .employ-list li a h3 {
  font-size: 18px;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .sec-recruit-info .l-container .employ-list li a h3 {
    font-size: clamp(0.875rem, 2vw, 0.9rem);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media (min-width: 1100px) {
  .sec-recruit-info .l-container .employ-list li a h3 {
    text-align: center;
    margin-left: 0;
    position: relative;
  }
}
@media (min-width: 1100px) and (min-width: 1300px) {
  .sec-recruit-info .l-container .employ-list li a h3 {
    font-size: 18px;
  }
}
@media (min-width: 1100px) and (min-width: 1536px) {
  .sec-recruit-info .l-container .employ-list li a h3 {
    font-size: 20px;
  }
}
@media (min-width: 1100px) {
  .sec-recruit-info .l-container .employ-list li a h3:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 1px;
    bottom: 0;
    margin: auto;
    margin-left: 5px;
  }
}
@media (min-width: 968px) {
  .sec-recruit-info .l-container .employ-list li a:hover {
    background: #fff;
  }
  .sec-recruit-info .l-container .employ-list li a:hover img {
    border-radius: 50%;
  }
}
@media (min-width: 968px) {
  .sec-recruit-info .l-container .employ-list li a.u-bg-blue:hover {
    border: 1px solid #0059A8;
    color: #0059A8;
  }
  .sec-recruit-info .l-container .employ-list li a.u-bg-blue:hover h3:after {
    border-top: solid 2px #0059A8;
    border-right: solid 2px #0059A8;
  }
  .sec-recruit-info .l-container .employ-list li a.u-bg-blue:hover img {
    border: 1px solid #0059A8;
  }
}
@media (min-width: 968px) {
  .sec-recruit-info .l-container .employ-list li a.u-bg-lightblue:hover {
    border: 1px solid #3897CC;
    color: #3897CC;
  }
  .sec-recruit-info .l-container .employ-list li a.u-bg-lightblue:hover h3:after {
    border-top: solid 2px #3897CC;
    border-right: solid 2px #3897CC;
  }
  .sec-recruit-info .l-container .employ-list li a.u-bg-lightblue:hover img {
    border: 1px solid #3897CC;
  }
}
@media (min-width: 968px) {
  .sec-recruit-info .l-container .employ-list li a.u-bg-black:hover {
    border: 1px solid #000;
    color: #000;
  }
  .sec-recruit-info .l-container .employ-list li a.u-bg-black:hover h3:after {
    border-top: solid 2px #000;
    border-right: solid 2px #000;
  }
  .sec-recruit-info .l-container .employ-list li a.u-bg-black:hover img {
    border: 1px solid #000;
  }
}
@media (min-width: 968px) {
  .sec-recruit-info .l-container .employ-list li a.u-bg-lightgreen:hover {
    border: 1px solid #4C9EA5;
    color: #4C9EA5;
  }
  .sec-recruit-info .l-container .employ-list li a.u-bg-lightgreen:hover h3:after {
    border-top: solid 2px #4C9EA5;
    border-right: solid 2px #4C9EA5;
  }
  .sec-recruit-info .l-container .employ-list li a.u-bg-lightgreen:hover img {
    border: 1px solid #4C9EA5;
  }
}

.recruit-under .sec-recruit-info {
  background: #DEE2ED;
}

.sec-emergency {
  background: #fff1f1;
  padding: 20px 0;
}
@media (min-width: 1100px) {
  .sec-emergency .l-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 0;
  }
}
.sec-emergency .l-container .emergency__ttl {
  color: #db030a;
  font-size: clamp(0.938rem, 0.792rem + 0.6vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 1100px) {
  .sec-emergency .l-container .emergency__ttl {
    margin: 0 42px 0 0;
  }
}
.sec-emergency .l-container li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec-emergency .l-container li a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../../images/common/emergency.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 5px;
}
@media (min-width: 1100px) {
  .sec-emergency .l-container li a:before {
    margin-right: 10px;
  }
}
.sec-emergency .l-container li a p {
  font-size: clamp(0.938rem, 0.857rem + 0.33vw, 1.25rem);
}
@media (min-width: 1100px) {
  .sec-emergency .l-container li a p {
    margin-left: 25px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media (min-width: 1100px) {
  .sec-emergency .l-container li a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .sec-emergency .l-container li a:hover p {
    text-decoration: underline;
  }
}

/* Utilities entry */
/* Curated utilities (single entry for @use "utilities") */
/* 1) Layout primitives */
.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.u-grid {
  display: -ms-grid !important;
  display: grid !important;
}

.u-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.u-hidden {
  display: none !important;
}

.u-visuallyHidden {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-text--center {
  text-align: center;
  display: block;
}

.u-text--right {
  text-align: right;
  display: block;
}

.u-reverse-grid {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-parallel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Layout-ish / responsive utilities */
.u-br--sp {
  display: block;
}
@media (min-width: 768px) {
  .u-br--sp {
    display: none;
  }
}
@media (min-width: 420px) {
  .u-br--sp--ss {
    display: none;
  }
}

.u-br--pc {
  display: none;
}
@media (min-width: 768px) {
  .u-br--pc {
    display: block;
  }
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-overflow-auto {
  overflow: auto;
}

.u-object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.u-object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.u-aspect-video {
  aspect-ratio: 16/9;
}

.u-aspect-square {
  aspect-ratio: 1/1;
}

.u-cursor-pointer {
  cursor: pointer;
}

.u-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (min-width: 768px) {
  .md\:u-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md\:u-grid {
    display: -ms-grid;
    display: grid;
  }
  .md\:u-hidden {
    display: none;
  }
  .md\:u-block {
    display: block;
  }
  .md\:u-w-full {
    inline-size: 100%;
  }
  .md\:u-justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .md\:u-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1024px) {
  .lg\:u-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lg\:u-grid {
    display: -ms-grid;
    display: grid;
  }
  .lg\:u-hidden {
    display: none;
  }
  .lg\:u-block {
    display: block;
  }
  .lg\:u-w-full {
    inline-size: 100%;
  }
  .lg\:u-justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .lg\:u-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/*
 * padding
 */
/* zero */
.u-pd__y--0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-pd__x--0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-pd__t--0 {
  padding-top: 0 !important;
}

.u-pd__b--0 {
  padding-bottom: 0 !important;
}

.u-pd__r--0 {
  padding-right: 0 !important;
}

.u-pd__l--0 {
  padding-left: 0 !important;
}

/*! SCSS Starter entry */
/* margin */
/* all */
.u-mg-0 {
  margin: 0;
}

.u-mg-5 {
  margin: 5px;
}

.u-mg-10 {
  margin: 10px;
}

.u-mg-15 {
  margin: 15px;
}

.u-mg-20 {
  margin: 20px;
}

.u-mg-25 {
  margin: 25px;
}

.u-mg-30 {
  margin: 30px;
}

.u-mg-40 {
  margin: 40px;
}

.u-mg-50 {
  margin: 50px;
}

.u-mg-60 {
  margin: 60px;
}

.u-mg-70 {
  margin: 70px;
}

.u-mg-80 {
  margin: 80px;
}

/* top */
.u-mgt-0 {
  margin-top: 0;
}

.u-mgt-5 {
  margin-top: 5px;
}

.u-mgt-10 {
  margin-top: 10px;
}

.u-mgt-15 {
  margin-top: 15px;
}

.u-mgt-20 {
  margin-top: 20px;
}

.u-mgt-25 {
  margin-top: 25px;
}

.u-mgt-30 {
  margin-top: 30px;
}

.u-mgt-40 {
  margin-top: 40px;
}

.u-mgt-50 {
  margin-top: 50px;
}

.u-mgt-60 {
  margin-top: 60px;
}

.u-mgt-70 {
  margin-top: 70px;
}

.u-mgt-80 {
  margin-top: 80px;
}

/* bottom */
.u-mgb-0 {
  margin-bottom: 0;
}

.u-mgb-5 {
  margin-bottom: 5px;
}

.u-mgb-10 {
  margin-bottom: 10px;
}

.u-mgb-15 {
  margin-bottom: 15px;
}

.u-mgb-20 {
  margin-bottom: 20px;
}

.u-mgb-25 {
  margin-bottom: 25px;
}

.u-mgb-30 {
  margin-bottom: 30px;
}

.u-mgb-40 {
  margin-bottom: 40px;
}

.u-mgb-50 {
  margin-bottom: 50px;
}

.u-mgb-60 {
  margin-bottom: 60px;
}

.u-mgb-70 {
  margin-bottom: 70px;
}

.u-mgb-80 {
  margin-bottom: 80px;
}

/* left */
.u-mgl-0 {
  margin-left: 0;
}

.u-mgl-5 {
  margin-left: 5px;
}

.u-mgl-10 {
  margin-left: 10px;
}

.u-mgl-15 {
  margin-left: 15px;
}

.u-mgl-20 {
  margin-left: 20px;
}

.u-mgl-25 {
  margin-left: 25px;
}

.u-mgl-30 {
  margin-left: 30px;
}

.u-mgl-40 {
  margin-left: 40px;
}

.u-mgl-50 {
  margin-left: 50px;
}

.u-mgl-60 {
  margin-left: 60px;
}

.u-mgl-70 {
  margin-left: 70px;
}

.u-mgl-80 {
  margin-left: 80px;
}

/* right */
.u-mgr-0 {
  margin-right: 0;
}

.u-mgr-5 {
  margin-right: 5px;
}

.u-mgr-10 {
  margin-right: 10px;
}

.u-mgr-15 {
  margin-right: 15px;
}

.u-mgr-20 {
  margin-right: 20px;
}

.u-mgr-25 {
  margin-right: 25px;
}

.u-mgr-30 {
  margin-right: 30px;
}

.u-mgr-40 {
  margin-right: 40px;
}

.u-mgr-50 {
  margin-right: 50px;
}

.u-mgr-60 {
  margin-right: 60px;
}

.u-mgr-70 {
  margin-right: 70px;
}

.u-mgr-80 {
  margin-right: 80px;
}

/* PCのみ */
@media (min-width: 768px) {
  .u-pcMg-0 {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .u-pcMg-5 {
    margin: 5px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-10 {
    margin: 10px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-15 {
    margin: 15px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-20 {
    margin: 20px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-25 {
    margin: 25px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-30 {
    margin: 30px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-40 {
    margin: 40px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-50 {
    margin: 50px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-60 {
    margin: 60px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-70 {
    margin: 70px;
  }
}

@media (min-width: 768px) {
  .u-pcMg-80 {
    margin: 80px;
  }
}

/* top */
@media (min-width: 768px) {
  .u-pcMgt-0 {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-5 {
    margin-top: 5px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-10 {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-15 {
    margin-top: 15px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-20 {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-25 {
    margin-top: 25px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-30 {
    margin-top: 30px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-40 {
    margin-top: 40px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-50 {
    margin-top: 50px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-60 {
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-70 {
    margin-top: 70px;
  }
}

@media (min-width: 768px) {
  .u-pcMgt-80 {
    margin-top: 80px;
  }
}

/* bottom */
@media (min-width: 768px) {
  .u-pcMgb-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-5 {
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-10 {
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-15 {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-20 {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-25 {
    margin-bottom: 25px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-30 {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-40 {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-50 {
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-60 {
    margin-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-70 {
    margin-bottom: 70px;
  }
}

@media (min-width: 768px) {
  .u-pcMgb-80 {
    margin-bottom: 80px;
  }
}

/* left */
@media (min-width: 768px) {
  .u-pcMgl-0 {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-5 {
    margin-left: 5px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-10 {
    margin-left: 10px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-15 {
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-20 {
    margin-left: 20px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-25 {
    margin-left: 25px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-30 {
    margin-left: 30px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-40 {
    margin-left: 40px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-50 {
    margin-left: 50px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-60 {
    margin-left: 60px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-70 {
    margin-left: 70px;
  }
}

@media (min-width: 768px) {
  .u-pcMgl-80 {
    margin-left: 80px;
  }
}

/* right */
@media (min-width: 768px) {
  .u-pcMgr-0 {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-5 {
    margin-right: 5px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-10 {
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-15 {
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-20 {
    margin-right: 20px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-25 {
    margin-right: 25px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-30 {
    margin-right: 30px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-40 {
    margin-right: 40px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-50 {
    margin-right: 50px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-60 {
    margin-right: 60px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-70 {
    margin-right: 70px;
  }
}

@media (min-width: 768px) {
  .u-pcMgr-80 {
    margin-right: 80px;
  }
}

/* 3) font */
/*! SCSS Starter entry */
.ttl-en {
  font-size: 12px;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .ttl-en {
    font-size: 17px;
  }
}

.subttl {
  font-size: 24px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .subttl {
    font-size: 35px;
    margin-bottom: 50px;
  }
}

.ttl-border {
  font-size: 24px;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 2px solid #dbdfe6;
  position: relative;
}
@media (min-width: 768px) {
  .ttl-border {
    font-size: 35px;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.ttl-border:after {
  content: "";
  width: 45px;
  height: 2px;
  background: #0059a8;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
}
@media (min-width: 968px) {
  .ttl-border:after {
    width: 100px;
  }
}

.u-font__large {
  font-size: 24px;
}
@media (min-width: 768px) {
  .u-font__large {
    font-size: 35px;
  }
}

.u-font__middle {
  font-size: 20px;
}
@media (min-width: 768px) {
  .u-font__middle {
    font-size: 25px;
  }
}

.u-font__small {
  font-size: 16px;
}

.u-font__xsmall {
  font-size: 14px;
}

.u-font__bold {
  font-weight: bold;
}

/* 4) Colors / borders / states */
.u-color-white,
.u-txt-white {
  color: #fff;
}

.u-color-red {
  color: #cd0b0b;
}

.u-color-blue,
.u-en-blue {
  color: #0059a8;
}

.u-color-green {
  color: #199B33;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-black {
  background-color: #000;
}

.u-bg-gray {
  background-color: #EEF0F6;
}

.u-bg-green {
  background-color: #199B33;
}

.u-bg-lightgreen {
  background-color: #4C9EA5;
}

.u-bg-blue {
  background-color: #0059A8;
}

.u-bg-darkblue {
  background-color: #0B1F40;
}

.u-bg-lightblue {
  background-color: #3897CC;
}

.u_border__black {
  padding: 10px;
  border: 1px solid #000;
}

.u-border__bottom__black {
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

.u-border__left__black {
  padding-left: 15px;
  border-left: 5px solid #000;
}

.u-borderdouble__bottom__black {
  padding-bottom: 15px;
  border-bottom: 2px solid #dbdfe6;
  position: relative;
}
@media (min-width: 1100px) {
  .u-borderdouble__bottom__black {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.u-borderdouble__bottom__black:after {
  content: "";
  width: 45px;
  height: 2px;
  background: #000;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
}
@media (min-width: 968px) {
  .u-borderdouble__bottom__black:after {
    width: 100px;
  }
}

.u_border__blue {
  padding: 10px;
  border: 1px solid #0059a8;
}

.u-border__bottom,
.u-border__bottom__blue {
  padding-bottom: 15px;
  border-bottom: 1px solid #0059a8;
}

.u-border__left__blue {
  padding-left: 15px;
  border-left: 5px solid #0059a8;
}

.u-borderdouble__bottom__blue {
  padding-bottom: 15px;
  border-bottom: 2px solid #dbdfe6;
  position: relative;
}
@media (min-width: 1100px) {
  .u-borderdouble__bottom__blue {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.u-borderdouble__bottom__blue:after {
  content: "";
  width: 45px;
  height: 2px;
  background: #0059a8;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
}
@media (min-width: 968px) {
  .u-borderdouble__bottom__blue:after {
    width: 100px;
  }
}

/*! SCSS Starter entry */
.u-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.u-table th,
.u-table td {
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #d1d5db;
  text-align: left;
  vertical-align: top;
}
.u-table th {
  background: #0059a8;
  color: #fff;
  font-weight: 600;
}

.u-table__wrap {
  overflow-x: scroll;
}
@media (min-width: 968px) {
  .u-table__wrap {
    overflow-x: inherit;
  }
}
.u-table__wrap table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.u-table__wrap table th,
.u-table__wrap table td {
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #d1d5db;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
.u-table__wrap table th {
  background: #0059a8;
  color: #fff;
  font-weight: 600;
}

.u-table__over {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.875rem;
}

/* Project entry */
/* Pages */
/*! SCSS Starter entry */
.home .p-mainVisualSliderCol {
  position: relative;
}
.home .p-mainVisualSliderCol .brand__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 9% 100px;
}
@media (min-width: 768px) {
  .home .p-mainVisualSliderCol .brand__bottom {
    padding: 20px 9% 120px;
  }
}
@media (min-width: 968px) {
  .home .p-mainVisualSliderCol .brand__bottom {
    position: absolute;
    bottom: 15%;
    left: 4.5%;
    width: 17%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin-bottom: 35px;
  }
}
@media (min-width: 968px) and (min-width: 968px) {
  .home .p-mainVisualSliderCol .brand__bottom {
    margin-bottom: 0;
  }
}
.home .p-mainVisualSliderCol .brand__bottom .brand-logo {
  width: 40%;
}
@media (min-width: 968px) {
  .home .p-mainVisualSliderCol .brand__bottom .brand-logo {
    width: 100%;
    position: absolute;
    top: -300%;
    left: 0;
  }
}
@media (min-width: 1100px) {
  .home .p-mainVisualSliderCol .brand__bottom .brand-logo {
    top: -500%;
  }
}
.home .p-mainVisualSliderCol .brand__bottom .brand-name {
  width: 60%;
}
@media (min-width: 968px) {
  .home .p-mainVisualSliderCol .brand__bottom .brand-name {
    width: 100%;
  }
}
.home .p-mainVisualSliderCol .brand__bottom .brand-name .brand-name__watch {
  text-align: center;
  text-indent: 3.8em;
  font-size: 11px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .home .p-mainVisualSliderCol .brand__bottom .brand-name .brand-name__watch {
    font-size: 17px;
    text-indent: 0;
  }
}
@media (min-width: 968px) {
  .home .p-mainVisualSliderCol .brand__bottom .brand-name .brand-name__watch {
    text-align: left;
    margin-bottom: 27px;
  }
}
.home .p-mainVisualSliderCol .brand__bottom .brand-name .brand-name__ttl {
  text-align: right;
  font-size: 22px;
}
@media (min-width: 768px) {
  .home .p-mainVisualSliderCol .brand__bottom .brand-name .brand-name__ttl {
    font-size: 28px;
    text-align: center;
    white-space: nowrap;
  }
}
.home .p-mainVisualSliderCol .brand__bottom.caltier {
  background: #000;
}
@media (min-width: 968px) {
  .home .p-mainVisualSliderCol .brand__bottom.caltier {
    background: none;
  }
}
.home .p-mainVisualSliderCol .brand__bottom.caltier .brand-name__watch {
  color: #fff;
}
.home .p-mainVisualSliderCol .brand__bottom.caltier .brand-name__ttl {
  color: #fff;
  text-align: center;
  text-indent: 2em;
}
@media (min-width: 768px) {
  .home .p-mainVisualSliderCol .brand__bottom.caltier .brand-name__ttl {
    text-indent: 0;
  }
}
@media (min-width: 968px) {
  .home .p-mainVisualSliderCol .brand__bottom.caltier .brand-name__ttl {
    text-align: left;
  }
}
.home .p-mainVisualSliderCol .brand__bottom.patek {
  background: #ccc;
}
@media (min-width: 968px) {
  .home .p-mainVisualSliderCol .brand__bottom.patek {
    background: none;
  }
}
.home .p-mainVisualSliderCol .brand__bottom.patek .brand-name__watch {
  color: #fff;
}
.home .p-mainVisualSliderCol .brand__bottom.patek .brand-name__ttl {
  color: #fff;
}
@media (min-width: 968px) {
  .home .p-mainVisualSliderCol .brand__bottom.patek .brand-name__ttl {
    text-align: left;
  }
}
.home .p-mainVisualSliderCol .slider-btn {
  background: #ccc;
  color: #fff;
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 83%;
  text-align: center;
  padding: 10px 35px;
  z-index: 1;
}
@media (min-width: 768px) {
  .home .p-mainVisualSliderCol .slider-btn {
    bottom: 4%;
    padding: 20px 35px;
  }
}
@media (min-width: 968px) {
  .home .p-mainVisualSliderCol .slider-btn {
    font-size: 14px;
    padding: 2% 4%;
    left: 4.5%;
    right: inherit;
    width: 17%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
    cursor: pointer;
    bottom: 6%;
  }
}
@media (min-width: 968px) and (min-width: 1100px) {
  .home .p-mainVisualSliderCol .slider-btn {
    width: 15%;
  }
}
.home .swiper-pagination {
  bottom: 3%;
}
@media (min-width: 768px) {
  .home .swiper-pagination {
    bottom: 2%;
  }
}
@media (min-width: 968px) {
  .home .swiper-pagination {
    left: 90%;
    bottom: 8%;
    text-align: inherit;
  }
}
.home .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  border: 1px solid #000;
}
.home .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
  width: 30px;
  border-radius: 10px;
}

/*! SCSS Starter entry */
.recruit-top section {
  padding: 60px 0;
}
@media (min-width: 968px) {
  .recruit-top section {
    padding: 160px 0;
  }
}
.recruit-top .mv {
  background: #e0ecfd;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(224, 236, 253)), to(rgb(241, 245, 252)));
  background: linear-gradient(0deg, rgb(224, 236, 253) 0%, rgb(241, 245, 252) 100%);
  margin-top: 10px;
  padding: 0 0 40px 0;
}
@media (min-width: 968px) {
  .recruit-top .mv {
    padding: 40px 0 40px 0;
    background: #e0ecfd;
    background: linear-gradient(245deg, rgb(224, 236, 253) 0%, rgb(241, 245, 252) 100%);
  }
}
@media (min-width: 1100px) {
  .recruit-top .mv {
    margin-top: 0;
  }
}
.recruit-top .mv .l-container {
  width: 85.7%;
}
.recruit-top .mv .l-container .h-nav__attached {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 10px;
  padding: 0 10px;
  margin-bottom: 30px;
}
@media (min-width: 1100px) {
  .recruit-top .mv .l-container .h-nav__attached {
    display: none;
  }
}
@media (min-width: 1100px) {
  .recruit-top .mv .l-container .h-nav__attached a:last-child {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-top .mv .l-container .h-nav__attached a:last-child:hover {
    border-bottom: 1px solid #333;
  }
}
.recruit-top .mv .l-container .slide-media,
.recruit-top .mv .l-container .thumb-media {
  position: relative;
}
.recruit-top .mv .l-container .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.recruit-top .mv .l-container .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.recruit-top .mv .l-container .swiper-pagination2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 5px;
  margin-top: 15px;
}
@media (min-width: 968px) {
  .recruit-top .mv .l-container .swiper-pagination2 {
    margin-top: 38px;
  }
}
.recruit-top .mv .l-container .swiper-pagination2 .swiper-pagination-bullet {
  display: block;
  width: 40px;
  height: 4px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
}
@media (min-width: 968px) {
  .recruit-top .mv .l-container .swiper-pagination2 .swiper-pagination-bullet {
    width: 100px;
  }
}
.recruit-top .mv .l-container .swiper-pagination2 .swiper-pagination-bullet-active {
  background-color: #0059a8;
}
.recruit-top .mv .l-container .slide-media img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}
.recruit-top .mv .l-container .swiper2 .swiper-slide {
  position: relative;
}
.recruit-top .mv .l-container .swiper2 .slider-btn {
  position: absolute;
  right: 4%;
  bottom: 3%;
}
@media (min-width: 768px) {
  .recruit-top .mv .l-container .swiper2 .slider-btn {
    bottom: 8%;
  }
}
@media (min-width: 968px) {
  .recruit-top .mv .l-container .swiper2 .slider-btn {
    right: 2%;
    bottom: 8%;
  }
}
@media (min-width: 1100px) {
  .recruit-top .mv .l-container .swiper2 .slider-btn {
    right: -10%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.recruit-top .mv .l-container .swiper2 .slider-btn a {
  border: 1px solid #fff;
  background: #0b1f40;
  color: #fff;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: bold;
  display: block;
  position: relative;
}
@media (min-width: 968px) {
  .recruit-top .mv .l-container .swiper2 .slider-btn a {
    width: 322px;
    padding: 15px 75px;
    font-size: 17px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-top .mv .l-container .swiper2 .slider-btn a:hover {
    border: 1px solid #0059a8;
    background: #fff;
    color: #0059a8;
  }
  .recruit-top .mv .l-container .swiper2 .slider-btn a:hover:after {
    border-top: solid 2px #0059a8;
    border-right: solid 2px #0059a8;
  }
}
.recruit-top .mv .l-container .swiper2 .slider-btn a:after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 9px;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 968px) {
  .recruit-top .mv .l-container .swiper2 .slider-btn a:after {
    right: 25px;
  }
}
.recruit-top .sec-reason {
  position: relative;
}
.recruit-top .sec-reason:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 768px) {
  .recruit-top .sec-reason:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-reason:before {
    width: 34em;
    height: 29em;
    top: -3%;
  }
}
.recruit-top .sec-reason:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -60px;
  z-index: -1;
}
@media (min-width: 768px) {
  .recruit-top .sec-reason:after {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-reason:after {
    width: 27em;
    height: 27em;
  }
}
.recruit-top .sec-reason .item {
  padding: 20px 20px 40px 20px;
  text-align: center;
}
@media (min-width: 968px) {
  .recruit-top .sec-reason .item {
    padding: 40px;
  }
}
.recruit-top .sec-reason .item img {
  margin: 20px auto 40px;
  display: block;
  max-width: 35%;
}
@media (min-width: 768px) {
  .recruit-top .sec-reason .item img {
    max-width: 50%;
  }
}
.recruit-top .sec-reason .item ul {
  text-align: left;
  display: inline-block;
}
@media (min-width: 968px) {
  .recruit-top .sec-reason .item ul {
    display: block;
  }
}
.recruit-top .sec-reason .item .l-treatment li:before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 20px;
  background-image: url(ssx2025/assets/img-lib/service/top/icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 7px;
}
.recruit-top .sec-reason .item h3 {
  text-align: center;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 968px) {
  .recruit-top .sec-reason .item h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 23px;
  }
}
.recruit-top .sec-reason .item h3:before {
  content: "";
  background: #0059a8;
  width: 20px;
  height: 5px;
  display: block;
  margin: -15px auto 5px;
}
@media (min-width: 968px) {
  .recruit-top .sec-reason .item h3:before {
    margin: 0 10px 0 0;
  }
}
.recruit-top .sec-reason .item li {
  font-weight: bold;
}
@media (min-width: 968px) {
  .recruit-top .sec-reason .item li {
    font-size: 18px;
  }
}
.recruit-top .sec-about {
  background-image: url(ssx2025/assets/img-lib/service/top/sp_philosophy_bg_2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  position: relative;
}
@media (min-width: 768px) {
  .recruit-top .sec-about {
    background-image: url(ssx2025/assets/img-lib/service/top/philosophy_bg.jpg);
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-about {
    padding: 120px 0;
  }
  .recruit-top .sec-about:after {
    content: "ABOUT";
    font-size: clamp(0.938rem, -4.176rem + 25.57vw, 14rem);
    line-height: 1;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    bottom: -38px;
  }
}
@media (min-width: 1100px) {
  .recruit-top .sec-about {
    padding: 150px 0;
  }
}
.recruit-top .sec-about h2 {
  font-size: clamp(1.25rem, 0.669rem + 2.38vw, 3.5rem);
  margin-bottom: 23px;
}
@media (min-width: 968px) {
  .recruit-top .sec-about h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }
}
.recruit-top .sec-about h2 span {
  display: block;
}
@media (min-width: 968px) {
  .recruit-top .sec-about h2 span {
    display: inline;
  }
}
.recruit-top .sec-about .text-lead {
  color: #fff;
  text-align: center;
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 2;
}
@media (min-width: 968px) {
  .recruit-top .sec-about .text-lead {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 85px;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-about .text-lead span {
    display: block;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-about .btn-center {
    position: relative;
    z-index: 1;
  }
}
.recruit-top .sec-numbers {
  position: relative;
}
.recruit-top .sec-numbers:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .recruit-top .sec-numbers:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-numbers:before {
    width: 34em;
    height: 29em;
  }
}
.recruit-top .sec-numbers:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -40px;
}
@media (min-width: 768px) {
  .recruit-top .sec-numbers:after {
    width: 15em;
    height: 15em;
    bottom: -25px;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-numbers:after {
    width: 27em;
    height: 27em;
  }
}
.recruit-top .sec-numbers .l-grid {
  margin-bottom: 35px;
}
@media (min-width: 968px) {
  .recruit-top .sec-numbers .l-grid {
    margin-bottom: 60px;
  }
}
.recruit-top .sec-numbers .l-grid .item {
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 30px 10px;
  position: relative;
  z-index: 1;
}
@media (min-width: 968px) {
  .recruit-top .sec-numbers .l-grid .item {
    padding: 50px 10px;
  }
}
.recruit-top .sec-numbers .l-grid .item h3 {
  text-align: center;
  color: #0059a8;
}
.recruit-top .sec-numbers .l-grid .item h3 .attach {
  font-size: clamp(1.125rem, 0.899rem + 0.93vw, 2rem);
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 968px) {
  .recruit-top .sec-numbers .l-grid .item h3 .attach {
    margin-bottom: 15px;
  }
}
.recruit-top .sec-numbers .l-grid .item h3 .count-up-text,
.recruit-top .sec-numbers .l-grid .item h3 .middle__text {
  font-size: clamp(1.125rem, 0.899rem + 0.93vw, 2rem);
}
.recruit-top .sec-numbers .l-grid .item h3 .count-up-text .small__text,
.recruit-top .sec-numbers .l-grid .item h3 .middle__text .small__text {
  display: block;
  font-size: clamp(1.063rem, 1.014rem + 0.2vw, 1.25rem);
}
.recruit-top .sec-numbers .l-grid .item img {
  margin: 20px auto 0;
  display: block;
  max-width: 50%;
}
.recruit-top .sec-numbers .l-grid .item .count-up-box {
  margin-bottom: 10px;
  text-align: center;
}
.recruit-top .sec-numbers .l-grid .item .count-up-box .count-up-no,
.recruit-top .sec-numbers .l-grid .item .count-up-box .count-only,
.recruit-top .sec-numbers .l-grid .item .count-up-box .dot {
  font-size: clamp(2.375rem, 2.02rem + 1.46vw, 3.75rem);
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 968px) {
  .recruit-top .sec-numbers .l-grid .item .count-up-box .count-up-no,
  .recruit-top .sec-numbers .l-grid .item .count-up-box .count-only,
  .recruit-top .sec-numbers .l-grid .item .count-up-box .dot {
    font-size: 70px;
  }
}
.recruit-top .sec-numbers .l-grid .item .count-up-box .count-up-no .count-up-text,
.recruit-top .sec-numbers .l-grid .item .count-up-box .count-only .count-up-text,
.recruit-top .sec-numbers .l-grid .item .count-up-box .dot .count-up-text {
  font-size: 1em;
}
.recruit-top .sec-numbers .btn-center {
  position: relative;
  z-index: 1;
}
.recruit-top .sec-interview .text-lead {
  padding: 0 20px;
  margin-bottom: 25px;
}
.recruit-top .sec-interview .l-section .l-inner {
  position: relative;
  padding: 0 4rem;
  padding-bottom: 2rem;
}
.recruit-top .sec-interview [class*=swiper]:focus {
  outline: none;
}
.recruit-top .sec-interview .slide-media,
.recruit-top .sec-interview .thumb-media {
  position: relative;
  overflow: hidden;
}
.recruit-top .sec-interview .slide-media img,
.recruit-top .sec-interview .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.recruit-top .sec-interview .swiper-button-prev,
.recruit-top .sec-interview .swiper-button-next {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .recruit-top .sec-interview .swiper-button-prev,
  .recruit-top .sec-interview .swiper-button-next {
    width: 80px;
    height: 80px;
  }
}
.recruit-top .sec-interview .swiper-button-prev::before,
.recruit-top .sec-interview .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.recruit-top .sec-interview .swiper-button-prev::after,
.recruit-top .sec-interview .swiper-button-next::after {
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid #fff;
  border-width: 2px 2px 0 0;
}
@media (min-width: 768px) {
  .recruit-top .sec-interview .swiper-button-prev::after,
  .recruit-top .sec-interview .swiper-button-next::after {
    width: 12px;
    height: 12px;
  }
}
.recruit-top .sec-interview .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.recruit-top .sec-interview .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.recruit-top .sec-interview .interview-slider {
  overflow: hidden;
}
.recruit-top .sec-interview .interview-slider .swiper {
  overflow: visible;
}
.recruit-top .sec-interview .interview-slider .swiper-button-prev,
.recruit-top .sec-interview .interview-slider .swiper-button-next {
  position: absolute;
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  top: 30%;
  bottom: 0;
}
.recruit-top .sec-interview .interview-slider .swiper-button-prev::before,
.recruit-top .sec-interview .interview-slider .swiper-button-next::before {
  background-color: #0b1f40;
  border: 1px solid #fff;
}
.recruit-top .sec-interview .interview-slider .swiper-button-prev::after,
.recruit-top .sec-interview .interview-slider .swiper-button-next::after {
  border-color: #fff;
}
.recruit-top .sec-interview .interview-slider .swiper-button-prev {
  left: -21%;
}
@media (min-width: 768px) {
  .recruit-top .sec-interview .interview-slider .swiper-button-prev {
    left: 0;
  }
}
.recruit-top .sec-interview .interview-slider .swiper-button-next {
  right: -21%;
}
@media (min-width: 768px) {
  .recruit-top .sec-interview .interview-slider .swiper-button-next {
    right: 0;
  }
}
.recruit-top .sec-interview .interview-slider .slide {
  /*overflow: hidden;*/
}
.recruit-top .sec-interview .interview-slider .slide-media {
  padding-top: 100%;
}
@media (min-width: 768px) {
  .recruit-top .sec-interview .swiper-slide {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-top .sec-interview .swiper-slide:hover {
    opacity: 0.7;
  }
}
.recruit-top .sec-interview .swiper-slide .slide-content {
  background: #3897cc;
  position: relative;
  padding: 15px 15px 22px;
}
@media (min-width: 968px) {
  .recruit-top .sec-interview .swiper-slide .slide-content {
    padding: 20px 20px 37px;
  }
}
.recruit-top .sec-interview .swiper-slide .slide-content .slide-dept {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 968px) {
  .recruit-top .sec-interview .swiper-slide .slide-content .slide-dept {
    font-size: 16px;
  }
}
.recruit-top .sec-interview .swiper-slide .slide-content .slide-title {
  font-size: 15px;
  color: #fff;
}
@media (min-width: 968px) {
  .recruit-top .sec-interview .swiper-slide .slide-content .slide-title {
    font-size: 20px;
  }
}
.recruit-top .sec-interview .swiper-slide .slide-content .g-btn {
  width: 96px;
  font-size: 12px;
  font-weight: normal;
  padding: 2px;
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: -8px;
}
@media (min-width: 968px) {
  .recruit-top .sec-interview .swiper-slide .slide-content .g-btn {
    width: 149px;
    font-size: 18px;
  }
}
.recruit-top .sec-interview .swiper-slide .slide-content .g-btn:after {
  right: 7px;
  width: 4px;
  height: 4px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
@media (min-width: 968px) {
  .recruit-top .sec-interview .swiper-slide .slide-content .g-btn:after {
    top: 4px;
    right: 12px;
    width: 8px;
    height: 8px;
  }
}
.recruit-top .sec-development {
  background-image: url(ssx2025/assets/img-lib/service/top/pc_resource_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  position: relative;
}
@media (min-width: 968px) {
  .recruit-top .sec-development {
    padding: 120px 0;
    overflow: hidden;
  }
  .recruit-top .sec-development:after {
    content: "HUMAN RESOURCE DEVELOPMENT";
    font-size: 98px;
    line-height: 1;
    white-space: nowrap;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    bottom: -16px;
  }
}
@media (min-width: 1100px) {
  .recruit-top .sec-development {
    padding: 150px 0;
  }
}
.recruit-top .sec-development h2 {
  font-size: clamp(1.25rem, 0.669rem + 2.38vw, 3.5rem);
  margin-bottom: 23px;
}
@media (min-width: 968px) {
  .recruit-top .sec-development h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }
}
.recruit-top .sec-development h2 span {
  display: block;
}
@media (min-width: 968px) {
  .recruit-top .sec-development h2 span {
    display: inline;
  }
}
.recruit-top .sec-development .text-lead {
  color: #fff;
  text-align: center;
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 2;
}
@media (min-width: 968px) {
  .recruit-top .sec-development .text-lead {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 85px;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-development .text-lead span {
    display: block;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-development .btn-center {
    position: relative;
    z-index: 1;
  }
}
.recruit-top .sec-message {
  position: relative;
}
@media (min-width: 968px) {
  .recruit-top .sec-message {
    padding-bottom: 0;
  }
}
.recruit-top .sec-message:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/top/triangle03.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: -10px;
}
@media (min-width: 768px) {
  .recruit-top .sec-message:before {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-message:before {
    width: 29em;
    height: 29em;
    top: -30px;
  }
}
@media (min-width: 768px) {
  .recruit-top .sec-message .l-container {
    width: inherit;
  }
}
@media (min-width: 768px) {
  .recruit-top .sec-message .l-container .l-grid--md-2 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.recruit-top .sec-message .l-container .text-lead {
  padding: 0 20px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .recruit-top .sec-message .l-container .text-lead {
    margin-bottom: 60px;
  }
}
.recruit-top .sec-message .l-container img {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .recruit-top .sec-message .l-container img {
    padding: 0;
  }
}
.recruit-top .sec-message .l-container .text-letter {
  margin-bottom: 40px;
  line-height: 2;
}
@media (min-width: 768px) {
  .recruit-top .sec-message .l-container .text-letter {
    padding-right: 10%;
  }
}
.recruit-top .sec-news {
  position: relative;
}
@media (min-width: 968px) {
  .recruit-top .sec-news {
    padding: 80px 0;
  }
}
@media (min-width: 1300px) {
  .recruit-top .sec-news {
    padding: 160px 0;
  }
}
.recruit-top .sec-news:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/top/triangle04.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -80px;
}
@media (min-width: 768px) {
  .recruit-top .sec-news:before {
    width: 15em;
    height: 15em;
    top: -240px;
    z-index: -1;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-news:before {
    width: 29em;
    height: 27em;
  }
}
.recruit-top .sec-news:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/top/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -30px;
}
@media (min-width: 768px) {
  .recruit-top .sec-news:after {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-top .sec-news:after {
    width: 19em;
    height: 24em;
  }
}
.recruit-top .sec-news .l-container {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
@media (min-width: 1300px) {
  .recruit-top .sec-news .l-container {
    padding: 0 4% 100px;
  }
}
.recruit-top .sec-news .l-container .l-news {
  padding: 40px 20px;
}
@media (min-width: 1300px) {
  .recruit-top .sec-news .l-container .l-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 100px 20px 0;
    margin-bottom: 60px;
  }
}
.recruit-top .sec-news .l-container .l-news h2 {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
@media (min-width: 1100px) {
  .recruit-top .sec-news .l-container .l-news h2 {
    padding-right: 80px;
    white-space: nowrap;
    font-size: 30px;
  }
}
.recruit-top .sec-news .l-container .l-news h2:before {
  content: "";
  height: 1px;
  width: 10px;
  background: #0059a8;
  display: block;
  margin-right: 10px;
}
@media (min-width: 1100px) {
  .recruit-top .sec-news .l-container .l-news h2:before {
    height: 5px;
    width: 20px;
  }
}
.recruit-top .sec-news .l-container .l-news .l-news-list {
  display: -ms-grid;
  display: grid;
  gap: 20px 0;
  font-size: 15px;
}
@media (min-width: 1300px) {
  .recruit-top .sec-news .l-container .l-news .l-news-list {
    padding-left: 80px;
    border-left: 2px solid #c1c8dd;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .recruit-top .sec-news .l-container .l-news .l-news-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-top .sec-news .l-container .l-news .l-news-list a:hover h3 {
    text-decoration: underline;
  }
}
.recruit-top .sec-news .l-container .l-news .l-news-list a h3 {
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 1300px) {
  .recruit-top .sec-news .l-container .l-news .l-news-list a h3 {
    margin-left: 40px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media (min-width: 1300px) {
  .recruit-top .sec-news .l-container .l-news .l-news-list a .news-data {
    white-space: nowrap;
  }
}

.recruit-top .sec-schedule .calendar-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 15px;
  margin-bottom: 10px;
}
.recruit-top .sec-schedule .calendar-wrap ul li:before {
  content: "■";
}
.recruit-top .sec-schedule .calendar-wrap ul li:first-child:before {
  color: #0000ff;
}
.recruit-top .sec-schedule .calendar-wrap ul li:nth-child(2):before {
  color: #ff6600;
}
.recruit-top .sec-schedule .calendar-wrap ul li:nth-child(3):before {
  color: #008000;
}
.recruit-top .sec-schedule .calendar-wrap ul li:nth-child(4):before {
  color: #ff00ff;
}
.recruit-top .sec-schedule .calendar-wrap ul li:nth-child(5):before {
  color: #ffff00;
}
.recruit-top .sec-schedule .calendar-wrap iframe {
  width: 100%;
}

.recruit-top .js-fixed-area #js-fixed-elm ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  position: fixed;
  width: 89.7%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
@media (min-width: 968px) {
  .recruit-top .js-fixed-area #js-fixed-elm ul {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    left: inherit;
    width: inherit;
    bottom: 30px;
    padding: 0;
  }
}
.recruit-top .js-fixed-area #js-fixed-elm ul li {
  text-align: center;
}
@media (min-width: 968px) {
  .recruit-top .js-fixed-area #js-fixed-elm ul li {
    text-align: left;
  }
}
.recruit-top .js-fixed-area #js-fixed-elm ul li a {
  white-space: nowrap;
  font-weight: bold;
  display: block;
  padding: 10px 15px;
  line-height: 1.4;
}
@media (min-width: 968px) {
  .recruit-top .js-fixed-area #js-fixed-elm ul li a {
    position: relative;
    padding: 22px 65px 22px 20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-top .js-fixed-area #js-fixed-elm ul li a:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-top .js-fixed-area #js-fixed-elm ul li a:hover {
    opacity: 0.5;
  }
}
@media (min-width: 968px) {
  .recruit-top .js-fixed-area #js-fixed-elm ul li a br {
    display: none;
  }
}
.recruit-top .js-fixed-area #js-fixed-elm ul li + li {
  border-left: 1px solid #fff;
}
@media (min-width: 968px) {
  .recruit-top .js-fixed-area #js-fixed-elm ul li + li {
    border-left: none;
  }
}
@media (min-width: 968px) {
  .recruit-top .js-fixed-area #js-fixed-elm ul li:nth-child(n+2):before {
    content: "";
    background: #fff;
    width: 90%;
    height: 1px;
    display: block;
    margin: auto;
  }
}
.recruit-top .js-fixed-area #js-fixed-elm.is-fixed ul {
  background: #0059a8;
  color: #fff;
  border-radius: 10px 10px 0 0;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
@media (min-width: 968px) {
  .recruit-top .js-fixed-area #js-fixed-elm.is-fixed ul {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    border-radius: 0;
  }
}

/*! SCSS Starter entry */
/*リクルート下層 共通*/
.recruit-under section {
  padding: 60px 0;
}
@media (min-width: 968px) {
  .recruit-under section {
    padding: 100px 0;
  }
}
.recruit-under section:first-of-type {
  padding: 0 0 60px;
}
@media (min-width: 968px) {
  .recruit-under section:first-of-type {
    padding: 0 0 100px;
  }
}
@media (min-width: 968px) {
  .recruit-under .l-container {
    padding: 0 4%;
  }
}
@media (min-width: 968px) {
  .recruit-under .rec-footer .l-container {
    padding: 50px 0 0 0;
  }
}
.recruit-under .l-underlayer__mv {
  padding: 70px 0;
  position: relative;
  background: #e0ecfd;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(224, 236, 253)), to(rgb(241, 245, 252)));
  background: linear-gradient(0deg, rgb(224, 236, 253) 0%, rgb(241, 245, 252) 100%);
}
@media (min-width: 968px) {
  .recruit-under .l-underlayer__mv {
    background: #e0ecfd;
    background: linear-gradient(245deg, rgb(224, 236, 253) 0%, rgb(241, 245, 252) 100%);
    padding: 120px 0;
  }
}
.recruit-under .l-underlayer__mv:after {
  content: "";
  display: inline-block;
  width: 50%;
  height: 100%;
  background-image: url(ssx2025/assets/img-lib/service/common/mv_triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 968px) {
  .recruit-under .l-underlayer__mv:after {
    width: 35%;
    height: 119%;
  }
}
@media (min-width: 968px) {
  .recruit-under .l-underlayer__mv .l-container {
    padding: 0 2%;
  }
}
.recruit-under .l-underlayer__mv .underlayer__ttl {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .recruit-under .l-underlayer__mv .underlayer__ttl {
    font-size: 35px;
  }
}
.recruit-under .l-underlayer__mv .roboto {
  color: #0059a8;
  font-size: 12px;
}
@media (min-width: 768px) {
  .recruit-under .l-underlayer__mv .roboto {
    font-size: 17px;
  }
}

/*! SCSS Starter entry */
.recruit-schedule .s-intro .l-news-list {
  display: -ms-grid;
  display: grid;
  gap: 20px 0;
  font-size: 15px;
  margin-bottom: 40px;
}
@media (min-width: 1300px) {
  .recruit-schedule .s-intro .l-news-list {
    padding-left: 80px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .recruit-schedule .s-intro .l-news-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-schedule .s-intro .l-news-list a:hover h3 {
    text-decoration: underline;
  }
}
.recruit-schedule .s-intro .l-news-list a h3 {
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 1300px) {
  .recruit-schedule .s-intro .l-news-list a h3 {
    margin-left: 40px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media (min-width: 1300px) {
  .recruit-schedule .s-intro .l-news-list a .news-data {
    white-space: nowrap;
  }
}
.recruit-schedule .sec-schedule {
  background: #eef0f6;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .recruit-schedule .sec-schedule {
    z-index: 2;
  }
}
.recruit-schedule .sec-schedule:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 768px) {
  .recruit-schedule .sec-schedule:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-schedule .sec-schedule:before {
    width: 34em;
    height: 29em;
    top: -3%;
  }
}
.recruit-schedule .sec-schedule:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -60px;
  z-index: -1;
}
@media (min-width: 768px) {
  .recruit-schedule .sec-schedule:after {
    width: 15em;
    height: 15em;
    z-index: -1;
  }
}
@media (min-width: 968px) {
  .recruit-schedule .sec-schedule:after {
    width: 27em;
    height: 27em;
  }
}
.recruit-schedule .sec-schedule .calendar-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 15px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .recruit-schedule .sec-schedule .calendar-wrap ul {
    width: 96%;
  }
}
.recruit-schedule .sec-schedule .calendar-wrap ul li:before {
  content: "■";
}
.recruit-schedule .sec-schedule .calendar-wrap ul li:first-child:before {
  color: #0000ff;
}
.recruit-schedule .sec-schedule .calendar-wrap ul li:nth-child(2):before {
  color: #ff6600;
}
.recruit-schedule .sec-schedule .calendar-wrap ul li:nth-child(3):before {
  color: #008000;
}
.recruit-schedule .sec-schedule .calendar-wrap ul li:nth-child(4):before {
  color: #ff00ff;
}
.recruit-schedule .sec-schedule .calendar-wrap ul li:nth-child(5):before {
  color: #ffff00;
}
.recruit-schedule .sec-schedule .calendar-wrap iframe {
  width: 100%;
}
@media (min-width: 768px) {
  .recruit-schedule .sec-schedule .calendar-wrap iframe {
    width: 96%;
  }
}

/*! SCSS Starter entry */
@media (min-width: 968px) {
  .recruit-philosophy .sec-philosophy .l-philosophy__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-bottom: 120px;
  }
  .recruit-philosophy .sec-philosophy .l-philosophy__box:before {
    content: "";
    width: 100%;
    height: 320px;
    background: #eef0f6;
    position: absolute;
    top: 97px;
  }
}
.recruit-philosophy .sec-philosophy .l-philosophy__box .l-left {
  padding: 30px 7%;
  background: #eef0f6;
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-philosophy .l-philosophy__box .l-left {
    background: none;
    padding: 0 0 0 12%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 53%;
  }
}
.recruit-philosophy .sec-philosophy .l-philosophy__box .l-left h3 {
  font-size: 24px;
  text-align: center;
  background: #fff;
  margin-bottom: 20px;
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-philosophy .l-philosophy__box .l-left h3 {
    font-size: 35px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    margin-bottom: 0;
    padding: 5px 0;
    white-space: nowrap;
  }
}
.recruit-philosophy .sec-philosophy .l-philosophy__box .l-left p {
  line-height: 2;
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-philosophy .l-philosophy__box .l-left p {
    padding: 0 70px;
    font-size: 16px;
  }
}
.recruit-philosophy .sec-philosophy .l-philosophy__box .l-right {
  padding: 30px 7%;
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-philosophy .l-philosophy__box .l-right {
    padding: 0;
    width: 47%;
  }
}
.recruit-philosophy .sec-business {
  background: #eef0f6;
  position: relative;
}
.recruit-philosophy .sec-business:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 768px) {
  .recruit-philosophy .sec-business:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-business:before {
    width: 34em;
    height: 29em;
    left: 5%;
    top: -7%;
  }
}
.recruit-philosophy .sec-business:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -60px;
}
@media (min-width: 768px) {
  .recruit-philosophy .sec-business:after {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-business:after {
    width: 27em;
    height: 27em;
  }
}
.recruit-philosophy .sec-business .text-lead {
  margin-bottom: 30px;
  line-height: 2;
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-business .text-lead {
    margin-bottom: 80px;
  }
}
.recruit-philosophy .sec-business .item {
  background: #fff;
  padding: 10px 10px 30px;
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-business .item {
    padding: 20px 20px 40px;
  }
}
.recruit-philosophy .sec-business .item img {
  margin-bottom: 20px;
}
.recruit-philosophy .sec-business .item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .recruit-philosophy .sec-business .item h3 {
    font-size: 28px;
  }
}
.recruit-philosophy .sec-business .item h3:before {
  content: "";
  background: #0059a8;
  width: 20px;
  height: 2px;
  margin-right: 10px;
}
.recruit-philosophy .sec-business .item p {
  line-height: 2;
}
.recruit-philosophy .sec-office h3 {
  font-size: 22px;
  padding-bottom: 5px;
  padding-left: 0.5em;
  border-bottom: 2px solid #c1c8dd;
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .recruit-philosophy .sec-office h3 {
    font-size: 28px;
  }
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-office h3 {
    margin-bottom: 40px;
  }
}
.recruit-philosophy .sec-office h3:after {
  content: "";
  width: 45px;
  height: 2px;
  background: #0059a8;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-office h3:after {
    width: 100px;
  }
}
.recruit-philosophy .sec-office .l-map {
  margin-bottom: 60px;
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-office .l-map {
    margin-bottom: 120px;
  }
}
.recruit-philosophy .sec-office .l-map .gmap_iframe {
  aspect-ratio: 16/9;
  max-width: 1000px;
  width: 100%;
  height: auto;
}
.recruit-philosophy .sec-office .l-map .g-map {
  color: #0059a8;
  text-decoration: underline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}
.recruit-philosophy .sec-office .l-map .g-map:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(ssx2025/assets/img-lib/service/philosophy/map_pin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.recruit-philosophy .sec-office .l-map .l-right p {
  margin-bottom: 10px;
  font-size: 16px;
}
.recruit-philosophy .sec-office .l-network a {
  background: #eef0f6;
  display: block;
  padding: 17px 10px;
}
@media (min-width: 968px) {
  .recruit-philosophy .sec-office .l-network a {
    padding: 27px 40px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 3px solid transparent;
  }
  .recruit-philosophy .sec-office .l-network a:hover {
    border: 3px solid #0059a8;
  }
}
.recruit-philosophy .sec-office .l-network a h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
@media (min-width: 768px) {
  .recruit-philosophy .sec-office .l-network a h4 {
    font-size: 22px;
  }
}
.recruit-philosophy .sec-office .l-network a h4:before {
  content: "";
  background: #0059a8;
  width: 10px;
  height: 2px;
  margin-right: 10px;
}

/*! SCSS Starter entry */
.recruit-benefit .sec-lead p {
  font-size: 16px;
}
.recruit-benefit .sec-balance,
.recruit-benefit .sec-support {
  background: #eef0f6;
  position: relative;
}
@media (min-width: 768px) {
  .recruit-benefit .sec-balance,
  .recruit-benefit .sec-support {
    z-index: 2;
  }
}
.recruit-benefit .sec-balance:before,
.recruit-benefit .sec-support:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 768px) {
  .recruit-benefit .sec-balance:before,
  .recruit-benefit .sec-support:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-benefit .sec-balance:before,
  .recruit-benefit .sec-support:before {
    width: 34em;
    height: 29em;
    top: -3%;
  }
}
.recruit-benefit .sec-balance:after,
.recruit-benefit .sec-support:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -60px;
}
@media (min-width: 768px) {
  .recruit-benefit .sec-balance:after,
  .recruit-benefit .sec-support:after {
    width: 15em;
    height: 15em;
    z-index: -1;
  }
}
@media (min-width: 968px) {
  .recruit-benefit .sec-balance:after,
  .recruit-benefit .sec-support:after {
    width: 27em;
    height: 27em;
  }
}
.recruit-benefit .sec-balance .item,
.recruit-benefit .sec-support .item {
  background: #fff;
  padding: 10px 10px 30px;
}
@media (min-width: 968px) {
  .recruit-benefit .sec-balance .item,
  .recruit-benefit .sec-support .item {
    padding: 30px;
  }
}
.recruit-benefit .sec-balance .item img,
.recruit-benefit .sec-support .item img {
  margin: 20px auto;
  display: block;
}
@media (min-width: 968px) {
  .recruit-benefit .sec-balance .item img,
  .recruit-benefit .sec-support .item img {
    margin: 20px auto 50px;
  }
}
.recruit-benefit .sec-balance .item h3,
.recruit-benefit .sec-support .item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .recruit-benefit .sec-balance .item h3,
  .recruit-benefit .sec-support .item h3 {
    font-size: 28px;
  }
}
@media (min-width: 968px) {
  .recruit-benefit .sec-balance .item h3,
  .recruit-benefit .sec-support .item h3 {
    margin-bottom: 20px;
  }
}
.recruit-benefit .sec-balance .item h3:before,
.recruit-benefit .sec-support .item h3:before {
  content: "";
  background: #0059a8;
  width: 20px;
  height: 2px;
  margin-right: 10px;
}
.recruit-benefit .sec-balance .item p,
.recruit-benefit .sec-support .item p {
  font-size: 16px;
  line-height: 2;
}
.recruit-benefit .sec-balance .note,
.recruit-benefit .sec-support .note {
  margin-top: 20px;
}
@media (min-width: 968px) {
  .recruit-benefit .sec-balance .note,
  .recruit-benefit .sec-support .note {
    margin-top: 30px;
    text-align: right;
  }
}
.recruit-benefit .sec-support .item:nth-child(-n+3) h3:after {
  content: "※";
  font-size: 0.8em;
}
@media (min-width: 968px) {
  .recruit-benefit .sec-support .item:nth-child(-n+3) h3:after {
    font-size: 0.5em;
    margin-left: 5px;
  }
}
.recruit-benefit .sec-stage .item {
  background: #eef0f6;
  padding: 10px 10px 30px;
}
@media (min-width: 968px) {
  .recruit-benefit .sec-stage .item {
    padding: 30px;
  }
}
.recruit-benefit .sec-stage .item img {
  margin: 20px auto;
  display: block;
}
@media (min-width: 968px) {
  .recruit-benefit .sec-stage .item img {
    margin: 20px auto 50px;
  }
}
.recruit-benefit .sec-stage .item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .recruit-benefit .sec-stage .item h3 {
    font-size: 28px;
  }
}
@media (min-width: 968px) {
  .recruit-benefit .sec-stage .item h3 {
    margin-bottom: 20px;
  }
}
.recruit-benefit .sec-stage .item h3:before {
  content: "";
  background: #0059a8;
  width: 20px;
  height: 2px;
  margin-right: 10px;
}
.recruit-benefit .sec-stage .item p {
  font-size: 16px;
}

/*! SCSS Starter entry */
/*募集要項*/
.recruit-guidelines .sec-guidelines .text-lead {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 30px;
}
@media (min-width: 968px) {
  .recruit-guidelines .sec-guidelines .text-lead {
    margin-bottom: 60px;
  }
}
.recruit-guidelines .sec-guidelines ul {
  margin: 0 auto 25px;
  padding: 0 20px;
  display: -ms-grid;
  display: grid;
  gap: 10px 0;
}
@media (min-width: 1100px) {
  .recruit-guidelines .sec-guidelines ul {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
    margin: 0 auto;
  }
}
.recruit-guidelines .sec-guidelines ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 12px;
  position: relative;
}
@media (min-width: 968px) {
  .recruit-guidelines .sec-guidelines ul li a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
  }
}
@media (min-width: 1100px) {
  .recruit-guidelines .sec-guidelines ul li a {
    display: block;
    padding: 40px 12px;
  }
}
.recruit-guidelines .sec-guidelines ul li a:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
@media (min-width: 1100px) {
  .recruit-guidelines .sec-guidelines ul li a:after {
    content: none;
  }
}
.recruit-guidelines .sec-guidelines ul li a img {
  max-width: 56px;
}
@media (min-width: 968px) {
  .recruit-guidelines .sec-guidelines ul li a img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
  }
}
@media (min-width: 1100px) {
  .recruit-guidelines .sec-guidelines ul li a img {
    max-width: 120px;
    display: block;
    margin: 0 auto 25px;
  }
}
.recruit-guidelines .sec-guidelines ul li a h3 {
  font-size: 18px;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .recruit-guidelines .sec-guidelines ul li a h3 {
    font-size: clamp(0.875rem, 2vw, 0.9rem);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media (min-width: 1100px) {
  .recruit-guidelines .sec-guidelines ul li a h3 {
    text-align: center;
    margin-left: 0;
    position: relative;
  }
}
@media (min-width: 1100px) and (min-width: 1300px) {
  .recruit-guidelines .sec-guidelines ul li a h3 {
    font-size: 18px;
  }
}
@media (min-width: 1100px) and (min-width: 1536px) {
  .recruit-guidelines .sec-guidelines ul li a h3 {
    font-size: 20px;
  }
}
@media (min-width: 1100px) {
  .recruit-guidelines .sec-guidelines ul li a h3:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 1px;
    bottom: 0;
    margin: auto;
    margin-left: 5px;
  }
}
@media (min-width: 968px) {
  .recruit-guidelines .sec-guidelines ul li a:hover {
    background: #fff;
  }
  .recruit-guidelines .sec-guidelines ul li a:hover img {
    border-radius: 50%;
  }
}
@media (min-width: 968px) {
  .recruit-guidelines .sec-guidelines ul li a.u-bg-blue:hover {
    border: 1px solid #0059A8;
    color: #0059A8;
  }
  .recruit-guidelines .sec-guidelines ul li a.u-bg-blue:hover h3:after {
    border-top: solid 2px #0059A8;
    border-right: solid 2px #0059A8;
  }
  .recruit-guidelines .sec-guidelines ul li a.u-bg-blue:hover img {
    border: 1px solid #0059A8;
  }
}
@media (min-width: 968px) {
  .recruit-guidelines .sec-guidelines ul li a.u-bg-lightblue:hover {
    border: 1px solid #3897CC;
    color: #3897CC;
  }
  .recruit-guidelines .sec-guidelines ul li a.u-bg-lightblue:hover h3:after {
    border-top: solid 2px #3897CC;
    border-right: solid 2px #3897CC;
  }
  .recruit-guidelines .sec-guidelines ul li a.u-bg-lightblue:hover img {
    border: 1px solid #3897CC;
  }
}
@media (min-width: 968px) {
  .recruit-guidelines .sec-guidelines ul li a.u-bg-black:hover {
    border: 1px solid #000;
    color: #000;
  }
  .recruit-guidelines .sec-guidelines ul li a.u-bg-black:hover h3:after {
    border-top: solid 2px #000;
    border-right: solid 2px #000;
  }
  .recruit-guidelines .sec-guidelines ul li a.u-bg-black:hover img {
    border: 1px solid #000;
  }
}
@media (min-width: 968px) {
  .recruit-guidelines .sec-guidelines ul li a.u-bg-lightgreen:hover {
    border: 1px solid #4C9EA5;
    color: #4C9EA5;
  }
  .recruit-guidelines .sec-guidelines ul li a.u-bg-lightgreen:hover h3:after {
    border-top: solid 2px #4C9EA5;
    border-right: solid 2px #4C9EA5;
  }
  .recruit-guidelines .sec-guidelines ul li a.u-bg-lightgreen:hover img {
    border: 1px solid #4C9EA5;
  }
}

/*新卒と中途採用*/
.recruit-newgraduate .overview, .recruit-newgraduate .l-incident {
  padding: 0 0 50px;
}
@media (min-width: 1100px) {
  .recruit-newgraduate .overview, .recruit-newgraduate .l-incident {
    padding: 0 0 130px;
  }
}
.recruit-newgraduate .overview h2, .recruit-newgraduate .l-incident h2 {
  font-size: 22px;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 2px solid #dbdfe6;
  position: relative;
}
@media (min-width: 1100px) {
  .recruit-newgraduate .overview h2, .recruit-newgraduate .l-incident h2 {
    font-size: 30px;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.recruit-newgraduate .overview h2:after, .recruit-newgraduate .l-incident h2:after {
  content: "";
  width: 45px;
  height: 2px;
  background: #0059a8;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
}
@media (min-width: 968px) {
  .recruit-newgraduate .overview h2:after, .recruit-newgraduate .l-incident h2:after {
    width: 100px;
  }
}
.recruit-newgraduate .overview .recruit-dl, .recruit-newgraduate .l-incident .recruit-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
}
.recruit-newgraduate .overview .recruit-dl > dt,
.recruit-newgraduate .overview .recruit-dl > dd, .recruit-newgraduate .l-incident .recruit-dl > dt,
.recruit-newgraduate .l-incident .recruit-dl > dd {
  border-bottom: 1px solid #dbdfe6;
  padding: 20px 0;
}
@media (min-width: 968px) {
  .recruit-newgraduate .overview .recruit-dl > dt,
  .recruit-newgraduate .overview .recruit-dl > dd, .recruit-newgraduate .l-incident .recruit-dl > dt,
  .recruit-newgraduate .l-incident .recruit-dl > dd {
    padding: 50px 0;
  }
}
.recruit-newgraduate .overview .recruit-dl > dt, .recruit-newgraduate .l-incident .recruit-dl > dt {
  width: 100%;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 968px) {
  .recruit-newgraduate .overview .recruit-dl > dt, .recruit-newgraduate .l-incident .recruit-dl > dt {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .recruit-newgraduate .overview .recruit-dl > dt, .recruit-newgraduate .l-incident .recruit-dl > dt {
    width: 20%;
  }
}
.recruit-newgraduate .overview .recruit-dl > dt:before, .recruit-newgraduate .l-incident .recruit-dl > dt:before {
  content: "";
  width: 10px;
  height: 3px;
  background: #0059a8;
  display: inline-block;
  margin-right: 10px;
}
.recruit-newgraduate .overview .recruit-dl > dt.line-height, .recruit-newgraduate .l-incident .recruit-dl > dt.line-height {
  line-height: 1.7;
}
.recruit-newgraduate .overview .recruit-dl > dt:last-of-type, .recruit-newgraduate .l-incident .recruit-dl > dt:last-of-type {
  border-bottom: none;
}
@media (min-width: 968px) {
  .recruit-newgraduate .overview .recruit-dl > dt.pc-top, .recruit-newgraduate .l-incident .recruit-dl > dt.pc-top {
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
    line-height: 1.7;
  }
  .recruit-newgraduate .overview .recruit-dl > dt.pc-top:before, .recruit-newgraduate .l-incident .recruit-dl > dt.pc-top:before {
    position: relative;
    top: 16px;
  }
}
.recruit-newgraduate .overview .recruit-dl dd, .recruit-newgraduate .l-incident .recruit-dl dd {
  width: 100%;
}
@media (min-width: 968px) {
  .recruit-newgraduate .overview .recruit-dl dd, .recruit-newgraduate .l-incident .recruit-dl dd {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .recruit-newgraduate .overview .recruit-dl dd, .recruit-newgraduate .l-incident .recruit-dl dd {
    width: 80%;
  }
}
.recruit-newgraduate .overview .recruit-dl dd.line-height, .recruit-newgraduate .l-incident .recruit-dl dd.line-height {
  line-height: 1.7;
}
.recruit-newgraduate .overview .recruit-dl dd .sp-br, .recruit-newgraduate .l-incident .recruit-dl dd .sp-br {
  display: block;
}
@media (min-width: 968px) {
  .recruit-newgraduate .overview .recruit-dl dd .sp-br, .recruit-newgraduate .l-incident .recruit-dl dd .sp-br {
    display: inline;
    margin-right: 10px;
  }
}
.recruit-newgraduate .overview .recruit-dl dd:last-of-type, .recruit-newgraduate .l-incident .recruit-dl dd:last-of-type {
  border-bottom: none;
}
.recruit-newgraduate .overview .link__color, .recruit-newgraduate .l-incident .link__color {
  color: #0059a8;
}
.recruit-newgraduate .sec-flow .flow-number {
  border: 1px solid #333;
  padding: 20px;
}
@media (min-width: 968px) {
  .recruit-newgraduate .sec-flow .flow-number {
    padding: 30px;
  }
}
.recruit-newgraduate .sec-flow .flow-number h3 {
  font-size: clamp(1.188rem, 1.119rem + 0.34vw, 1.375rem);
  margin-bottom: 20px;
}
.recruit-newgraduate .sec-flow .flow-number p {
  margin-bottom: 20px;
}
@media (min-width: 968px) {
  .recruit-newgraduate .sec-flow .flow-number a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-newgraduate .sec-flow .flow-number a:hover {
    opacity: 0.7;
  }
}

/*障がい者採用*/
.recruit-disabilities .text-lead {
  margin-bottom: 30px;
}
@media (min-width: 968px) {
  .recruit-disabilities .text-lead {
    margin-bottom: 60px;
  }
}
.recruit-disabilities .text-end {
  margin-top: 30px;
}
.recruit-disabilities .sec-flow {
  background: #eef0f6;
  padding: 60px 0 !important;
}
.recruit-disabilities .sec-flow .flow-number {
  border: 1px solid #333;
  padding: 20px;
  background: #fff;
}
@media (min-width: 968px) {
  .recruit-disabilities .sec-flow .flow-number {
    padding: 30px;
  }
}
.recruit-disabilities .sec-flow .flow-number h3 {
  font-size: clamp(1.188rem, 1.119rem + 0.34vw, 1.375rem);
  margin-bottom: 20px;
}
.recruit-disabilities .sec-flow .flow-number p {
  margin-bottom: 20px;
}

/*! SCSS Starter entry */
.recruit-message .sec-manager img {
  display: block;
  margin: 0 auto;
}
.recruit-message .sec-logistics {
  background: #eef0f6;
  position: relative;
}
.recruit-message .sec-logistics:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 768px) {
  .recruit-message .sec-logistics:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-message .sec-logistics:before {
    width: 34em;
    height: 29em;
    top: -3%;
  }
}
.recruit-message .sec-logistics:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -60px;
}
@media (min-width: 768px) {
  .recruit-message .sec-logistics:after {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-message .sec-logistics:after {
    width: 27em;
    height: 27em;
  }
}
.recruit-message .sec-logistics .text-lead {
  margin-bottom: 40px;
  line-height: 2;
}
.recruit-message .sec-logistics ul {
  margin-bottom: 40px;
}
.recruit-message .sec-logistics ul .item {
  background: #fff;
  padding: 20px;
}
.recruit-message .sec-logistics ul .item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  margin-bottom: 10px;
}
@media (min-width: 968px) {
  .recruit-message .sec-logistics ul .item h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.recruit-message .sec-logistics ul .item h3:before {
  content: "";
  background: #0059a8;
  width: 20px;
  height: 2px;
  margin-right: 10px;
}
.recruit-message .sec-logistics ul .item p {
  font-size: 16px;
  line-height: 2;
}
.recruit-message .sec-logistics img {
  display: block;
  margin: 0 auto;
}

/*! SCSS Starter entry */
.recruit-news .l-news-list li a {
  padding: 24px 0;
  border-bottom: 1px solid #d0d7e0;
  display: block;
}
@media (min-width: 1200px) {
  .recruit-news .l-news-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 20px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-news .l-news-list li a:hover {
    background: #004fa2;
  }
  .recruit-news .l-news-list li a:hover .news-data,
  .recruit-news .l-news-list li a:hover h3 {
    color: #fff;
  }
}
.recruit-news .l-news-list li a .news-data {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 15px;
}
@media (min-width: 1200px) {
  .recruit-news .l-news-list li a .news-data {
    margin-bottom: 0;
    font-size: 17px;
    margin-right: 24px;
    white-space: nowrap;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
.recruit-news .l-news-list li a h3 {
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .recruit-news .l-news-list li a h3 {
    font-size: 17px;
    padding-right: 2em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}

/*! SCSS Starter entry */
@media (min-width: 968px) {
  .recruit-development .sec-nurturing .l-grid {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.recruit-development .sec-nurturing .l-grid .l-right {
  padding: 20px;
}
@media (min-width: 1100px) {
  .recruit-development .sec-nurturing .l-grid .l-right {
    text-align: center;
    padding: 0;
  }
}
.recruit-development .sec-nurturing .l-grid .l-right p {
  font-size: 16px;
  line-height: 2;
}
@media (min-width: 1100px) {
  .recruit-development .sec-nurturing .l-grid .l-right p {
    background-color: #eef0f6;
    padding: 40px 20px;
  }
}
.recruit-development .sec-same .state-list .l-single {
  margin: 0 auto;
}
.recruit-development .sec-same .state-list img {
  margin-bottom: 10px;
  display: block;
}
.recruit-development .sec-same .training-list {
  margin-top: 30px;
}
@media (min-width: 968px) {
  .recruit-development .sec-same .training-list {
    margin-top: 50px;
  }
}
.recruit-development .sec-same .training-list .item {
  background: #fff;
  padding: 20px;
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruit-development .sec-same .training-list .item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .recruit-development .sec-same .training-list .item h3 {
    font-size: 28px;
  }
}
@media (min-width: 968px) {
  .recruit-development .sec-same .training-list .item h3 {
    margin-bottom: 20px;
  }
}
.recruit-development .sec-same .training-list .item h3:before {
  content: "";
  background: #0059a8;
  width: 20px;
  height: 2px;
  margin-right: 10px;
}
.recruit-development .sec-same .training-list .item p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 2;
}
.recruit-development .sec-same .training-list .item h4 {
  margin-bottom: 10px;
}
.recruit-development .sec-same .training-list .item h4:before {
  content: "●";
  margin-right: 5px;
}
.recruit-development .sec-same .training-list .item .l-skill {
  margin-top: auto;
}
.recruit-development .sec-same .training-list .item .l-skill ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
}
.recruit-development .sec-same .training-list .item .l-skill ul li {
  background: #eef0f6;
  padding: 5px 10px;
  display: inline;
}
.recruit-development .sec-same.u-bg-gray {
  position: relative;
}
.recruit-development .sec-same.u-bg-gray:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 768px) {
  .recruit-development .sec-same.u-bg-gray:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-development .sec-same.u-bg-gray:before {
    width: 34em;
    height: 29em;
    top: -3%;
  }
}

/*! SCSS Starter entry */
.recruit-jobs .sec-lead p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 2;
}
.recruit-jobs .sec-same .intro-list {
  margin-bottom: 40px;
}
.recruit-jobs .sec-same .l-right h3 {
  margin-bottom: 5px;
}
.recruit-jobs .sec-same .l-right .l-top {
  margin-bottom: 40px;
}
.recruit-jobs .sec-same p {
  font-size: 16px;
  line-height: 2;
}
.recruit-jobs .sec-same h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .recruit-jobs .sec-same h3 {
    font-size: 28px;
  }
}
@media (min-width: 968px) {
  .recruit-jobs .sec-same .l-interview a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-jobs .sec-same .l-interview a:hover {
    opacity: 0.7;
  }
}
.recruit-jobs .sec-same .l-interview a img {
  margin-bottom: 10px;
}
.recruit-jobs .sec-same .l-related .item a {
  display: block;
}
@media (min-width: 768px) {
  .recruit-jobs .sec-same .l-related .item a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .recruit-jobs .sec-same .l-related .item a:hover {
    opacity: 0.7;
  }
}
.recruit-jobs .sec-same .l-related .item a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.recruit-jobs .sec-same .l-related .item a .slide-content {
  background: #3897cc;
  position: relative;
  padding: 15px 15px 22px;
  min-height: 103px;
}
@media (min-width: 968px) {
  .recruit-jobs .sec-same .l-related .item a .slide-content {
    padding: 20px 20px 37px;
  }
}
.recruit-jobs .sec-same .l-related .item a .slide-content .slide-dept {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 968px) {
  .recruit-jobs .sec-same .l-related .item a .slide-content .slide-dept {
    font-size: 16px;
  }
}
.recruit-jobs .sec-same .l-related .item a .slide-content .slide-title {
  font-size: 15px;
  color: #fff;
}
@media (min-width: 968px) {
  .recruit-jobs .sec-same .l-related .item a .slide-content .slide-title {
    font-size: 20px;
  }
}
.recruit-jobs .sec-same .l-related .item a .slide-content .g-btn {
  width: 96px;
  font-size: 12px;
  font-weight: normal;
  padding: 2px;
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: -8px;
}
@media (min-width: 968px) {
  .recruit-jobs .sec-same .l-related .item a .slide-content .g-btn {
    width: 149px;
    font-size: 18px;
  }
}
.recruit-jobs .sec-same .l-related .item a .slide-content .g-btn:after {
  right: 7px;
  width: 4px;
  height: 4px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
@media (min-width: 968px) {
  .recruit-jobs .sec-same .l-related .item a .slide-content .g-btn:after {
    top: 4px;
    right: 12px;
    width: 8px;
    height: 8px;
  }
}
.recruit-jobs .sec-same.u-bg-gray {
  position: relative;
}
.recruit-jobs .sec-same.u-bg-gray:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 768px) {
  .recruit-jobs .sec-same.u-bg-gray:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-jobs .sec-same.u-bg-gray:before {
    width: 34em;
    height: 29em;
    top: -3%;
  }
}
.recruit-jobs .sec-shift p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 40px;
}
@media (min-width: 968px) {
  .recruit-jobs .sec-shift p {
    margin-bottom: 80px;
  }
}
.recruit-jobs .sec-shift .l-example {
  padding: 20px 10px;
}
@media (min-width: 968px) {
  .recruit-jobs .sec-shift .l-example {
    padding: 80px 40px;
  }
}
.recruit-jobs .sec-shift .l-example h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  margin-bottom: 40px;
}
.recruit-jobs .sec-shift .l-example h3:before {
  content: "";
  background: #0059a8;
  width: 20px;
  height: 4px;
  margin-right: 10px;
}
.recruit-jobs .sec-shift .l-example h4 {
  font-size: clamp(1.063rem, 0.95rem + 0.46vw, 1.5rem);
  text-align: center;
  margin-bottom: 20px;
}
.recruit-jobs .sec-shift .l-example h5 {
  font-size: clamp(1.063rem, 1.014rem + 0.2vw, 1.25rem);
  font-weight: normal;
}
.recruit-jobs .sec-shift .l-example img {
  width: 80px;
}
.recruit-jobs .sec-shift .l-example .l-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1100px) {
  .recruit-jobs .sec-shift .l-example .l-flow {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.recruit-jobs .sec-shift .l-example .l-flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
  padding-bottom: 45px;
}
@media (min-width: 1100px) {
  .recruit-jobs .sec-shift .l-example .l-flow ul {
    padding-bottom: 0;
  }
}
.recruit-jobs .sec-shift .l-example .l-flow ul li {
  background: #fff;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 30px;
}
@media (min-width: 1100px) {
  .recruit-jobs .sec-shift .l-example .l-flow ul li {
    padding: 50px;
  }
}
.recruit-jobs .sec-shift .l-example .l-flow .icon-arrow,
.recruit-jobs .sec-shift .l-example .l-flow .icon-x {
  display: block;
  margin: 0 auto 40px;
}
@media (min-width: 1100px) {
  .recruit-jobs .sec-shift .l-example .l-flow .icon-arrow,
  .recruit-jobs .sec-shift .l-example .l-flow .icon-x {
    margin: 0 auto;
  }
}
.recruit-jobs .sec-shift .l-example .l-flow .icon-arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 1100px) {
  .recruit-jobs .sec-shift .l-example .l-flow .icon-arrow {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.recruit-jobs .sec-shift .l-example .l-flow .icon-x {
  width: 65px;
}
@media (min-width: 1100px) {
  .recruit-jobs .sec-shift .l-example .l-flow .l-join,
  .recruit-jobs .sec-shift .l-example .l-flow .l-five,
  .recruit-jobs .sec-shift .l-example .l-flow .l-plan {
    width: 27%;
  }
}
.recruit-jobs .sec-shift .l-example .l-flow .l-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 30px;
}
@media (min-width: 1100px) {
  .recruit-jobs .sec-shift .l-example .l-flow .l-plan {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
  }
}
.recruit-jobs .sec-shift .l-example .l-flow .l-plan img {
  width: 80px;
  display: block;
  margin-bottom: 20px;
}

/*! SCSS Starter entry */
.recruit-offices .sec-lead p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.recruit-offices .sec-main-office {
  background-color: #eef0f6;
}
.recruit-offices .swiper-thumbs .swiper-slide {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  width: 33.3333333333%;
}
.recruit-offices .swiper-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.recruit-offices .swiper {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 968px) {
  .recruit-offices .swiper {
    margin-bottom: 0;
  }
}
@media (min-width: 968px) {
  .recruit-offices .swiper-slide {
    padding: 30px 50px;
  }
}
.recruit-offices .swiper-slide img {
  height: auto;
  width: 100%;
}
.recruit-offices .swiper-slide p {
  text-align: center;
  margin: 20px 0 0 0;
}
.recruit-offices .swiper-thumbs {
  width: 100%;
  margin-right: auto;
  margin-left: initial;
}
@media (min-width: 968px) {
  .recruit-offices .swiper-thumbs {
    width: 50%;
    overflow: initial;
  }
}
.recruit-offices .swiper-thumbs .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (min-width: 968px) {
  .recruit-offices .swiper-thumbs .swiper-wrapper {
    padding-left: 50px;
  }
}
@media (min-width: 968px) {
  .recruit-offices .swiper-thumbs .swiper-wrapper .swiper-slide {
    padding: 0;
    cursor: pointer;
  }
}
.recruit-offices .swiper-button-prev,
.recruit-offices .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.recruit-offices .swiper-button-next,
.recruit-offices .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.recruit-offices .swiper-button-next,
.recruit-offices .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.recruit-offices .l-button-right,
.recruit-offices .l-button-left {
  position: absolute;
  top: 30%;
  z-index: 5;
}
@media (min-width: 968px) {
  .recruit-offices .l-button-right,
  .recruit-offices .l-button-left {
    top: 50%;
  }
}
.recruit-offices .l-button-right {
  right: 0;
}
.recruit-offices .l-button-left {
  left: 0;
}
.recruit-offices .swiper-button-next,
.recruit-offices .swiper-button-prev {
  position: relative;
}
.recruit-offices .swiper-button-prev,
.recruit-offices .swiper-button-next {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .recruit-offices .swiper-button-prev,
  .recruit-offices .swiper-button-next {
    width: 80px;
    height: 80px;
  }
}
.recruit-offices .swiper-button-prev::before,
.recruit-offices .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: #0b1f40;
  border: 1px solid #fff;
}
.recruit-offices .swiper-button-prev::after,
.recruit-offices .swiper-button-next::after {
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid #fff;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 50%;
}
@media (min-width: 768px) {
  .recruit-offices .swiper-button-prev::after,
  .recruit-offices .swiper-button-next::after {
    width: 12px;
    height: 12px;
  }
}
.recruit-offices .swiper-button-prev::after {
  left: 53%;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(-135deg);
          transform: translateY(-50%) translateX(-50%) rotate(-135deg);
}
.recruit-offices .swiper-button-next::after {
  left: 47%;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
          transform: translateY(-50%) translateX(-50%) rotate(45deg);
}

/*! SCSS Starter entry */
@media (min-width: 968px) {
  .recruit-numbers .sec-lead {
    padding: 0 0 80px !important;
  }
}
.recruit-numbers .sec-lead p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 70px;
}
.recruit-numbers .sec-number {
  background: #eef0f6;
  position: relative;
}
.recruit-numbers .sec-number:before {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (min-width: 768px) {
  .recruit-numbers .sec-number:before {
    width: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-numbers .sec-number:before {
    width: 34em;
    height: 29em;
    top: -3%;
  }
}
.recruit-numbers .sec-number:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -60px;
}
@media (min-width: 768px) {
  .recruit-numbers .sec-number:after {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .recruit-numbers .sec-number:after {
    width: 27em;
    height: 27em;
  }
}
.recruit-numbers .sec-number .item {
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 30px 10px;
  position: relative;
  z-index: 1;
}
@media (min-width: 968px) {
  .recruit-numbers .sec-number .item {
    padding: 50px 10px;
  }
}
.recruit-numbers .sec-number .item h3 {
  text-align: center;
  color: #0059a8;
}
.recruit-numbers .sec-number .item h3 .attach {
  font-size: clamp(1.125rem, 0.899rem + 0.93vw, 2rem);
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 968px) {
  .recruit-numbers .sec-number .item h3 .attach {
    margin-bottom: 15px;
  }
}
.recruit-numbers .sec-number .item h3 .count-up-text,
.recruit-numbers .sec-number .item h3 .middle__text {
  font-size: clamp(1.125rem, 0.899rem + 0.93vw, 2rem);
}
.recruit-numbers .sec-number .item h3 .count-up-text .small__text,
.recruit-numbers .sec-number .item h3 .middle__text .small__text {
  display: block;
  font-size: clamp(1.063rem, 1.014rem + 0.2vw, 1.25rem);
}
.recruit-numbers .sec-number .item img {
  margin: 20px auto 0;
  display: block;
  max-width: 50%;
}
.recruit-numbers .sec-number .item .count-up-box {
  margin-bottom: 10px;
  text-align: center;
}
.recruit-numbers .sec-number .item .count-up-box .count-up-no,
.recruit-numbers .sec-number .item .count-up-box .count-only,
.recruit-numbers .sec-number .item .count-up-box .dot {
  font-size: clamp(2.375rem, 2.02rem + 1.46vw, 3.75rem);
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 968px) {
  .recruit-numbers .sec-number .item .count-up-box .count-up-no,
  .recruit-numbers .sec-number .item .count-up-box .count-only,
  .recruit-numbers .sec-number .item .count-up-box .dot {
    font-size: 70px;
  }
}
.recruit-numbers .sec-number .item .count-up-box .count-up-no .count-up-text,
.recruit-numbers .sec-number .item .count-up-box .count-only .count-up-text,
.recruit-numbers .sec-number .item .count-up-box .dot .count-up-text {
  font-size: 1em;
}

/*! SCSS Starter entry */
.recruit-talk .u-pd__t--0 .l-grid {
  margin-bottom: 60px;
}
.recruit-talk .u-pd__t--0 .l-grid .item img {
  margin-bottom: 10px;
}
.recruit-talk .u-pd__t--0 .l-grid .item .roboto {
  font-size: clamp(0.875rem, 0.861rem + 0.33vw, 1.25rem);
  color: #0059a8;
}
.recruit-talk .u-pd__t--0 .l-grid .item h3 {
  font-size: clamp(0.938rem, 0.799rem + 0.59vw, 1.5rem);
}

/*! SCSS Starter entry */
.recruit-sitemap .site-list li h3 {
  font-size: 19px;
  line-height: 1.5;
  font-weight: normal;
}
@media (min-width: 968px) {
  .recruit-sitemap .site-list li h3 {
    font-size: 22px;
  }
}
.recruit-sitemap .site-list li h3 a {
  display: block;
  padding: 30px 40px 30px 20px;
  position: relative;
}
@media (min-width: 968px) {
  .recruit-sitemap .site-list li h3 a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
.recruit-sitemap .site-list li h3 a:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
@media (min-width: 968px) {
  .recruit-sitemap .site-list li h3 a:hover {
    background: #004fa2;
    color: #fff;
  }
  .recruit-sitemap .site-list li h3 a:hover:before {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}
.recruit-sitemap .site-list li + li {
  border-top: 1px dotted #333;
}

/* Sections */
/*! SCSS Starter entry */
.s-intro .l-event-list li {
  padding: 40px 0;
  border-bottom: 1px solid #d0d7e0;
}
@media (min-width: 968px) {
  .s-intro .l-event-list li {
    padding: 80px 0;
  }
}
.s-intro .l-event-list li:last-child {
  border-bottom: none;
}
@media (min-width: 968px) {
  .s-intro .l-event-list li:last-child {
    padding-bottom: 0;
  }
}
@media (min-width: 968px) {
  .s-intro .l-event-list li img {
    padding-right: 2%;
  }
}
.s-intro .l-event-list li time {
  font-size: 15px;
  margin-bottom: 5px;
}
@media (min-width: 968px) {
  .s-intro .l-event-list li time {
    margin-bottom: 10px;
  }
}
.s-intro .l-event-list li h3 {
  font-size: 22px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .s-intro .l-event-list li h3 {
    font-size: 28px;
    padding-bottom: 8px;
  }
}
@media (min-width: 968px) {
  .s-intro .l-event-list li h3 {
    margin-bottom: 40px;
  }
}
.s-intro .l-event-list li .intro-txt {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 2;
}
@media (min-width: 968px) {
  .s-intro .l-event-list li .intro-txt {
    margin-bottom: 50px;
  }
}
@media (min-width: 968px) {
  .s-intro .l-event-list li .btn-center {
    text-align: left;
  }
}

.s-inerview-other {
  position: relative;
}
.s-inerview-other:after {
  content: "";
  display: inline-block;
  width: 10em;
  height: 10em;
  background-image: url(ssx2025/assets/img-lib/service/common/triangle02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -60px;
}
@media (min-width: 768px) {
  .s-inerview-other:after {
    width: 15em;
    height: 15em;
  }
}
@media (min-width: 968px) {
  .s-inerview-other:after {
    width: 27em;
    height: 27em;
  }
}
.s-inerview-other .l-grid {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.s-inerview-other .l-grid .item a {
  display: block;
}
@media (min-width: 768px) {
  .s-inerview-other .l-grid .item a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .s-inerview-other .l-grid .item a:hover {
    opacity: 0.7;
  }
}
.s-inerview-other .l-grid .item a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.s-inerview-other .l-grid .item a .slide-content {
  background: #3897cc;
  position: relative;
  padding: 15px 15px 22px;
  min-height: 103px;
}
@media (min-width: 968px) {
  .s-inerview-other .l-grid .item a .slide-content {
    padding: 20px 20px 37px;
  }
}
.s-inerview-other .l-grid .item a .slide-content .slide-dept {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 968px) {
  .s-inerview-other .l-grid .item a .slide-content .slide-dept {
    font-size: 16px;
  }
}
.s-inerview-other .l-grid .item a .slide-content .slide-title {
  font-size: 15px;
  color: #fff;
}
@media (min-width: 968px) {
  .s-inerview-other .l-grid .item a .slide-content .slide-title {
    font-size: 20px;
  }
}
.s-inerview-other .l-grid .item a .slide-content .g-btn {
  width: 96px;
  font-size: 12px;
  font-weight: normal;
  padding: 2px;
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: -8px;
}
@media (min-width: 968px) {
  .s-inerview-other .l-grid .item a .slide-content .g-btn {
    width: 149px;
    font-size: 18px;
  }
}
.s-inerview-other .l-grid .item a .slide-content .g-btn:after {
  right: 7px;
  width: 4px;
  height: 4px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
@media (min-width: 968px) {
  .s-inerview-other .l-grid .item a .slide-content .g-btn:after {
    top: 4px;
    right: 12px;
    width: 8px;
    height: 8px;
  }
}

.sec-recruit-faq .js-accordion--close {
  display: none;
}
.sec-recruit-faq .accordion-box {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.sec-recruit-faq .js-accordion {
  position: relative;
  padding: 10px 35px 10px 30px;
  cursor: pointer;
}
@media (min-width: 968px) {
  .sec-recruit-faq .js-accordion {
    padding: 10px 35px 10px 50px;
  }
}
.sec-recruit-faq .js-accordion::before {
  content: "";
  width: 2px;
  height: 16px;
  background: #000;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.sec-recruit-faq .js-accordion::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #000;
  position: absolute;
  right: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.sec-recruit-faq .js-accordion.is-accordion--open::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sec-recruit-faq .js-accordion.is-accordion--open::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.sec-recruit-faq .js-accordion.is-accordion--open + .accordion-box {
  height: auto;
  opacity: 1;
}
.sec-recruit-faq .qa__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
}
.sec-recruit-faq .qa__box .item {
  background: #fff;
}
.sec-recruit-faq .qa__box .item h3 {
  position: relative;
  font-size: clamp(1.125rem, 1.028rem + 0.4vw, 1.5rem);
}
@media (min-width: 968px) {
  .sec-recruit-faq .qa__box .item h3 {
    font-size: 20px;
  }
}
.sec-recruit-faq .qa__box .item h3:before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: -24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: clamp(1.125rem, 1.028rem + 0.4vw, 1.5rem);
  font-weight: bold;
  color: #0059a8;
}
@media (min-width: 968px) {
  .sec-recruit-faq .qa__box .item h3:before {
    left: -32px;
  }
}
.sec-recruit-faq .qa__box .item .accordion-box p {
  padding: 0 10px 10px 30px;
  font-size: 16px;
  position: relative;
}
@media (min-width: 968px) {
  .sec-recruit-faq .qa__box .item .accordion-box p {
    padding: 5px 10px 10px 50px;
  }
}
.sec-recruit-faq .qa__box .item .accordion-box p:before {
  content: "A";
  position: absolute;
  top: 0;
  left: 8px;
  font-size: clamp(1.125rem, 1.028rem + 0.4vw, 1.5rem);
  font-weight: bold;
  color: #a80900;
}
@media (min-width: 968px) {
  .sec-recruit-faq .qa__box .item .accordion-box p:before {
    left: 21px;
  }
}
/*# sourceMappingURL=style.css.map */

/* HeartCore ページネーション */
.p-pagenation .WCMpaged {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
}

.p-pagenation .WCMpaged a {
  display: inline-block;
  text-align: center;
  border: 1px solid #000;
  color: #000;
  padding: 10px 13px;
  font-size: 15px;
}

.p-pagenation .WCMpaged a.current {
  background: #0059A8;
  border-color: #0059A8;
  color: #fff;
}

@media (min-width: 1200px) {
  .p-pagenation .WCMpaged a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 12px 15px;
  }
  .p-pagenation .WCMpaged a:hover {
    background: #0059A8;
    color: #fff;
  }
}

/* ニュース詳細 ビジュアルヘッダー */
/* ニュース詳細 ビジュアルヘッダー */
.l-main .l-underlayer__mv {
  padding: 70px 0;
  position: relative;
  background: linear-gradient(0deg, rgb(224, 236, 253) 0%, rgb(241, 245, 252) 100%);
}
@media (min-width: 968px) {
  .l-main .l-underlayer__mv {
    background: linear-gradient(245deg, rgb(224, 236, 253) 0%, rgb(241, 245, 252) 100%);
    padding: 120px 0;
  }
}
.l-main .l-underlayer__mv:after {
  content: "";
  display: inline-block;
  width: 50%;
  height: 100%;
  background-image: url(ssx2025/assets/img-lib/service/common/mv_triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 968px) {
  .l-main .l-underlayer__mv:after {
    width: 35%;
    height: 119%;
  }
}
.l-main .l-underlayer__mv .underlayer__ttl {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .l-main .l-underlayer__mv .underlayer__ttl {
    font-size: 35px;
  }
}
.l-main .l-underlayer__mv .roboto {
  color: #0059a8;
  font-size: 12px;
}
@media (min-width: 768px) {
  .l-main .l-underlayer__mv .roboto {
    font-size: 17px;
  }
}

