/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  /* stylelint-disable-next-line font-family-no-duplicate-names */
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
  border-bottom: none; /* 1 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */ /* stylelint-disable-line */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 2 */
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  font: inherit; /* 2 */
  -webkit-appearance: button; /* 1 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
}

.modal__container {
  position: relative;
  width: calc(100% - 50px);
  max-width: 1028px;
  max-height: 100vh;
}

.modal__content {
  box-sizing: border-box;
  padding: 50px 0;
  overflow-y: auto;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .modal__content {
    padding: 40px 0;
  }
}
.modal__content img {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}
.modal__content .hs-video-widget {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
}

.modal__close {
  position: absolute;
  top: 0;
  right: -50px;
  width: 40px;
  height: 40px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  transition: opacity 0.3s linear;
}
@media screen and (max-width: 1100px) {
  .modal__close {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .modal__close {
    width: 30px;
    height: 30px;
  }
}
.modal__close:hover {
  opacity: 0.6;
}
.modal__close::before, .modal__close::after {
  position: absolute;
  inset: 0 0 0 -5px;
  width: 50px;
  height: 2px;
  margin: auto;
  content: "";
  background: #fff;
}
@media screen and (max-width: 768px) {
  .modal__close::before, .modal__close::after {
    width: 40px;
    height: 1px;
  }
}
.modal__close::before {
  transform: rotate(45deg);
}
.modal__close::after {
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------
  *Animation
------------------------------------------------------------ */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}@charset "UTF-8";
/* ======================================================================
 * setting
====================================================================== */.ff-en {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}/* ------------------------------------------------------------
 * tag setting
------------------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 1em;
  font-weight: 500;
  color: #333;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

p,
ul,
ol,
table {
  margin: 1em 0;
}
p:last-child,
ul:last-child,
ol:last-child,
table:last-child {
  margin-bottom: 0;
}
p:first-child,
ul:first-child,
ol:first-child,
table:first-child {
  margin-top: 0;
}

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #000;
}

input,
select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

html {
  font-size: 10px;
}

:root {
  --spacing: 0.04em;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555555;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
body * {
  letter-spacing: var(--spacing);
}

@media screen and (min-width: 769px) {
  a {
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.5;
  }
}

button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}@charset "UTF-8";
/* ======================================================================
 * デフォルトのモジュールを拡張したい場合など、必要なものは要確認,
====================================================================== */@charset "UTF-8";
/* ======================================================================
 * dndセクション初期設定
====================================================================== */
.dnd-section {
  padding: 0 2rem;
}
.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
}@charset "UTF-8";
/* ======================================================================
 * layout初期設定
====================================================================== */
.row-fluid {
  width: 100%;
  *zoom: 1;
}
.row-fluid::before, .row-fluid::after {
  content: "";
  display: table;
}
.row-fluid::after {
  clear: both;
}
.row-fluid [class*=span] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
}
.row-fluid [class*=span]:first-child {
  margin-left: 0;
}
.row-fluid .span12 {
  width: 100%;
}
.row-fluid .span11 {
  width: 91.489361693%;
}
.row-fluid .span10 {
  width: 82.978723396%;
}
.row-fluid .span9 {
  width: 74.468085099%;
}
.row-fluid .span8 {
  width: 65.957446802%;
}
.row-fluid .span7 {
  width: 57.446808505%;
}
.row-fluid .span6 {
  width: 48.936170208%;
}
.row-fluid .span5 {
  width: 40.425531911%;
}
.row-fluid .span4 {
  width: 31.914893614%;
}
.row-fluid .span3 {
  width: 23.404255317%;
}
.row-fluid .span2 {
  width: 14.89361702%;
}
.row-fluid .span1 {
  width: 6.382978723%;
}
@media screen and (max-width: 768px) {
  .row-fluid [class*=span] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}/* ======================================================================
 * adjust-width
====================================================================== */
.adjust-width {
  width: 95%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .adjust-width {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}@charset "UTF-8";
/* ======================================================================
 * ボタンスタイル
====================================================================== */
/* ------------------------------------------------------------
 * c-button
------------------------------------------------------------ */
.c-button {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
  min-height: 64px;
  padding: 0 55px 0 40px;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  background: linear-gradient(45deg, #2871cf, #32b4b8, #2871cf);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 200%;
  border: none;
  border-radius: 100px;
  transition: background-position 0.25s;
}
.c-button:link, .c-button:visited, .c-button:active {
  color: #fff;
}
.c-button::after {
  content: none !important;
}
.c-button > * {
  display: block;
  width: 100%;
}
.c-button svg {
  fill: #fff;
  transition: fill 0.25s;
}
.c-button:hover {
  background-position: 100% 0;
  opacity: 1;
}
.c-button em {
  margin-right: 4px;
  font-size: 1.3125em;
}
.c-button i {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 12px;
  height: 10px;
  margin: auto 0;
  background-color: currentcolor;
  -webkit-mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-r.svg") 50% 50% no-repeat;
  mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-r.svg") 50% 50% no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: inherit;
}
.c-button i.-right {
  right: 24px;
}
.c-button i.-left {
  left: 24px;
  transform: rotate(180deg);
}
.c-button i.-arrow {
  width: 12px !important;
}
.c-button.-circle-icon {
  display: inline-flex;
  padding: 0;
  color: #333;
  background: none;
  border-radius: none;
}
.c-button.-circle-icon:hover .u-icon-arrow {
  transform: scale(1.1);
}
.c-button.-circle-icon:hover span {
  background-position: left bottom;
  background-size: 100% 1px;
}
.c-button.-circle-icon i {
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.c-button.-circle-icon i.u-icon-arrow {
  flex: 0 0 auto;
  -webkit-mask: none;
  mask: none;
  transition: transform 0.3s ease;
}
.c-button.-circle-icon span {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: #333;
  background-image: linear-gradient(90deg, currentcolor, currentcolor);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  transition: background-size 0.6s;
}
@media screen and (max-width: 768px) {
  .c-button {
    min-height: 60px;
    font-size: 1.5rem;
  }
  .c-button i.-right {
    right: 10px;
  }
  .c-button i.-left {
    left: 10px;
  }
}/* ======================================================================
 * hs form
====================================================================== */
form fieldset {
  max-width: 100% !important;
}
@media screen and (min-width: 769px) {
  form fieldset {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
}
form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  form .form-columns-2 .hs-form-field {
    width: 48% !important;
  }
  form .form-columns-2:last-child {
    margin-left: 4%;
  }
}
@media screen and (max-width: 768px) {
  form .form-columns-2 .hs-form-field {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
  }
}
form .hs-form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}
form .hs-form-field .input {
  margin-right: 0 !important;
}
form .hs-form-field .hs-field-desc {
  order: 2;
  margin-top: 4px;
}
form .form-columns-0 .hs-richtext {
  margin-bottom: 2em;
}
form .hs-richtext {
  margin-bottom: 0.5em;
}
form .hs-richtext img {
  max-width: 100% !important;
  height: auto;
}
form .inputs-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
form .inputs-list li {
  display: block;
}
form .hs-form-required {
  color: #2871cf;
}
form .hs-error-msg,
form .hs-error-msgs {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f00 !important;
}
form .hs-error-msg li,
form .hs-error-msgs li {
  margin: 4px 0 0;
}
form .hs_error_rollup {
  margin: 3em auto -2em;
  text-align: center;
}
form .hs_error_rollup .inputs-list li {
  margin: 0;
}
form .hs-field-desc {
  font-size: 1.2rem;
}
form select,
form textarea, form input[type=text], form input[type=email], form input[type=password], form input[type=tel], form input[type=number], form input[type=file], form input[type=search], form input[type=date] {
  width: 100% !important;
  min-height: 48px;
  padding: 12px 1em 14px;
  background-color: #ffffff;
  border: 1px solid #b8dcfc;
  border-radius: 4px;
  outline: none;
}
form select::placeholder,
form textarea::placeholder, form input[type=text]::placeholder, form input[type=email]::placeholder, form input[type=password]::placeholder, form input[type=tel]::placeholder, form input[type=number]::placeholder, form input[type=file]::placeholder, form input[type=search]::placeholder, form input[type=date]::placeholder {
  color: #a8a8a8;
}
form select:focus,
form textarea:focus, form input[type=text]:focus, form input[type=email]:focus, form input[type=password]:focus, form input[type=tel]:focus, form input[type=number]:focus, form input[type=file]:focus, form input[type=search]:focus, form input[type=date]:focus {
  border-color: #2871cf;
}
form select:focus::placeholder,
form textarea:focus::placeholder, form input[type=text]:focus::placeholder, form input[type=email]:focus::placeholder, form input[type=password]:focus::placeholder, form input[type=tel]:focus::placeholder, form input[type=number]:focus::placeholder, form input[type=file]:focus::placeholder, form input[type=search]:focus::placeholder, form input[type=date]:focus::placeholder {
  color: transparent;
}
form select.error,
form textarea.error, form input.error[type=text], form input.error[type=email], form input.error[type=password], form input.error[type=tel], form input.error[type=number], form input.error[type=file], form input.error[type=search], form input.error[type=date] {
  border-color: #ff0000;
}
form select {
  position: relative;
  padding-right: 40px;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/icon-select-arrow.svg") right 19px top 50%/12px auto no-repeat #fff;
}
form select::-ms-expand {
  display: none;
}
form textarea {
  display: block;
  resize: vertical;
}
form input[type=file] {
  padding: initial;
  cursor: pointer;
  background-color: transparent;
  border: initial;
}
form .fn-date-picker .pika-button {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
form .fn-date-picker .pika-button:hover, form .fn-date-picker .pika-button:focus {
  color: #fff;
  background: #000 !important;
  border-radius: 0 !important;
}
form .fn-date-picker .is-today .pika-button {
  color: #000;
}
form .fn-date-picker .is-selected .pika-button {
  background: #000;
  border-radius: 0 !important;
  box-shadow: none;
}
form input[type=checkbox] {
  display: none;
}
form input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 3.2rem;
  margin: 0 !important;
  cursor: pointer;
}
form input[type=checkbox] + span::before, form input[type=checkbox] + span::after {
  position: absolute;
  box-sizing: border-box;
  display: block;
  content: "";
}
form input[type=checkbox] + span::before {
  top: 0.3rem;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: #fff;
  border: 1px solid #b8dcfc;
  border-radius: 4px;
}
form input[type=checkbox] + span::after {
  top: 10px;
  left: 4px;
  width: 1.6rem;
  height: 1.1rem;
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/icon-check.svg") 50% 50% no-repeat;
  opacity: 0;
}
form input[type=checkbox]:checked + span::after {
  opacity: 1;
}
form input[type=radio] {
  display: none;
}
form input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 4rem;
  cursor: pointer;
}
form input[type=radio] + span::before, form input[type=radio] + span::after {
  position: absolute;
  box-sizing: border-box;
  display: block;
  content: "";
  border-radius: 50%;
}
form input[type=radio] + span::before {
  top: 0;
  left: 0;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #fff;
  border: 1px solid #b8dcfc;
}
form input[type=radio] + span::after {
  top: 0.8rem;
  left: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
  background: #2871cf;
  opacity: 0;
}
form input[type=radio]:checked + span::after {
  opacity: 1;
}
form .legal-consent-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 30px;
}
form .legal-consent-container .hs-form-field,
form .legal-consent-container label {
  margin-bottom: 0;
}
form .legal-consent-container a {
  color: #2871cf;
}
form .legal-consent-container a:hover {
  text-decoration: none;
  opacity: 1;
}
form .grecaptcha-badge {
  margin: 30px auto;
}
form .hs-submit {
  width: 90%;
  max-width: 280px;
  margin: 6rem auto 0;
}
form .actions {
  position: relative;
}
form .actions::after {
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 12px;
  height: 10px;
  margin: auto 0;
  pointer-events: none;
  content: "";
  background-color: #fff;
  -webkit-mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-r.svg") 50% 50% no-repeat;
  mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-r.svg") 50% 50% no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
form input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 0 55px 0 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: linear-gradient(45deg, #2871cf, #32b4b8, #2871cf);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 200%;
  border: none;
  border-radius: 100px;
  outline: none;
  transition: background-position 0.25s;
}
form input[type=submit]:hover {
  background-position: 100% 0;
}
form .submitted-message {
  text-align: center;
}
@media screen and (min-width: 769px) {
  form .hs-outside_japan {
    padding-bottom: 4px;
    margin-top: auto;
  }
}

.form-title {
  margin: 0;
}

.widget-type-form form label {
  margin-bottom: 3px;
  color: #333;
  letter-spacing: 0.04em;
}
.widget-type-form form .hs-error-msg,
.widget-type-form form .hs-error-msgs {
  font-weight: 300;
}
.widget-type-form form .hs-main-font-element {
  font-weight: 300;
  color: #f00;
}
.widget-type-form form .hs-field-desc {
  font-weight: 300;
  color: #333030;
  letter-spacing: 0.04em;
}
.widget-type-form form input::placeholder {
  letter-spacing: 0.04em;
}
.widget-type-form form .hs-fieldtype-textarea textarea {
  height: 12.4rem;
}
.widget-type-form form input[type=text], .widget-type-form form input[type=email], .widget-type-form form input[type=password], .widget-type-form form input[type=tel], .widget-type-form form input[type=number], .widget-type-form form input[type=file], .widget-type-form form input[type=search], .widget-type-form form input[type=date] {
  height: 48px;
  padding: 10px 1em;
  line-height: 1.75;
}
.widget-type-form form .legal-consent-container {
  padding-top: 0;
}
.widget-type-form form .legal-consent-container a {
  text-decoration: underline;
}
.widget-type-form form .hs-submit {
  margin-top: 5.2rem;
}
.widget-type-form form .actions::after {
  display: none;
}
.widget-type-form form input[type=submit] {
  padding: 0 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .widget-type-form form input[type=submit] {
    font-size: 2.2rem;
  }
}@charset "UTF-8";
/* ======================================================================
 * Header
====================================================================== */
/* ------------------------------------------------------------
 * 管理画面用 css
------------------------------------------------------------ */
.-is-in-editor .c-header {
  position: relative;
}

/* ------------------------------------------------------------
 * header
------------------------------------------------------------ */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 70px;
  padding: 0 0 0 40px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}
