@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

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

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

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(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.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

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

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type=color i], [type=range i]) {
  border-width: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-tap-highlight-color: revert;
  cursor: revert;
  min-width: 1280px;
  color: #000;
  font-size: 62.5%;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-break: normal;
  overflow-wrap: anywhere;
}
@media (max-width: 47.9375em) {
  html {
    min-width: 375px;
  }
}

body {
  font-size: 1.6rem;
}

li {
  list-style-type: none;
}

th {
  font-weight: inherit;
}

address {
  font-style: inherit;
}

fieldset {
  border: 0;
  min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1 {
  margin: 0;
}

cite,
dfn,
em,
i,
var {
  font-style: inherit;
}

small {
  font-size: inherit;
}

a {
  color: currentColor;
  text-decoration: none;
}

button,
input,
select,
textarea {
  border: 0;
  padding: 0;
}
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

button {
  touch-action: manipulation;
}
button:not(:disabled, [aria-disabled=true]) {
  cursor: pointer;
}

[hidden][hidden] {
  display: none !important;
}

@media (max-width: 47.9375em) {
  .js-scrollable:not(.is-scrollable) {
    overflow: auto;
  }
}

.c-dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 0;
  overflow: auto;
  transition: opacity 0.4s;
}
@media (max-width: 47.9375em) {
  .c-dialog {
    height: auto;
    z-index: 1001;
  }
}

.c-dialog[aria-hidden=true] {
  display: flex;
  visibility: hidden;
  opacity: 0%;
  transition: visibility 0s 0.5s, opacity 0.5s;
  pointer-events: none;
}

.c-dialog__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
}

.c-dialog__document {
  position: relative;
  flex-shrink: 0;
  margin: auto auto 0;
  background-color: #fff;
  width: 100%;
}

.c-footer {
  padding: 45px 10px;
}

.c-footer__logo {
  width: 372px;
  margin: auto;
}
@media (max-width: 47.9375em) {
  .c-footer__logo {
    width: 81.6901408451%;
    margin-left: 4.2253521127%;
  }
}

.c-footer__copyright {
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 20px;
  font-size: 1.2rem;
}
@media (max-width: 47.9375em) {
  .c-footer__copyright {
    text-align: left;
    margin-left: 4.2253521127%;
    font-size: 0.9rem;
  }
}

.c-header {
  padding: 18px 30px;
  position: relative;
  z-index: 10;
  height: 80px;
}
@media (max-width: 47.9375em) {
  .c-header {
    height: 60px;
    padding: 17px 10px;
  }
}

.c-header__logo {
  width: 415px;
}
@media (max-width: 47.9375em) {
  .c-header__logo {
    width: 82.2535211268%;
    max-width: 292px;
  }
}
.c-header__logo a {
  display: block;
}
.c-header__logo img {
  width: 100%;
}

.c-recruit-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}
@media (max-width: 47.9375em) {
  .c-recruit-btn {
    width: 70px;
    height: 70px;
    bottom: 15px;
    right: 15px;
  }
}

.c-menu {
  width: 100%;
  top: auto;
  padding: 0;
  height: auto;
}
@media (max-width: 47.9375em) {
  .c-menu {
    height: 100%;
  }
}

@media (max-width: 47.9375em) {
  .c-menu__document {
    height: 85vh;
    overflow: auto;
  }
}

.c-menu__body {
  display: flex;
  justify-content: space-between;
  width: 1100px;
  margin: auto;
  padding: 35px 25px;
  background-color: #fff;
}
@media (max-width: 47.9375em) {
  .c-menu__body {
    width: 100%;
    flex-wrap: wrap;
    padding: 35px 120px 35px 25px;
  }
}

.c-menu__item {
  width: 272px;
  padding: 0 24px;
}
@media (max-width: 47.9375em) {
  .c-menu__item + .c-menu__item {
    margin-top: 30px;
  }
}
@media (max-width: 47.9375em) {
  .c-menu__item {
    width: 100%;
    padding: 0;
  }
}

.c-menu__logo {
  display: flex;
  align-items: center;
  height: 42px;
  justify-content: center;
}
.c-menu__logo img {
  height: var(--h);
}
@media (max-width: 47.9375em) {
  .c-menu__logo {
    justify-content: flex-start;
  }
}

.c-menu__btn {
  margin-top: 30px;
  display: block;
  border: 1px solid #0C3388;
  background-color: #0C3388;
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 17px;
  transition: background-color 0.3s;
}
@media (max-width: 47.9375em) {
  .c-menu__btn {
    margin-top: 15px;
  }
}
.c-menu__btn span {
  display: inline-block;
  padding-right: 24px;
  position: relative;
}
.c-menu__btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 12px;
  background-image: url("/recruit/assets/images/components/icon_blank_white.svg");
  background-size: 100% 100%;
  transform: translateY(-50%);
}
@media not all and (max-width: 47.9375em) {
  .c-menu__btn:hover {
    background-color: #1947AA;
  }
}
.c-menu__btn + .c-menu__btn {
  margin-top: 15px;
}

.c-menu__btn--sand {
  background-color: #93793D;
  border-color: #93793D;
}
@media not all and (max-width: 47.9375em) {
  .c-menu__btn--sand:hover {
    background-color: #B9923A;
  }
}

.c-section-heading {
  text-align: center;
}
.c-section-heading span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.4444444444;
  color: #0C3388;
  margin-top: 30px;
}
@media (max-width: 47.9375em) {
  .c-section-heading span {
    font-size: 1.6rem;
    line-height: 1.4375;
    letter-spacing: 0;
    margin-top: 20px;
  }
}
@media (max-width: 47.9375em) {
  .c-section-heading img {
    width: var(--sp-w);
  }
}

.c-section-heading--white span {
  color: #fff;
}

.c-border-heading {
  font-size: 4.2rem;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  color: #0C3388;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 47.9375em) {
  .c-border-heading {
    font-size: 2.4rem;
    line-height: 1.5833333333;
    margin-bottom: 40px;
  }
}
.c-border-heading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #0C3388;
}

@media not all and (max-width: 47.9375em) {
  .c-border-heading--tight {
    letter-spacing: -0.04em;
  }
}

.c-recruit {
  position: relative;
}
.c-recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 51, 136, 0.65);
  z-index: 2;
}

.c-recruit__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.c-recruit__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.c-recruit__container {
  position: relative;
  z-index: 3;
  padding: 80px 0 100px;
}
@media (max-width: 47.9375em) {
  .c-recruit__container {
    padding: 70px 0 90px;
  }
}

.c-recruit__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 90px;
}
@media (max-width: 47.9375em) {
  .c-recruit__list {
    margin-top: 50px;
    gap: 10px 0;
  }
}

.c-recruit__item {
  width: 272px;
  background-color: #fff;
  padding: 24px;
}
@media (max-width: 47.9375em) {
  .c-recruit__item {
    width: 100%;
  }
}

.c-recruit__logo {
  display: flex;
  align-items: center;
  height: 42px;
  justify-content: center;
}
.c-recruit__logo img {
  height: var(--h);
}

.c-recruit__btn {
  margin-top: 30px;
  display: block;
  border: 1px solid #0C3388;
  background-color: #0C3388;
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 17px;
  transition: background-color 0.3s;
}
@media (max-width: 47.9375em) {
  .c-recruit__btn {
    width: 78.7456445993%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
  }
}
.c-recruit__btn span {
  display: inline-block;
  padding-right: 24px;
  position: relative;
}
.c-recruit__btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 12px;
  background-image: url("/recruit/assets/images/components/icon_blank_white.svg");
  background-size: 100% 100%;
  transform: translateY(-50%);
}
@media not all and (max-width: 47.9375em) {
  .c-recruit__btn:hover {
    background-color: #1947AA;
  }
}
.c-recruit__btn + .c-recruit__btn {
  margin-top: 15px;
}

.c-recruit__btn--sand {
  background-color: #93793D;
  border-color: #93793D;
}
@media not all and (max-width: 47.9375em) {
  .c-recruit__btn--sand:hover {
    background-color: #B9923A;
  }
}