@media screen and (max-width: 1280px) {
  .c-header {
    padding: 0 0 0 20px;
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  .c-header {
    height: 60px;
    padding: 0 20px;
    font-size: 1.6rem;
  }
}
.c-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.c-header .logo {
  flex: 0 0 auto;
  width: 261px;
}
@media screen and (max-width: 1280px) {
  .c-header .logo {
    width: 18vw;
  }
}
@media screen and (max-width: 768px) {
  .c-header .logo {
    width: 175px;
  }
}
.c-header .logo img {
  display: block;
}
.c-header .site-name {
  margin: 0 auto -4px 1.7em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 1280px) {
  .c-header .site-name {
    font-size: 0.75em;
  }
}
@media screen and (max-width: 768px) {
  .c-header .site-name {
    margin-left: 2em;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 360px) {
  .c-header .site-name {
    font-size: clamp(0.625rem, 0.536rem + 0.45vw, 0.75rem);
  }
}
@media screen and (min-width: 769px) {
  .c-header .toggle-btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-header .toggle-btn {
    position: relative;
    width: 35px;
    height: 100%;
    background: transparent;
    border: none;
  }
  .c-header .toggle-btn::before, .c-header .toggle-btn::after {
    position: absolute;
    inset: 0;
    width: 35px;
    height: 2px;
    margin: auto;
    content: "";
    background-color: #2871cf;
    border: none;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  .c-header .toggle-btn::before {
    top: -6px;
  }
  .c-header .toggle-btn::after {
    top: 6px;
  }
  .c-header .toggle-btn.-js-opened::before {
    top: 0;
    width: 24px;
    transform: rotate(45deg);
  }
  .c-header .toggle-btn.-js-opened::after {
    top: 0;
    width: 24px;
    transform: rotate(-45deg);
  }
}
.c-header .gnav {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .c-header .gnav {
    position: absolute;
    top: 60px;
    left: 100%;
    display: block;
    width: 100%;
    height: calc(100dvh - 60px);
    padding: 10px 20px 120px;
    overflow-y: auto;
    background: #fff;
    transition: left 0.3s ease-in-out;
  }
  .c-header .gnav.-js-opened {
    left: 0;
  }
}
.c-header .gnav ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.c-header .gnav ul li {
  font-weight: 500;
}
.c-header .gnav ul li a {
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-header .gnav ul li a {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .c-header .gnav ul li.hs-item-has-children::before {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: calc(100vh - 70px);
    pointer-events: none;
    visibility: hidden;
    content: "";
    background: #000;
    opacity: 0;
    transition: opacity 0.4s ease-in, visibility 0.4s ease-in;
  }
  .c-header .gnav ul li.hs-item-has-children > ul {
    position: absolute;
    top: 100%;
    z-index: -1;
    display: block;
    width: 256px;
    padding-top: 15px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
  }
  .c-header .gnav ul li.hs-item-has-children > ul::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% - 15px);
    content: "";
    background: #fff;
    border-radius: 8px;
  }
  .c-header .gnav ul li.hs-item-has-children > ul li {
    display: block;
  }
  .c-header .gnav ul li.hs-item-has-children > ul li:not(:last-child) {
    position: relative;
  }
  .c-header .gnav ul li.hs-item-has-children > ul li:not(:last-child)::after {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 50px);
    height: 1px;
    margin: auto;
    content: "";
    background-color: #d6d6d6;
  }
  .c-header .gnav ul li.hs-item-has-children > ul li:first-child::after {
    left: 0;
    width: 100%;
  }
  .c-header .gnav ul li.hs-item-has-children > ul li a {
    display: block;
    padding: 20px 60px 20px 20px;
    background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-r-blue.svg") right 30px top 50% no-repeat;
  }
  .c-header .gnav ul li.hs-item-has-children:hover::before {
    visibility: visible;
    opacity: 0.2;
  }
  .c-header .gnav ul li.hs-item-has-children:hover > ul {
    z-index: inherit;
    pointer-events: all;
    visibility: visible;
    opacity: 1;
  }
  .c-header .gnav ul li.hs-item-has-children > a {
    font-size: 0.875em;
  }
  .c-header .gnav ul li.hs-item-has-children > a::after {
    position: relative;
    top: 0;
    display: inline-block;
    width: 1.15em;
    height: 1em;
    content: "";
    background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-b.svg") 100% 50% no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .c-header .gnav ul li.hs-item-has-children > a::after {
    background-position: 100% 40%;
  }
}
@media screen and (max-width: 768px) {
  .c-header .gnav ul li:not(.hs-item-has-children) > a {
    position: relative;
  }
  .c-header .gnav ul li:not(.hs-item-has-children) > a::after {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 10px;
    height: 8px;
    margin: auto;
    content: "";
    background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-r-blue.svg") 100% 50%/contain no-repeat;
  }
  .c-header .gnav ul li.hs-item-has-children {
    position: relative;
  }
  .c-header .gnav ul li.hs-item-has-children > a {
    pointer-events: none;
  }
  .c-header .gnav ul li.hs-item-has-children > a::before, .c-header .gnav ul li.hs-item-has-children > a::after {
    position: absolute;
    top: 23px;
    right: 10px;
    bottom: 0;
    width: 14px;
    height: 1px;
    content: "";
    background: #2871cf;
    transition: transform 0.3s ease;
  }
  .c-header .gnav ul li.hs-item-has-children > a::after {
    transform: rotate(90deg);
  }
  .c-header .gnav ul li.hs-item-has-children.-js-opened a::after {
    transform: rotate(0deg);
  }
  .c-header .gnav ul li.hs-item-has-children ul {
    display: none;
    padding-left: 30px;
  }
  .c-header .gnav ul li.hs-item-has-children ul a {
    font-size: 1.4rem;
    font-weight: 400;
  }
  .c-header .gnav ul li.hs-item-has-children ul a::after {
    content: none;
  }
  .c-header .gnav ul li.hs-item-has-children ul a::before {
    position: relative;
    top: 1px;
    display: inline-block;
    width: 15px;
    height: 1em;
    content: "";
    background-color: currentcolor;
    -webkit-mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-line-r.svg") 0 50% no-repeat;
    mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-line-r.svg") 0 50% no-repeat;
    -webkit-mask-size: 4px auto;
    mask-size: 4px auto;
  }
}
.c-header .gnav .main-menu {
  display: flex;
  margin-right: 40px;
}
@media screen and (min-width: 769px) {
  .c-header .gnav .main-menu > div {
    display: flex;
  }
}
@media screen and (max-width: 1280px) {
  .c-header .gnav .main-menu {
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-header .gnav .main-menu {
    display: block;
    margin: 0 0 36px;
  }
}
.c-header .gnav .main-menu span {
  display: block;
  height: 100%;
}
.c-header .gnav .main-menu .hs-menu-wrapper {
  display: block;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .c-header .gnav .main-menu .hs-menu-wrapper > ul {
    display: flex;
    gap: 2em;
    justify-content: space-between;
    height: 100%;
  }
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .c-header .gnav .main-menu .hs-menu-wrapper > ul {
    gap: 1em;
  }
}
.c-header .gnav .main-menu .hs-menu-wrapper > ul > li {
  position: relative;
  display: flex;
  flex: 0 1 auto;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    content: "";
    background-color: #2871cf;
    border-radius: 2px;
    transition: 0.3s ease;
    transform: scale(0, 1);
  }
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li:hover::after {
    transform: scale(1, 1);
  }
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li > a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li {
    display: block;
  }
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li:not(:last-child) {
    margin-bottom: 25px;
  }
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li > a {
    padding: 10px 0;
    border-bottom: 1px solid #b8dcfc;
  }
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li.hs-item-has-children li:not(:last-child) {
    margin-bottom: 15px;
  }
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li.hs-item-has-children li a::before {
    background-color: #2871cf;
  }
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li.hs-item-has-children ul {
    padding-top: 15px;
  }
}
.c-header .gnav .main-menu .hs-menu-wrapper > ul > li.hs-item-has-children {
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .c-header .gnav .main-menu .hs-menu-wrapper > ul > li.hs-item-has-children::after {
    width: calc(100% - 1.15em);
  }
}
@media screen and (min-width: 769px) {
  .c-header .gnav .button-menu ul {
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  .c-header .gnav .button-menu ul li.hs-menu-depth-1:not(:first-child) {
    border-left: 1px solid #fff;
  }
  .c-header .gnav .button-menu ul li.hs-menu-depth-1 > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.86em;
    max-width: 110px;
    height: 70px;
    font-size: 0.8125em;
    color: #fff;
    text-decoration: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .c-header .gnav .button-menu ul li.hs-menu-depth-1 > a {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 15px 30px 15px 10px;
    border-radius: 8px;
  }
}
@media screen and (min-width: 769px) {
  .c-header .gnav .button-menu ul li.hs-item-has-children > a::after {
    top: 0;
    background-image: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-b-w.svg");
    background-position: 100% 40%;
  }
}
@media screen and (max-width: 768px) {
  .c-header .gnav .button-menu ul li:not(:last-child) {
    margin-bottom: 1px;
  }
  .c-header .gnav .button-menu ul li a {
    padding: 15px 10px;
    color: #fff;
  }
  .c-header .gnav .button-menu ul li:not(.hs-item-has-children) > a::after {
    background-image: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-r.svg");
  }
  .c-header .gnav .button-menu ul li.hs-item-has-children > a::before,
  .c-header .gnav .button-menu ul li.hs-item-has-children > a::after {
    top: 28px;
    background-color: #fff;
  }
  .c-header .gnav .button-menu ul li.hs-item-has-children ul {
    padding: 0 0 15px 20px;
  }
  .c-header .gnav .button-menu ul li.hs-item-has-children ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  .c-header .gnav .button-menu ul li.hs-item-has-children ul a {
    padding: 0;
    font-weight: 400;
  }
}
.c-header .gnav .button-menu .hs-menu-wrapper > ul > li:first-child {
  background-color: #6598dc;
}
.c-header .gnav .button-menu .hs-menu-wrapper > ul > li:nth-child(2) {
  background-color: #57a9d1;
}
.c-header .gnav .button-menu .hs-menu-wrapper > ul > li:nth-child(3) {
  background-color: #65c3cc;
}
@media screen and (max-width: 768px) {
  .c-header .gnav .button-menu .hs-menu-wrapper > ul > li {
    border-radius: 8px;
  }
}

/* ------------------------------------------------------------
 * headerSP時調整
------------------------------------------------------------ */
.c-body {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-body {
    padding-top: 60px;
  }
}/* ======================================================================
 * footer
====================================================================== */
.c-footer {
  padding: 80px 20px 68px;
  color: #fff;
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/bg-footer-shape.png") 50% 50%/100% auto no-repeat #254a99;
}
@media screen and (max-width: 768px) {
  .c-footer {
    padding: 80px 20px;
    background-image: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/bg-footer-shape-sp.png");
    background-position: 0 0;
  }
}
.c-footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.c-footer a {
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(90deg, currentcolor, currentcolor);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  transition: background-size 0.6s;
}
.c-footer a:hover {
  background-position: left bottom;
  background-size: 100% 1px;
  opacity: 1;
}
.c-footer a[target=_blank]::after {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 8px;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/icon-blank.svg") 50% 50% no-repeat;
  mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/icon-blank.svg") 50% 50% no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.c-footer a[href="javascript:void(0);"] {
  pointer-events: none;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #2871cf;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid currentcolor;
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.pagetop:hover {
  color: #fff;
  background-color: #2871cf;
}
.pagetop::after {
  display: block;
  width: 12px;
  height: 8px;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-t.svg") 50% 50% no-repeat;
  mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-t.svg") 50% 50% no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  padding: 0 0 60px;
  margin: 0 auto 30px;
  border-bottom: 1px solid #4b75ce;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.footer-inner .catch {
  width: 100%;
  margin-bottom: 80px;
  font-size: 4.2rem;
  font-weight: 300;
  line-height: 1.36;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-inner .catch {
    font-size: 3rem;
  }
}
.footer-inner .footer-left {
  flex: 0 0 auto;
}
@media screen and (min-width: 1200px) {
  .footer-inner .footer-left {
    white-space: nowrap;
  }
}
@media screen and (min-width: 769px) {
  .footer-inner .footer-left {
    width: 36%;
    padding-right: 20px;
  }
}
.footer-inner .footer-left .logo {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer-inner .footer-left .logo {
    margin-bottom: 25px;
  }
}
.footer-inner .footer-left .logo a {
  padding: 0;
  background: none;
}
.footer-inner .footer-left .logo a::after {
  content: none;
}
.footer-inner .footer-left .address {
  font-size: 1.4rem;
  line-height: 1.86;
}
@media screen and (max-width: 768px) {
  .footer-inner .footer-left .address {
    font-size: 1.2rem;
  }
}
.footer-inner .footer-left .address p {
  margin: 0;
}
.footer-inner .footer-left .address strong {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer-inner .footer-left .address strong {
    font-size: 1.4rem;
  }
}
.footer-inner .footer-right {
  flex: 1;
}
.footer-inner .footer-right a {
  color: #fff;
  text-decoration: none;
}

.footer-nav .hs-menu-wrapper > ul {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(5, auto);
  gap: 20px 38px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .footer-nav .hs-menu-wrapper > ul {
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(5, auto);
    gap: 20px;
  }
}
.footer-nav .hs-menu-wrapper > ul > li:first-child {
  grid-row: 1/4;
  grid-column: 1/2;
}
@media screen and (max-width: 1200px) {
  .footer-nav .hs-menu-wrapper > ul > li:first-child {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.footer-nav .hs-menu-wrapper > ul > li:nth-child(2) {
  grid-row: 1/4;
  grid-column: 2/3;
}
@media screen and (max-width: 1200px) {
  .footer-nav .hs-menu-wrapper > ul > li:nth-child(2) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.footer-nav .hs-menu-wrapper > ul > li:nth-child(3) {
  grid-row: 1/4;
  grid-column: 3/4;
}
@media screen and (max-width: 1200px) {
  .footer-nav .hs-menu-wrapper > ul > li:nth-child(3) {
    grid-row: 1/2;
    grid-column: 3/4;
  }
}
.footer-nav .hs-menu-wrapper > ul > li:nth-child(4) {
  grid-row: 1/4;
  grid-column: 4/5;
}
@media screen and (max-width: 1200px) {
  .footer-nav .hs-menu-wrapper > ul > li:nth-child(4) {
    grid-row: 2/4;
    grid-column: 1/2;
  }
}
.footer-nav .hs-menu-wrapper > ul > li:nth-child(5) {
  grid-row: 1/2;
  grid-column: 5/6;
}
@media screen and (max-width: 1200px) {
  .footer-nav .hs-menu-wrapper > ul > li:nth-child(5) {
    grid-row: 2/4;
    grid-column: 2/3;
  }
}
.footer-nav .hs-menu-wrapper > ul > li:nth-child(6) {
  grid-row: 2/3;
  grid-column: 5/6;
}
@media screen and (max-width: 1200px) {
  .footer-nav .hs-menu-wrapper > ul > li:nth-child(6) {
    grid-row: 2/3;
    grid-column: 3/4;
  }
}
.footer-nav .hs-menu-wrapper > ul > li:nth-child(7) {
  grid-row: 3/4;
  grid-column: 5/6;
}
@media screen and (max-width: 1200px) {
  .footer-nav .hs-menu-wrapper > ul > li:nth-child(7) {
    grid-row: 3/4;
    grid-column: 3/4;
  }
}
.footer-nav .hs-menu-wrapper > ul > li > a {
  font-weight: 500;
}
.footer-nav .hs-menu-wrapper .hs-menu-children-wrapper {
  padding-left: 14px;
  margin-top: 10px;
}
.footer-nav .hs-menu-wrapper .hs-menu-children-wrapper li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-nav .hs-menu-wrapper .hs-menu-children-wrapper a::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 4px;
  height: 8px;
  margin-right: 8px;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-line-r.svg") 50% 50% no-repeat;
  mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-line-r.svg") 50% 50% no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column-reverse;
  }
}
.footer-bottom .copyright {
  font-size: 1.2rem;
  color: #7ea4f5;
}
@media screen and (max-width: 768px) {
  .footer-bottom .copyright {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-bottom .sub-menu {
    margin-bottom: 20px;
  }
}
.footer-bottom .sub-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer-bottom .sub-menu ul {
    justify-content: flex-start;
  }
}@charset "UTF-8";
/* ======================================================================
 * カスタムセクション
====================================================================== */
/* ------------------------------------------------------------
 * グラデーションセクション
------------------------------------------------------------ */
.gradation-section {
  background: linear-gradient(45deg, #2871cf, #00c4d2);
}

/* ------------------------------------------------------------
* 採用実績セクション
------------------------------------------------------------ */
.results-section {
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/new-graduate/sec-bg-image.jpg") 100% 0 no-repeat;
}
@media screen and (max-width: 768px) {
  .results-section {
    background-image: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/new-graduate/sec-bg-image-sp.jpg");
    background-size: 100% auto;
  }
}

/* ------------------------------------------------------------
  * 固定背景セクション
------------------------------------------------------------ */
.fixbg-section {
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/bg-shape.jpg") 0 50% no-repeat;
  background-attachment: fixed;
}
@media screen and (min-width: 769px) {
  .fixbg-section {
    background-size: 100% auto;
  }
}
.fixbg-section.-gray {
  background-color: #f7f8fa;
  background-image: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/bg-shape-gray.jpg");
}

/* ------------------------------------------------------------
  * ホーム キャリア セクション
------------------------------------------------------------ */
.home-career-section {
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/home/bg-career.jpg") 100% 0 no-repeat #f0f8ff;
}
@media screen and (max-width: 768px) {
  .home-career-section {
    background-image: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/home/bg-career-sp.jpg");
    background-size: 100% auto;
  }
}

/* ------------------------------------------------------------
  * ホーム サポート セクション
------------------------------------------------------------ */
.home-support-section {
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/home/bg-support.jpg") 0 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .home-support-section {
    background-image: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/home/bg-support-sp.jpg");
    background-size: 100% auto;
  }
}

/* ------------------------------------------------------------
  * 仕事を知る 仕事紹介 セクション
------------------------------------------------------------ */
.about-jobs-section {
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/about/bg-jobs.jpg") 100% 0 no-repeat;
}
@media screen and (max-width: 768px) {
  .about-jobs-section {
    background-image: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/about/bg-jobs-sp.jpg");
    background-size: 100% auto;
  }
}

/* ------------------------------------------------------------
  * 人財育成 研修制度 セクション
------------------------------------------------------------ */
.training-section {
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/career-development/bg-training.jpg") 100% 0 no-repeat #f7f8fa;
}
@media screen and (max-width: 768px) {
  .training-section {
    background-image: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/career-development/bg-training-sp.jpg");
    background-size: 100% auto;
  }
}

/* ------------------------------------------------------------
  * データで知る私たち メッセージ セクション
------------------------------------------------------------ */
@media screen and (min-width: 769px) {
  .enquete-message-section {
    background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/enquete/bg-message.jpg") 100% 0 no-repeat;
  }
}/* ======================================================================
 * heading
====================================================================== */
.c-heading2 {
  position: relative;
  padding-left: 32px;
  margin: 0 0 40px;
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .c-heading2 {
    padding-left: 28px;
    font-size: 3.2rem;
  }
}
.c-heading2::before {
  position: absolute;
  top: 25px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background-color: #2871cf;
  border: 7px solid #e0effc;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-heading2::before {
    top: 22px;
    width: 6px;
    height: 6px;
    border-width: 6px;
  }
}

.c-heading3 {
  position: relative;
  padding-bottom: 21px;
  font-size: 2.4rem;
  line-height: 1.58;
  color: #254a99;
}
@media screen and (max-width: 768px) {
  .c-heading3 {
    font-size: 2rem;
  }
}
.c-heading3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  content: "";
  background: currentcolor;
}@charset "UTF-8";
/* ======================================================================
 * カードリスト
====================================================================== */
.c-card-item a {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-card-item a {
    padding-left: 20px;
  }
}
.c-card-item a:hover {
  opacity: 1;
}
.c-card-item a:hover .image img {
  transform: scale(1.1);
}
.c-card-item a:hover .u-icon-arrow {
  color: #2871cf;
  background: #fff;
  border-color: #fff;
  transform: scale(1.1);
}
.c-card-item a .image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.c-card-item a .image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to top, #2871cf, transparent);
  opacity: 0.85;
}
.c-card-item a .image img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.c-card-item a .text {
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-card-item a .text.-has-sub .title {
  margin-bottom: 25px;
}
.c-card-item a .text .title {
  margin: 0 0 35px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.86;
  color: #333333;
}
.c-card-item a .text .title > span {
  display: inline;
  padding: 0 10px 2px;
  background: linear-gradient(0deg, #fff 0, #fff);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.c-card-item a .text .department {
  padding: 0 65px 20px 50px;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-card-item a .text .department {
    padding-left: 40px;
  }
}
.c-card-item a .u-icon-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid currentcolor;
}
.c-card-item.-link a {
  padding-left: 0;
}
.c-card-item.-link a .image::after {
  background: linear-gradient(0deg, #2871cf, transparent 50%);
}
.c-card-item.-link a .text {
  bottom: 30px;
  width: 100%;
  padding-right: 72px;
}
@media screen and (max-width: 768px) {
  .c-card-item.-link a .text {
    bottom: 20px;
  }
}
.c-card-item.-link a .text .title {
  position: relative;
  padding-left: 60px;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-card-item.-link a .text .title {
    padding-left: 35px;
    font-size: 2.2rem;
  }
}
.c-card-item.-link a .text .title::before {
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 40px;
  height: 1px;
  content: "";
  background-color: currentcolor;
}
@media screen and (max-width: 768px) {
  .c-card-item.-link a .text .title::before {
    width: 25px;
  }
}
.c-card-item.-link a .u-icon-arrow {
  right: 30px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-card-item.-link a .u-icon-arrow {
    right: 20px;
  }
}
.c-card-item:not(.-link) a .image::after {
  top: auto;
  bottom: 0;
  height: 60%;
}
.c-card-item:not(.-link) a .text .title:last-child {
  margin-bottom: 65px;
}

/* Safari */
_::-webkit-full-page-media,
_:future,
:root .c-card-item a .text .title > span {
  padding: 4px 10px 3px;
}/* ======================================================================
 * pagination
====================================================================== */
.c-pagination .inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.c-pagination .inner ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0;
}
.c-pagination .inner a,
.c-pagination .inner .number-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 3px 0 0 2px;
  font-style: normal;
  color: #2871cf;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.3s ease;
}
.c-pagination .inner a:hover,
.c-pagination .inner .number-link span:hover {
  color: #fff;
  background-color: #2871cf;
  opacity: 1;
}
.c-pagination .inner .number-link.-current span {
  color: #fff;
  background-color: #2871cf;
}
.c-pagination .inner a.prev-link::before, .c-pagination .inner a.next-link::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 6px;
  height: 12px;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-line-r.svg") 50% 50% no-repeat;
  mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-line-r.svg") 50% 50% no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.c-pagination .inner a.prev-link::before {
  transform: rotate(180deg);
}@charset "UTF-8";
/* ------------------------------------------------------------
 * responsive
------------------------------------------------------------ */
@media screen and (min-width: 769px) {
  /* PC/SP表示切替 */
  .u-sp-only {
    display: none;
  }
  /* href="tel:〜"の場合、PC/タブレットではリンク判定無しを前提とする */
  a[href^="tel:"] {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 768px) {
  /* PC/SP表示切替 */
  .u-pc-only {
    display: none;
  }
}
/* ------------------------------------------------------------
 * margin
 * カスタムモジュールの共通余白設定用
------------------------------------------------------------ */
.u-mt-none {
  margin-top: 0;
}
.u-mt-small {
  margin-top: 30px;
}
.u-mt-default {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .u-mt-default {
    margin-top: 32px;
  }
}
.u-mt-large {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .u-mt-large {
    margin-top: 80px;
  }
}

.u-mb-none {
  margin-bottom: 0;
}
.u-mb-small {
  margin-bottom: 30px;
}
.u-mb-default {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .u-mb-default {
    margin-bottom: 32px;
  }
}
.u-mb-large {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .u-mb-large {
    margin-bottom: 80px;
  }
}

/* ------------------------------------------------------------
 * 画像
------------------------------------------------------------ */
.u-ofi {
  font-family: "object-fit: cover; object-position: 50% 50%;";
  object-fit: cover;
  object-position: 50% 50%;
}
.u-ofi.-contain {
  font-family: "object-fit: contain; object-position: 50% 50%;";
  object-fit: contain;
}

/* ------------------------------------------------------------
 * サイト内共通 js class
------------------------------------------------------------ */
.-js-slide-toggle-trig,
[data-tab-target],
[data-tab-switch] {
  -webkit-user-select: none;
  user-select: none;
}

.u-tab-switch-target,
.-js-tab-target-hide,
.-js-tab-switch-hide {
  display: none;
}

.-js-tab-target-show,
.-js-tab-switch-show {
  display: block;
  animation: fade-in 0.25s ease-out;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u-icon-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.u-icon-arrow::after {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 8px;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-r.svg") 50% 50% no-repeat;
  mask: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/common/arrow-r.svg") 50% 50% no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: inherit;
}
.u-icon-arrow.-white {
  color: #fff;
  background: linear-gradient(45deg, #2871cf, #00c4d2);
}

.c-container:not(.is-in-editor) .u-fadein {
  visibility: hidden;
  opacity: 0;
  transition-timing-function: ease-in-out;
  transition-duration: 0.8s;
  transition-property: opacity, transform, visibility;
  transform: translateY(20px);
}
.c-container:not(.is-in-editor) .u-fadein.-is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.u-datalist {
  margin: 0;
}
.u-datalist dt {
  margin-bottom: 1.3rem;
  font-weight: 600;
}
.u-datalist dd {
  margin: 0;
  font-size: 1.4rem;
}
.u-datalist dd:not(:last-child) {
  margin-bottom: 24px;
}

.u-is-editor {
  padding: 20px;
  margin: 40px 0 20px !important;
  text-align: center;
  cursor: pointer;
  background: rgba(127, 209, 222, 0.3);
  border: 2px solid #7fd1de;
}

/* ------------------------------------------------------------
  * ホームタイトル
------------------------------------------------------------ */
@media screen and (min-width: 769px) {
  .u-hme-title {
    max-width: 520px;
  }
}
.u-hme-title .main {
  position: relative;
}
.u-hme-title .heading {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.u-hme-title .heading .ja {
  position: relative;
  padding-left: 20px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.u-hme-title .heading .ja::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 14px;
  height: 1px;
  content: "";
  background-color: currentcolor;
}
@media screen and (min-width: 769px) {
  .u-hme-title .button {
    position: absolute;
    right: 0;
    bottom: -10px;
  }
}
@media screen and (max-width: 768px) {
  .u-hme-title .button {
    margin-top: 30px;
  }
}
.u-hme-title .lead {
  width: 100%;
  margin-top: 50px;
  line-height: 2.22;
}
@media screen and (max-width: 768px) {
  .u-hme-title .lead {
    margin-top: 60px;
    line-height: 1.875;
  }
}

.u-points-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 0 48px;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .u-points-columns ul {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 768px) {
  .u-points-columns ul:not(:first-child) {
    margin-top: 28px;
  }
}

.u-points-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
.u-points-list li {
  position: relative;
  padding-left: 21px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.67;
}
.u-points-list li:not(:last-child) {
  margin-bottom: 28px;
}
.u-points-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  content: "";
  border-radius: 10px;
}
.u-points-list li:nth-child(odd)::before {
  background: #32b4b8;
}
.u-points-list li:nth-child(even)::before {
  background: #2871cf;
}
@media screen and (max-width: 768px) {
  .u-points-list.-sp-color-reverse li:nth-child(even)::before {
    background: #32b4b8;
  }
  .u-points-list.-sp-color-reverse li:nth-child(odd)::before {
    background: #2871cf;
  }
}

.u-ranking-list {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 12px 48px;
}
@media screen and (max-width: 768px) {
  .u-ranking-list {
    flex-direction: column;
  }
}
.u-ranking-list li {
  display: flex;
  align-items: flex-end;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.3;
  color: #254a99;
}
@media screen and (max-width: 1040px) {
  .u-ranking-list li {
    font-size: min(2.4vw, 3rem);
  }
}
@media screen and (max-width: 768px) {
  .u-ranking-list li {
    padding-bottom: 4px;
    font-size: min(5.2vw, 2.4rem);
  }
}
.u-ranking-list li:first-child .crown {
  padding-left: 6px;
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/enquete/icon-ranking01.png") 0 0/36px auto no-repeat;
}
@media screen and (max-width: 768px) {
  .u-ranking-list li:first-child .crown {
    padding-left: 0;
    background-size: 30px auto;
  }
}
.u-ranking-list li:first-child .crown strong {
  color: #d8ad5e;
}
.u-ranking-list li:nth-child(2) .crown {
  padding-left: 2px;
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/enquete/icon-ranking02.png") 0 0/36px auto no-repeat;
}
@media screen and (max-width: 768px) {
  .u-ranking-list li:nth-child(2) .crown {
    padding-left: 0;
    background-size: 30px auto;
  }
}
.u-ranking-list li:nth-child(2) .crown strong {
  color: #b5b2b2;
}
.u-ranking-list li:nth-child(3) .crown {
  padding-left: 2px;
  background: url("https://21173214.fs1.hubspotusercontent-na2.net/hubfs/21173214/Nittsu-necl-recruit2024/assets/images/enquete/icon-ranking03.png") 0 0/36px auto no-repeat;
}
@media screen and (max-width: 768px) {
  .u-ranking-list li:nth-child(3) .crown {
    padding-left: 0;
    background-size: 30px auto;
  }
}
.u-ranking-list li:nth-child(3) .crown strong {
  color: #d59633;
}
.u-ranking-list li .crown {
  flex: 0 0 auto;
  padding-top: 28px;
  margin-right: 24px;
  font-size: 1.8rem;
  line-height: 1;
  color: #333333;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (max-width: 1040px) and (min-width: 769px) {
  .u-ranking-list li .crown {
    margin-right: 14px;
  }
}
@media screen and (max-width: 768px) {
  .u-ranking-list li .crown {
    width: 76px;
    padding-top: 21px;
    margin: 0 0 -3px;
    background-position: 4px 0 !important;
  }
}
.u-ranking-list li .crown strong {
  font-size: 5.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .u-ranking-list li .crown strong {
    display: inline-block;
    width: 36px;
    font-size: 4.6rem;
    text-align: center;
  }
}
.u-ranking-list li small {
  font-size: 0.633em;
}
@media screen and (max-width: 768px) {
  .u-ranking-list li small {
    display: inline-block;
    padding-bottom: 3px;
  }
}

@media screen and (max-width: 768px) {
  .u-bloken-table table,
  .u-bloken-table tbody,
  .u-bloken-table tr,
  .u-bloken-table th,
  .u-bloken-table td {
    display: block;
  }
}
.u-bloken-table th,
.u-bloken-table td {
  padding: 20px 0;
}
@media screen and (min-width: 769px) {
  .u-bloken-table tr:first-child th,
  .u-bloken-table tr:first-child td {
    padding-top: 0;
  }
  .u-bloken-table tr:last-child th,
  .u-bloken-table tr:last-child td {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .u-bloken-table tr:first-child th {
    padding-top: 0;
  }
  .u-bloken-table tr:last-child td {
    padding-bottom: 0;
  }
}
.u-bloken-table th {
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .u-bloken-table th {
    width: 190px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .u-bloken-table th {
    padding-bottom: 0;
    border-bottom: none !important;
  }
}