.c-story {
  background: linear-gradient(#e7eefc 0%, #fff 100%);
  padding: 80px 0 100px;
}
@media (max-width: 47.9375em) {
  .c-story {
    padding: 70px 0 90px;
  }
}

.c-story__list {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 70px;
}
@media (max-width: 47.9375em) {
  .c-story__list {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 60px 0;
  }
}

.c-story__item {
  width: 320px;
  height: 100%;
  display: block;
  position: relative;
}
@media (max-width: 47.9375em) {
  .c-story__item {
    width: 100%;
  }
}
@media not all and (max-width: 47.9375em) {
  .c-story__item:hover .c-story__item-heading::after {
    width: 100%;
  }
  .c-story__item:hover .c-story__item-image img {
    transform: scale(1.1);
  }
  .c-story__item:hover .c-story__item-heading span::after {
    right: 0;
  }
}

.c-story__item-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.c-story__item-image img {
  transition: transform 0.3s;
}
.c-story__item-image span {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background-color: #0C3388;
  padding: 3px 15px;
}

.c-story__item-heading {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
  margin-top: 15px;
  position: relative;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 12px;
}
@media (max-width: 47.9375em) {
  .c-story__item-heading {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.c-story__item-heading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #0C3388;
  transition: width 0.3s ease-in-out;
}
.c-story__item-heading span {
  display: block;
  padding-right: 50px;
  position: relative;
}
.c-story__item-heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 21px;
  height: 6px;
  background-image: url("/recruit/assets/images/components/icon_simple_arrow.svg");
  background-size: 100% 100%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.c-story__item-text {
  line-height: 2;
  margin-top: 27px;
}
@media (max-width: 47.9375em) {
  .c-story__item-text {
    font-size: 1.4rem;
  }
}

.c-story__btn {
  width: 280px;
  display: block;
  color: #0C3388;
  background-color: #FFFFFF;
  border: 1px solid #0C3388;
  text-align: center;
  padding: 17px;
  margin: 40px auto 0;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 47.9375em) {
  .c-story__btn {
    width: 83.5820895522%;
  }
}
.c-story__btn span {
  display: inline-block;
}
@media not all and (max-width: 47.9375em) {
  .c-story__btn:hover {
    background-color: #0C3388;
    color: #fff;
  }
}

.l-container {
  margin-right: auto;
  margin-left: auto;
  width: 1100px;
}
@media (max-width: 47.9375em) {
  .l-container {
    width: calc(100% - 40px);
  }
}

.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-block {
  display: block !important;
}

.u-d-grid {
  display: grid !important;
}

.u-d-table {
  display: table !important;
}

.u-d-table-row {
  display: table-row !important;
}

.u-d-table-cell {
  display: table-cell !important;
}

.u-d-flex {
  display: flex !important;
}

.u-d-inline-flex {
  display: inline-flex !important;
}

@media (max-width: 47.9375em) {
  .u-d-sp-none {
    display: none !important;
  }
  .u-d-sp-inline {
    display: inline !important;
  }
  .u-d-sp-inline-block {
    display: inline-block !important;
  }
  .u-d-sp-block {
    display: block !important;
  }
  .u-d-sp-grid {
    display: grid !important;
  }
  .u-d-sp-table {
    display: table !important;
  }
  .u-d-sp-table-row {
    display: table-row !important;
  }
  .u-d-sp-table-cell {
    display: table-cell !important;
  }
  .u-d-sp-flex {
    display: flex !important;
  }
  .u-d-sp-inline-flex {
    display: inline-flex !important;
  }
}
@media (max-width: 80em) {
  .u-d-lg-none {
    display: none !important;
  }
  .u-d-lg-inline {
    display: inline !important;
  }
  .u-d-lg-inline-block {
    display: inline-block !important;
  }
  .u-d-lg-block {
    display: block !important;
  }
  .u-d-lg-grid {
    display: grid !important;
  }
  .u-d-lg-table {
    display: table !important;
  }
  .u-d-lg-table-row {
    display: table-row !important;
  }
  .u-d-lg-table-cell {
    display: table-cell !important;
  }
  .u-d-lg-flex {
    display: flex !important;
  }
  .u-d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (max-width: 84.375em) {
  .u-d-xl-none {
    display: none !important;
  }
  .u-d-xl-inline {
    display: inline !important;
  }
  .u-d-xl-inline-block {
    display: inline-block !important;
  }
  .u-d-xl-block {
    display: block !important;
  }
  .u-d-xl-grid {
    display: grid !important;
  }
  .u-d-xl-table {
    display: table !important;
  }
  .u-d-xl-table-row {
    display: table-row !important;
  }
  .u-d-xl-table-cell {
    display: table-cell !important;
  }
  .u-d-xl-flex {
    display: flex !important;
  }
  .u-d-xl-inline-flex {
    display: inline-flex !important;
  }
}
.u-visually-hidden-focusable:not(:focus, :focus-within) {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  visibility: visible !important;
  opacity: 0% !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  width: 4px !important;
  height: 4px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.u-visually-hidden {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  visibility: visible !important;
  opacity: 0% !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  width: 4px !important;
  height: 4px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}