@charset "UTF-8";
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sassを使用しているので、cssファイルを直接編集しないでください。
先祖返りの原因となります。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* foundation/_reset.scss
-------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  color: inherit;
  line-height: inherit;
  vertical-align: baseline;
  background: initial;
  border: 0;
}

hgroup, menu, aside, details,
header, footer, article, main, section, nav,
figcaption, figure, span, em {
  display: block;
}

html {
  font-size: 62.5%;
}

*:focus {
  outline: none;
}

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

ol, ul {
  list-style: none;
}

i, em {
  font-style: normal;
}

blockquote, q {
  quotes: none;
}

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

*:not(table):not(tbody):not(thead):not(tfoot):not(tr):not(th):not(td) {
  position: relative;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* foundation/_extend.scss
-------------------------------------------------- */
/* foundation/_base.scss
-------------------------------------------------- */
body {
  font-family: "メイリオ", "Meiryo", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

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

input, select, textarea {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  overflow: auto;
  resize: none;
}

@media screen and (min-width: 769px) {
  input, textarea {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  input, textarea {
    font-size: 14px;
  }
}

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

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

[data-hidden] {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  opacity: 0;
  transform: scale(0);
}

a {
  color: #333;
  text-decoration: underline;
  cursor: pointer;
}
a[href=""] {
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  [data-device=sp] {
    display: none !important;
  }

  a[href^=tel] {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  body {
    -webkit-overflow-scrolling: touch;
  }

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

  [data-device=pc] {
    display: none !important;
  }
}
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10100;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  padding: 0 15px;
  margin: 30px auto auto;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transform: translate3d(0, -25%, 0);
  transition: 0.3s ease-out;
  opacity: 0;
}
.modal.show .modal-dialog {
  transform: none;
  display: block;
  opacity: 1;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: subtract(100%, 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: subtract(100vh, 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: subtract(100%, 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: subtract(100vh, 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1120px;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  outline: 0;
  margin: auto;
}
.modal-content.modal-content-yn {
  max-width: 620px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  transition: 0.3s ease-out;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.7;
}

.modal-header {
  text-align: center;
  padding: 80px 15px 0;
  margin-bottom: 20px;
}
.modal-header .btn-close {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
}
.modal-header + .modal-footer {
  margin-top: 0;
}

.modal-title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0 15px;
}

.modal-footer {
  padding: 0 15px 30px;
  margin-top: 30px;
}

.modal-action {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin: -10px;
}
.modal-action > * {
  margin: 10px;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.jBox-wrapper {
  text-align: left;
  box-sizing: border-box;
  max-width: 22rem;
}

.jBox-title,
.jBox-content,
.jBox-container {
  position: relative;
  word-break: break-word;
  box-sizing: border-box;
}

.jBox-container {
  background: #efefef;
}

.jBox-content {
  font-size: 12px;
  padding: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: opacity 0.2s;
}

.jBox-footer {
  box-sizing: border-box;
}

.jBox-Tooltip .jBox-container,
.jBox-Mouse .jBox-container {
  border-radius: 6px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}
.jBox-Tooltip .jBox-title,
.jBox-Mouse .jBox-title {
  padding: 8px 10px 0;
  font-weight: bold;
}
.jBox-Tooltip.jBox-hasTitle .jBox-content,
.jBox-Mouse.jBox-hasTitle .jBox-content {
  padding-top: 5px;
}

.jBox-Mouse {
  pointer-events: none;
}

.jBox-pointer {
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
}
.jBox-pointer:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background: #efefef;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.jBox-pointer-top {
  top: 0;
}
.jBox-pointer-top:after {
  left: 5px;
  top: 6px;
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.15);
}
.jBox-pointer-right {
  right: 0;
}
.jBox-pointer-right:after {
  top: 5px;
  right: 6px;
  box-shadow: 1px -1px 2px rgba(0, 0, 0, 0.15);
}
.jBox-pointer-left {
  left: 0;
}
.jBox-pointer-left:after {
  top: 5px;
  left: 6px;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.15);
}
.jBox-pointer-bottom {
  bottom: 0;
}
.jBox-pointer-bottom:after {
  left: 5px;
  bottom: 6px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
.jBox-pointer-top, .jBox-pointer-bottom {
  width: 30px;
  height: 12px;
}
.jBox-pointer-left, .jBox-pointer-right {
  width: 12px;
  height: 30px;
}

.jBox-Modal .jBox-container {
  border-radius: 4px;
}
.jBox-Modal .jBox-container, .jBox-Modal.jBox-closeButton-box:before {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4);
}
.jBox-Modal .jBox-content {
  padding: 15px 20px;
}
.jBox-Modal .jBox-title {
  border-radius: 4px 4px 0 0;
  padding: 15px 20px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}
.jBox-Modal.jBox-closeButton-title .jBox-title {
  padding-right: 65px;
}
.jBox-Modal .jBox-footer {
  border-radius: 0 0 4px 4px;
}

.jBox-closeButton {
  z-index: 1;
  cursor: pointer;
  position: absolute;
  box-sizing: border-box;
}
.jBox-closeButton svg {
  position: absolute;
  top: 50%;
  right: 50%;
}
.jBox-closeButton path {
  fill: #aaa;
  transition: fill 0.2s;
}
.jBox-closeButton:hover path {
  fill: #888;
}

.jBox-overlay .jBox-closeButton {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
.jBox-overlay .jBox-closeButton svg {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-right: -10px;
}
.jBox-overlay .jBox-closeButton path {
  fill: #ddd;
}
.jBox-overlay .jBox-closeButton:hover path {
  fill: #fff;
}

.jBox-closeButton-title .jBox-closeButton {
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
}
.jBox-closeButton-title svg {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-right: -6px;
}

.jBox-closeButton-box {
  box-sizing: border-box;
}
.jBox-closeButton-box .jBox-closeButton {
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
}
.jBox-closeButton-box .jBox-closeButton svg {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-right: -5px;
}
.jBox-closeButton-box:before {
  content: "";
  position: absolute;
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.jBox-closeButton-box.jBox-pointerPosition-top:before {
  top: 5px;
}
.jBox-closeButton-box.jBox-pointerPosition-right:before {
  right: 2px;
}

.jBox-Modal.jBox-hasTitle.jBox-closeButton-box .jBox-closeButton {
  background: #fafafa;
}

.jBox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.82);
}

.jBox-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 8px 10px;
  border-radius: 0 0 3px 3px;
}

body[class^=jBox-blockScroll-],
body[class*=" jBox-blockScroll-"] {
  overflow: hidden;
}

.jBox-draggable {
  cursor: move;
}

@-webkit-keyframes jBoxLoading {
  to {
    transform: rotate(360deg);
  }
}

@keyframes jBoxLoading {
  to {
    transform: rotate(360deg);
  }
}
.jBox-loading .jBox-content {
  opacity: 0.2;
}

.jBox-loading-spinner .jBox-content {
  min-height: 38px !important;
  min-width: 38px !important;
  opacity: 0;
}

.jBox-spinner {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
}
.jBox-spinner:before {
  display: block;
  box-sizing: border-box;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.8);
  -webkit-animation: jBoxLoading 0.6s linear infinite;
          animation: jBoxLoading 0.6s linear infinite;
}

.jBox-countdown {
  border-radius: 4px 4px 0 0;
  z-index: 0;
  background: #000;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  overflow: hidden;
}
.jBox-countdown-inner {
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  background: #fff;
}

[class^=jBox-animated-],
[class*=" jBox-animated-"] {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes jBox-tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.8) rotate(-4deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.2) rotate(4deg);
  }
  40%, 60%, 80% {
    transform: scale(1.2) rotate(-4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes jBox-tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.8) rotate(-4deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.2) rotate(4deg);
  }
  40%, 60%, 80% {
    transform: scale(1.2) rotate(-4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.jBox-animated-tada {
  -webkit-animation: jBox-tada 1s;
          animation: jBox-tada 1s;
}

@-webkit-keyframes jBox-tadaSmall {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-2deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(2deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes jBox-tadaSmall {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-2deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(2deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.jBox-animated-tadaSmall {
  -webkit-animation: jBox-tadaSmall 1s;
          animation: jBox-tadaSmall 1s;
}

@-webkit-keyframes jBox-flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes jBox-flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.jBox-animated-flash {
  -webkit-animation: jBox-flash 0.5s;
          animation: jBox-flash 0.5s;
}

@-webkit-keyframes jBox-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-6px);
  }
  40%, 80% {
    transform: translateX(6px);
  }
}

@keyframes jBox-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-6px);
  }
  40%, 80% {
    transform: translateX(6px);
  }
}
.jBox-animated-shake {
  -webkit-animation: jBox-shake 0.4s;
          animation: jBox-shake 0.4s;
}

@-webkit-keyframes jBox-pulseUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes jBox-pulseUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.jBox-animated-pulseUp {
  -webkit-animation: jBox-pulseUp 0.25s;
          animation: jBox-pulseUp 0.25s;
}

@-webkit-keyframes jBox-pulseDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes jBox-pulseDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
.jBox-animated-pulseDown {
  -webkit-animation: jBox-pulseDown 0.25s;
          animation: jBox-pulseDown 0.25s;
}

@-webkit-keyframes jBox-popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes jBox-popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.jBox-animated-popIn {
  -webkit-animation: jBox-popIn 0.25s;
          animation: jBox-popIn 0.25s;
}

@-webkit-keyframes jBox-popOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes jBox-popOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}
.jBox-animated-popOut {
  -webkit-animation: jBox-popOut 0.25s;
          animation: jBox-popOut 0.25s;
}

@-webkit-keyframes jBox-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes jBox-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.jBox-animated-fadeIn {
  -webkit-animation: jBox-fadeIn 0.2s;
          animation: jBox-fadeIn 0.2s;
}

@-webkit-keyframes jBox-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes jBox-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.jBox-animated-fadeOut {
  -webkit-animation: jBox-fadeOut 0.2s;
          animation: jBox-fadeOut 0.2s;
}

@-webkit-keyframes jBox-slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-300px);
    opacity: 0;
  }
}

@keyframes jBox-slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-300px);
    opacity: 0;
  }
}
.jBox-animated-slideUp {
  -webkit-animation: jBox-slideUp 0.4s;
          animation: jBox-slideUp 0.4s;
}

@-webkit-keyframes jBox-slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
    opacity: 0;
  }
}

@keyframes jBox-slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
    opacity: 0;
  }
}
.jBox-animated-slideRight {
  -webkit-animation: jBox-slideRight 0.4s;
          animation: jBox-slideRight 0.4s;
}

@-webkit-keyframes jBox-slideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(300px);
    opacity: 0;
  }
}

@keyframes jBox-slideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(300px);
    opacity: 0;
  }
}
.jBox-animated-slideDown {
  -webkit-animation: jBox-slideDown 0.4s;
          animation: jBox-slideDown 0.4s;
}

@-webkit-keyframes jBox-slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300px);
    opacity: 0;
  }
}

@keyframes jBox-slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300px);
    opacity: 0;
  }
}
.jBox-animated-slideLeft {
  -webkit-animation: jBox-slideLeft 0.4s;
          animation: jBox-slideLeft 0.4s;
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: 200px;
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.l-header {
  box-shadow: 0px 3px 6px #00000029;
  padding: 1.8rem 0;
}
@media screen and (max-width: 768px) {
  .l-header__logo img {
    width: 13.2rem;
  }
}

.l-footer {
  background-color: #656565;
  color: #FFF;
  text-align: center;
  padding: 3rem 0;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-bottom: 7rem;
  }
}
@media screen and (min-width: 769px) {
  .l-footer {
    margin-top: 8rem;
  }
}

.p-scroll-fix {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10020;
}
@media screen and (max-width: 768px) {
  .p-scroll-fix {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-scroll-fix {
    bottom: 2.5rem;
    right: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-scroll-inner {
    display: flex;
  }
}
.p-scroll-btn {
  color: #FFF;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background-color: #FFA700;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .p-scroll-btn {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .p-scroll-btn {
    border-radius: 6px;
  }
}
.p-scroll-btn svg {
  stroke: #FFF;
  vertical-align: middle;
  margin-right: 0.8rem;
}
.p-scroll-btn.p-fundSarch {
  background-color: #CC0000;
}
@media screen and (min-width: 769px) {
  .p-scroll-btn.p-fundSarch {
    display: block;
  }
}
.p-scroll-btn.p-fundSarch.p-disable {
  display: none;
  pointer-events: none;
  background-color: #9E9E9E;
}
.p-scroll-top {
  cursor: pointer;
}

/* object/compornent/_container.scss
-------------------------------------------------- */
.c-container {
  width: 100%;
  max-width: 1300px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.c-container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.c-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.c-col-1, .c-col-2, .c-col-3, .c-col-4, .c-col-5, .c-col-6, .c-col-7, .c-col-8, .c-col-9, .c-col-10, .c-col-11, .c-col-12, .c-col, .c-col-auto,
.c-col-1-sm, .c-col-2-sm, .c-col-3-sm, .c-col-4-sm, .c-col-5-sm, .c-col-6-sm, .c-col-7-sm, .c-col-8-sm, .c-col-9-sm, .c-col-10-sm, .c-col-11-sm, .c-col-12-sm, .c-col-sm, .c-col-sm-auto,
.c-col-1-md, .c-col-2-md, .c-col-3-md, .c-col-4-md, .c-col-5-md, .c-col-6-md, .c-col-7-md, .c-col-8-md, .c-col-9-md, .c-col-10-md, .c-col-11-md, .c-col-12-md, .c-col-md, .c-col-md-auto,
.c-col-1-lg, .c-col-2-lg, .c-col-3-lg, .c-col-4-lg, .c-col-5-lg, .c-col-6-lg, .c-col-7-lg, .c-col-8-lg, .c-col-9-lg, .c-col-10-lg, .c-col-11-lg, .c-col-12-lg, .c-col-lg, .c-col-lg-auto,
.c-col-1-xl, .c-col-2-xl, .c-col-3-xl, .c-col-4-xl, .c-col-5-xl, .c-col-6-xl, .c-col-7-xl, .c-col-8-xl, .c-col-9-xl, .c-col-10-xl, .c-col-11-xl, .c-col-12-xl, .c-col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.c-list-indent li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-list-disc {
  list-style: disc;
  padding-left: 1.5em;
}

.c-list-horizontal {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5px;
}
.c-list-horizontal li {
  padding: 2.5px;
}
.c-list-50 li {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .c-list-50-sp li {
    width: 50%;
  }
}
.c-list-50-pc li {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .c-list-50-pc li {
    width: 50%;
  }
}

@media screen and (min-width: 769px) {
  .list-rack-checkbox,
.list-rack-radio {
    display: flex;
    flex-wrap: wrap;
    margin: -0.7rem -1rem;
  }
}
@media screen and (max-width: 768px) {
  .list-rack-checkbox-item,
.list-rack-radio-item {
    padding: 1.5rem 1.8rem;
    border-bottom: 1px dashed #656565;
  }
}
@media screen and (min-width: 769px) {
  .list-rack-checkbox-item,
.list-rack-radio-item {
    padding: 0.7rem 1rem;
  }
}

.c-table, .c-table-fixed, .c-table-size90 {
  text-align: center;
  min-width: 100%;
  position: relative;
  word-break: break-all;
}
.c-table-scroll {
  margin-right: -1.5rem;
  padding-right: 1.5rem;
}
.c-table tr:nth-of-type(even) td, .c-table-fixed tr:nth-of-type(even) td, .c-table-size90 tr:nth-of-type(even) td {
  background-color: #EFEFEF;
}
.c-table tr:nth-of-type(even) td + td, .c-table-fixed tr:nth-of-type(even) td + td, .c-table-size90 tr:nth-of-type(even) td + td {
  border-left: 1px solid #FFF;
}
.c-table tbody tr:last-child th, .c-table-fixed tbody tr:last-child th, .c-table-size90 tbody tr:last-child th,
.c-table tbody tr:last-child td,
.c-table-fixed tbody tr:last-child td,
.c-table-size90 tbody tr:last-child td {
  border-bottom: none;
}
.c-table th, .c-table-fixed th, .c-table-size90 th,
.c-table td,
.c-table-fixed td,
.c-table-size90 td {
  vertical-align: middle;
}
.c-table th, .c-table-fixed th, .c-table-size90 th {
  padding: 0.5rem;
}
@media screen and (min-width: 769px) {
  .c-table th, .c-table-fixed th, .c-table-size90 th {
    padding: 0.8rem;
  }
}
.c-table th + th, .c-table-fixed th + th, .c-table-size90 th + th {
  border-left: 1px solid #FFF;
}
.c-table td, .c-table-fixed td, .c-table-size90 td {
  padding: 0.5rem;
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .c-table td, .c-table-fixed td, .c-table-size90 td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .c-table td, .c-table-fixed td, .c-table-size90 td {
    padding: 1rem 0.8rem;
  }
}
.c-table-headline, .c-table-headline-top {
  font-weight: 700;
  color: #FFF;
  background-color: #0b186d;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .c-table-headline, .c-table-headline-top {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-table-headline-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}
.c-table-headline-link {
  color: #FFF;
}
.c-table-headline-2nd, .c-table-headline-2nd-left {
  position: relative;
  border-bottom: 1px solid #FFF;
  background-color: #e6e6fa;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .c-table-headline-2nd, .c-table-headline-2nd-left {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-table-headline-2nd-left {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 2;
  }
  .c-table-headline-2nd-left::after {
    content: "";
    width: 3px;
    height: 100%;
    display: block;
    background-color: #0b186d;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.c-table-headline-2nd-inner {
  display: flex;
  flex-direction: column;
}
.c-table-sort {
  min-width: 3.5rem;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.c-table-sort-item + .c-table-sort-item {
  margin-left: 0.5rem;
}
.c-table-sort-btn {
  background-color: #FFF;
  fill: #CC0000;
}
.c-table-sort-btn.sorted {
  background-color: #CC0000;
  fill: #FFF;
}
.c-table-size90 th,
.c-table-size90 td {
  min-width: 9rem;
}
.c-table-2nd {
  width: 100%;
  margin: -0.4rem;
}
.c-table-2nd th,
.c-table-2nd td {
  vertical-align: middle;
  padding: 0.4rem;
}
.c-table-2nd th {
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .c-table-2nd th {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.c-table-2nd td {
  width: 20%;
  padding-top: 0;
}
@media screen and (min-width: 769px) {
  .c-table-2nd td {
    width: 19%;
  }
}
@media screen and (max-width: 768px) {
  .c-table-2nd td .c-btn-checkbox {
    aspect-ratio: 1;
    padding: 0 0.5rem;
  }
}
.c-table-2nd-year {
  width: 5%;
}
.c-table-percentage {
  font-size: 10px;
  font-size: 1rem;
  width: 80%;
  table-layout: fixed;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-table-percentage {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 769px) {
  .c-table-percentage {
    width: 76%;
    margin: 0 10% 0 14%;
  }
}
.c-table-rank {
  width: 8%;
}
@media screen and (min-width: 769px) {
  .c-table-rank {
    width: 52px;
  }
}
@media screen and (min-width: 769px) {
  .c-table-category {
    width: 96px;
  }
}
@media screen and (min-width: 769px) {
  .c-table-fund {
    width: 250px;
  }
}
@media screen and (min-width: 769px) {
  .c-table-fund2 {
    width: 280px;
  }
}
@media screen and (min-width: 769px) {
  .c-table-opetate {
    width: 105px;
  }
}
.c-table-price {
  width: 17%;
}
@media screen and (min-width: 769px) {
  .c-table-price {
    width: 105px;
  }
}
.c-table-fluct {
  width: 17%;
}
@media screen and (min-width: 769px) {
  .c-table-fluct {
    width: 105px;
  }
}
.c-table-return {
  width: 17%;
}
@media screen and (min-width: 769px) {
  .c-table-return {
    width: 105px;
  }
}
@media screen and (min-width: 769px) {
  .c-table-asset {
    width: 105px;
  }
}
@media screen and (min-width: 769px) {
  .c-table-fee {
    width: 105px;
  }
}
@media screen and (min-width: 769px) {
  .c-table-rating {
    width: 85px;
  }
}
@media screen and (min-width: 769px) {
  .c-table-risk {
    width: 85px;
  }
}
@media screen and (min-width: 769px) {
  .c-table-remuneration {
    width: 140px;
  }
}
.c-table-compare {
  width: 9%;
}
@media screen and (min-width: 769px) {
  .c-table-compare {
    width: 60px;
  }
}
.c-table-favorite {
  width: 9%;
}
@media screen and (min-width: 769px) {
  .c-table-favorite {
    width: 60px;
  }
}
.c-table-fixed {
  table-layout: fixed;
  width: 100%;
}

.list-border {
  border: 1px solid #e6e6fa;
}

/* object/compornent/_form.scss
-------------------------------------------------- */
.c-input-btn,
.c-input-field {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  box-sizing: border-box;
}
.c-input-btn::-ms-clear,
.c-input-field::-ms-clear {
  display: none;
}
.c-input-btn::-ms-reveal,
.c-input-field::-ms-reveal {
  display: none;
}
.c-input-btn::-ms-expand,
.c-input-field::-ms-expand {
  display: none;
}

.c-input-number::-webkit-inner-spin-button,
.c-input-number::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

.c-input-btn {
  cursor: pointer;
}
.c-input-btn:hover {
  opacity: 0.8;
}

.c-input-field {
  font-family: inherit;
  width: 100%;
  border: 1px solid #656565;
  padding: 1rem;
  border-radius: 6px;
}
.c-input-field:focus {
  border-color: #CC000066;
}
.c-input-field.c-input-field-xs {
  max-width: 150px;
}
.c-input-field.c-input-field-s {
  max-width: 200px;
}
.c-input-field.c-input-field-m {
  max-width: 400px;
}
.c-input-field.c-input-field-l {
  max-width: 550px;
}
.c-input-field.width-360 {
  width: 360px;
}
.c-input-field.width-400 {
  width: 400px;
}

.c-input-select, .c-input-select-full {
  display: inline-block;
  position: relative;
}
.c-input-select select, .c-input-select-full select {
  color: #333;
  font-size: 1.6rem;
  width: 100%;
  min-width: 18rem;
  background-color: #fff;
  border: 1px solid #656565;
  border-radius: 6px;
  padding: 1.5rem 5rem 1.5rem 1.5rem;
}
.c-input-select select:-moz-placeholder-shown, .c-input-select-full select:-moz-placeholder-shown {
  color: #333;
}
.c-input-select select:-ms-input-placeholder, .c-input-select-full select:-ms-input-placeholder {
  color: #333;
}
.c-input-select select:placeholder-shown, .c-input-select-full select:placeholder-shown {
  color: #333;
}
.c-input-select select::-webkit-input-placeholder, .c-input-select-full select::-webkit-input-placeholder {
  color: #333;
}
.c-input-select select:-moz-placeholder, .c-input-select-full select:-moz-placeholder {
  color: #333;
  opacity: 1;
}
.c-input-select select::-moz-placeholder, .c-input-select-full select::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.c-input-select select:-ms-input-placeholder, .c-input-select-full select:-ms-input-placeholder {
  color: #333;
}
.c-input-select svg, .c-input-select-full svg {
  fill: #CC0000;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.c-input-select-full {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .c-input-select-full {
    width: 340px;
  }
}
@media screen and (max-width: 768px) {
  .c-input-select-rack select {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
}

.c-input-radio-group {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -20px;
}
.c-input-radio-group .c-input-radio-label {
  margin: 10px 20px;
}

.c-input-radio-label {
  display: block;
}
.c-input-radio-label .c-input-radio {
  display: none;
}
.c-input-radio-label .c-input-radio-txt {
  display: block;
  position: relative;
  padding-left: 40px;
}
.c-input-radio-label .c-input-radio-txt::before, .c-input-radio-label .c-input-radio-txt::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100em;
  transition-duration: 0.3s;
}
.c-input-radio-label .c-input-radio-txt::before {
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  background-color: #fff;
  top: 0;
  left: 0;
}
.c-input-radio-label .c-input-radio-txt::after {
  width: 16px;
  height: 16px;
  opacity: 0;
  background-color: #1A2C9F;
  top: 7px;
  left: 7px;
}
.c-input-radio-label .c-input-radio:checked + .c-input-radio-txt::after {
  opacity: 1;
}

.c-input-checkbox {
  display: inline-flex;
}
.c-input-checkbox-input {
  display: none;
}
.c-input-checkbox-input:checked + .c-input-checkbox-visual .checked {
  opacity: 1;
}
.c-input-checkbox-visual {
  width: 18px;
  height: 18px;
  display: block;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-input-checkbox-visual {
    margin-right: 1rem;
  }
}
.c-input-checkbox-visual::before,
.c-input-checkbox-visual .checked {
  content: "";
  display: block;
  position: absolute;
}
.c-input-checkbox-visual::before {
  width: 18px;
  height: 18px;
  border: 1px solid #CCC;
  background-color: #FFF;
  top: 0;
  left: 0;
}
.c-input-checkbox-visual .checked {
  opacity: 0;
  fill: #FFA700;
  top: 3px;
  left: 3px;
}
@media screen and (min-width: 769px) {
  .c-input-checkbox-2nd .c-input-checkbox-visual {
    display: none;
  }
}

.c-input-radio {
  display: inline-flex;
}
.c-input-radio-input {
  display: none;
}
.c-input-radio-input:checked + .c-input-radio-visual .checked {
  opacity: 1;
}
.c-input-radio-visual {
  width: 18px;
  height: 18px;
  display: block;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-input-radio-visual {
    margin-right: 1rem;
  }
}
.c-input-radio-visual::before,
.c-input-radio-visual .checked {
  content: "";
  display: block;
  position: absolute;
}
.c-input-radio-visual::before {
  width: 16px;
  height: 16px;
  border: 2px solid #CCC;
  border-radius: 10px;
  background-color: #FFF;
  top: 0;
  left: 0;
}
.c-input-radio-visual .checked {
  opacity: 0;
  fill: #CC0000;
  top: 5px;
  left: 5px;
}

.c-btn, .c-btn-jumbo, .c-btn-tab, .c-btn-radio, .c-btn-checkbox, .c-btn-stripe, .c-btn-stripe-double, .c-btn-stripe-double-theme, .c-btn-stripe-green, .c-btn-stripe-orange, .c-btn-stripe-theme, .c-btn-green, .c-btn-orange, .c-btn-gray-2nd, .c-btn-gray, .c-btn-theme, .c-btn-common {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-weight: 700;
  min-width: 120px;
  min-height: 50px;
  border: 1px solid #9E9E9E;
  border-radius: 6px;
  background-color: #FFF;
  cursor: pointer;
  position: relative;
}
.c-btn-theme {
  color: #FFF;
  background-color: #CC0000;
  border-color: #CC0000;
}
.c-btn-gray {
  color: #FFF;
  background-color: #656565;
  border-color: #656565;
}
.c-btn-gray-2nd {
  color: #FFF;
  background-color: #9E9E9E;
}
.c-btn-orange {
  color: #FFF;
  background-color: #FFA700;
  border-color: #FFA700;
}
.c-btn-green {
  color: #FFF;
  background-color: #008414;
  border-color: #008414;
}
.c-btn-stripe, .c-btn-stripe-double, .c-btn-stripe-double-theme, .c-btn-stripe-green, .c-btn-stripe-orange, .c-btn-stripe-theme {
  font-size: 12px;
  font-size: 1.2rem;
  text-decoration: none;
  padding-right: 2rem;
  padding-left: 1rem;
}
@media screen and (min-width: 769px) {
  .c-btn-stripe, .c-btn-stripe-double, .c-btn-stripe-double-theme, .c-btn-stripe-green, .c-btn-stripe-orange, .c-btn-stripe-theme {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.c-btn-stripe::after, .c-btn-stripe-double::after, .c-btn-stripe-double-theme::after, .c-btn-stripe-green::after, .c-btn-stripe-orange::after, .c-btn-stripe-theme::after {
  content: "";
  height: 5px;
  width: calc(100% - 16px);
  background-size: auto auto;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #9E9E9E 3px, #9E9E9E 4px);
  position: absolute;
  bottom: 1px;
  left: 8px;
  right: 8px;
}
.c-btn-stripe-theme::after {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #CC000066 3px, #CC000066 4px);
}
.c-btn-stripe-theme:hover {
  color: #FFF;
  background-color: #CC0000CC;
  border-color: #CC0000;
}
.c-btn-stripe-theme:hover svg {
  fill: #FFF;
}
.c-btn-stripe-theme:hover .c-arrow-theme {
  stroke: #FFF;
}
.c-btn-stripe-orange::after {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #ffa700cc 3px, #ffa700cc 4px);
}
.c-btn-stripe-orange:hover {
  color: #FFF;
  background-color: #ffa700cc;
  border-color: #FFA700;
}
.c-btn-stripe-orange:hover svg {
  fill: #FFF;
}
.c-btn-stripe-orange:hover .c-arrow-orange {
  stroke: #FFF;
}
.c-btn-stripe-green::after {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #008414cc 3px, #008414cc 4px);
}
.c-btn-stripe-green:hover {
  color: #FFF;
  background-color: #008414cc;
  border-color: #008414;
}
.c-btn-stripe-green:hover svg {
  fill: #FFF;
}
.c-btn-stripe-green:hover .c-arrow-green {
  stroke: #FFF;
}
.c-btn-stripe-double, .c-btn-stripe-double-theme {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0;
}
.c-btn-stripe-double::before, .c-btn-stripe-double-theme::before {
  content: "";
  height: 5px;
  width: calc(100% - 16px);
  background-size: auto auto;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #9E9E9E 3px, #9E9E9E 4px);
  position: absolute;
  top: 1px;
  left: 8px;
  right: 8px;
}
.c-btn-stripe-double-theme::before {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #CC000066 3px, #CC000066 4px);
}
.c-btn-stripe-double-theme::after {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #CC000066 3px, #CC000066 4px);
}
.c-btn-checkbox {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  min-width: initial;
  padding: 0 1rem;
}
@media screen and (min-width: 769px) {
  .c-btn-checkbox {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.c-btn-checkbox-input {
  display: none;
}
.c-btn-checkbox-input:checked + .c-btn-checkbox-visual {
  color: #FFF;
  background-color: #CC0000CC;
  border-color: #CC0000;
}
.c-btn-radio {
  font-weight: 700;
  padding: 0 1rem;
}
.c-btn-radio-input {
  display: none;
}
.c-btn-radio-input:checked + .c-btn-radio-visual {
  color: #FFF;
  background-color: #CC0000CC;
  border-color: #CC0000;
}
.c-btn-tab {
  font-size: 1.6rem;
  font-weight: 700;
  min-width: 16rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: none;
  border-color: #9E9E9E;
}
.c-btn-tab.active {
  color: #FFF;
  background-color: #CC0000;
  border-color: #CC0000;
}
.c-btn-jumbo {
  text-decoration: none;
  height: 100%;
  padding: 1.6rem 1.5rem 3.6rem;
}
@media screen and (min-width: 769px) {
  .c-btn-jumbo {
    width: 26rem;
    justify-content: flex-start;
    padding: 2.4rem 4rem 2.4rem 2rem;
  }
}
.c-btn-jumbo::after {
  content: "";
  height: 5px;
  width: calc(100% - 16px);
  background-size: auto auto;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #CC000066 3px, #CC000066 4px);
  position: absolute;
  bottom: 1px;
  left: 8px;
  right: 8px;
}
@media screen and (max-width: 768px) {
  .c-btn-jumbo {
    display: flex;
    flex-direction: column;
  }
}
.c-btn-jumbo-ico {
  margin-right: 1rem;
}
@media screen and (min-width: 769px) {
  .c-btn-jumbo-ico {
    width: 4rem;
    height: 3rem;
  }
}
.c-btn-jumbo-arrow {
  stroke: #CC0000;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .c-btn-jumbo-arrow {
    bottom: 1.8rem;
    right: 50%;
    transform: translateX(50%);
  }
}
@media screen and (min-width: 769px) {
  .c-btn-jumbo-arrow {
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }
}
.c-btn-jumbo:hover {
  color: #FFF;
  background-color: #CC0000CC;
  border-color: #CC0000;
}
.c-btn-jumbo:hover .c-btn-jumbo-ico {
  fill: #FFF;
}
.c-btn-jumbo:hover .c-btn-jumbo-arrow {
  stroke: #FFF;
}
.c-btn-sm {
  width: auto;
  min-width: initial;
  padding: 0 10px;
}
.c-btn-lg {
  width: 288px;
}
.c-btn-xl {
  min-width: 100%;
}

.c-arrow, .c-arrow-green, .c-arrow-orange, .c-arrow-theme {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
}
.c-arrow-theme {
  stroke: #CC0000;
}
.c-arrow-orange {
  stroke: #FFA700;
}
.c-arrow-green {
  stroke: #008414;
}

.c-tab-nav-item:not(.active) {
  cursor: pointer;
}
.c-tab-content-panel {
  display: none;
}
.c-tab-content-panel.active {
  display: block;
}
@media screen and (max-width: 768px) {
  .c-tab-content-panel.sp {
    display: block;
  }
}

.c-accordion-header {
  position: relative;
  cursor: pointer;
}
.c-accordion-toggle, .c-accordion-3rd-toggle, .c-accordion-2nd-toggle {
  width: 20px;
  height: 20px;
  background-color: #CC0000;
  border-radius: 10em;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
}
.c-accordion-toggle::before, .c-accordion-3rd-toggle::before, .c-accordion-2nd-toggle::before, .c-accordion-toggle::after, .c-accordion-3rd-toggle::after, .c-accordion-2nd-toggle::after {
  content: "";
  position: absolute;
  background-color: #FFF;
}
.c-accordion-toggle::before, .c-accordion-3rd-toggle::before, .c-accordion-2nd-toggle::before {
  width: 10px;
  height: 2px;
  border-radius: 1px;
  top: 9px;
  left: 5px;
}
.c-accordion-toggle::after, .c-accordion-3rd-toggle::after, .c-accordion-2nd-toggle::after {
  width: 2px;
  height: 10px;
  border-radius: 1px;
  top: 5px;
  left: 9px;
}
.c-accordion-toggle.active::after, .active.c-accordion-3rd-toggle::after, .active.c-accordion-2nd-toggle::after {
  transform: rotate(90deg);
}
.c-accordion-body {
  display: none;
}
@media screen and (min-width: 769px) {
  .c-accordion-sp .c-accordion-header {
    pointer-events: none;
  }
}
@media screen and (min-width: 769px) {
  .c-accordion-sp .c-accordion-toggle, .c-accordion-sp .c-accordion-3rd-toggle, .c-accordion-sp .c-accordion-2nd-toggle {
    display: none;
  }
}
.c-accordion-sp .c-accordion-body {
  display: none;
}
@media screen and (min-width: 769px) {
  .c-accordion-sp .c-accordion-body {
    display: block;
  }
}
.c-accordion-2nd-header, .c-accordion-3rd-header {
  position: relative;
  cursor: pointer;
}
.c-accordion-2nd-body, .c-accordion-3rd-body {
  display: none;
}
.c-accordion-2nd-toggle {
  background-color: transparent;
}
.c-accordion-2nd-toggle::before, .c-accordion-2nd-toggle::after {
  background-color: #CC0000;
}
@media screen and (min-width: 769px) {
  .c-accordion-2nd-sp .c-accordion-2nd-header {
    pointer-events: none;
  }
}
@media screen and (min-width: 769px) {
  .c-accordion-2nd-sp .c-accordion-2nd-toggle {
    display: none;
  }
}
.c-accordion-2nd-sp .c-accordion-2nd-body {
  display: none;
}
@media screen and (min-width: 769px) {
  .c-accordion-2nd-sp .c-accordion-2nd-body {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .c-accordion-2nd-sp .c-accordion-2nd-body-reverse {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .c-accordion-3rd-sp .c-accordion-3rd-header {
    pointer-events: none;
  }
}
@media screen and (min-width: 769px) {
  .c-accordion-3rd-sp .c-accordion-3rd-toggle {
    display: none;
  }
}
.c-accordion-3rd-sp .c-accordion-3rd-body {
  display: none;
}
@media screen and (min-width: 769px) {
  .c-accordion-3rd-sp .c-accordion-3rd-body {
    display: block;
  }
}

.c-headline, .c-headline-line {
  border-bottom: 1px solid #9E9E9E;
  font-weight: 700;
  position: relative;
  padding: 1.5rem 0;
  margin-bottom: 0.5rem;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (min-width: 769px) {
  .c-headline, .c-headline-line {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.c-headline::after, .c-headline-line::after {
  content: "";
  height: 5px;
  width: 100%;
  background-size: auto auto;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #CC000066 3px, #CC000066 4px);
  position: absolute;
  bottom: -6px;
  left: 0;
}
.c-headline-line {
  border-left: 5px solid #CC0000;
  padding-left: 1.8rem;
}
.c-headline-sm {
  position: relative;
  padding: 0.5rem 2.5rem;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .c-headline-sm {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-headline-sm {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}
@media screen and (min-width: 769px) {
  .c-headline-sm {
    padding: 0rem 1rem;
  }
}
.c-headline-sm::before {
  content: "";
  display: block;
  width: 5px;
  height: 20px;
  background-color: #CC0000;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .c-headline-sm::before {
    left: 0;
  }
}

.p-date-list {
  font-size: 1rem;
  font-weight: 400;
  margin-left: auto;
}

body {
  min-height: 100vh;
}

.c-main {
  padding: 3rem 0 5rem;
}

.c-section + .c-section {
  margin-top: 5rem;
}

.c-note {
  border-top: 0.1rem solid #9E9E9E;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.p-company {
  margin: 1rem 0;
  text-align: right;
}
.p-company-provider {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .p-financial-info {
    margin-bottom: 3rem;
  }
}

.p-red-color {
  color: #E81616;
}
.p-red-bg {
  background-color: #E81616;
}

.p-green-color {
  color: #008414;
}
.p-green-bg {
  background-color: #008414;
}

.p-category-1-color {
  color: #FDECB3 !important;
}
.p-category-1-bg {
  background-color: #FDECB3 !important;
}
.p-category-2-color {
  color: #FFD8EB !important;
}
.p-category-2-bg {
  background-color: #FFD8EB !important;
}
.p-category-3-color {
  color: #B2E5FC !important;
}
.p-category-3-bg {
  background-color: #B2E5FC !important;
}

@media screen and (min-width: 769px) {
  .p-hover-80:hover {
    opacity: 0.8;
  }
}

.p-magnifying-glass-plus {
  fill: #CC0000;
}

.p-monthly-nav {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  margin: -0.4rem;
}
@media screen and (min-width: 769px) {
  .p-monthly-nav {
    flex-wrap: nowrap;
    margin: -0.1rem;
  }
}
.p-monthly-nav-item {
  width: calc(25% - 8px);
  margin: 0.4rem;
}
@media screen and (min-width: 769px) {
  .p-monthly-nav-item {
    margin: 0.1rem;
    width: 100%;
  }
}
.p-monthly-nav-btn {
  text-decoration: underline;
  display: block;
  background-color: #CC00001a;
  padding: 13px 7px;
}
.p-monthly-nav-btn-disable {
  color: #656565;
  text-decoration: none;
  background-color: #9E9E9E;
  pointer-events: none;
}

.p-star {
  fill: #9E9E9E;
}
.p-star-favorite {
  fill: #FFA700;
}

.p-tag-list {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  margin: -2.5px;
}
.p-tag-item, .p-tag-item-7, .p-tag-item-6, .p-tag-item-5, .p-tag-item-4, .p-tag-item-3, .p-tag-item-2, .p-tag-item-1 {
  border-radius: 1rem;
  background-color: #656565;
  padding: 2px 5px;
  margin: 2.5px;
}
.p-tag-item-1 {
  color: #fff;
  background-color: #ff0000;
}
.p-tag-item-2 {
  color: #fff;
  background-color: #EE7800;
}
.p-tag-item-3 {
  color: #fff;
  background-color: #0000ff;
}
.p-tag-item-4 {
  color: #000;
  background-color: #ffff00;
}
.p-tag-item-5 {
  color: #000;
  background-color: #adff2f;
}
.p-tag-item-6 {
  color: #000;
  background-color: #c0c0c0;
}
.p-tag-item-7 {
  color: #fff;
  background-color: #696969;
}

.p-search {
  background-color: #FFF;
  box-shadow: 0px 3px 6px #00000029;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10010;
}
@media screen and (max-width: 768px) {
  .p-search {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}
.p-search-header {
  background-color: #CC00001a;
  padding: 1rem 1.5rem;
  border-bottom: 0.1rem solid #CCC;
}
@media screen and (min-width: 769px) {
  .p-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
  }
}
.p-search-view {
  display: flex;
  align-items: center;
}
.p-search-view-num {
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  margin-right: 1rem;
  margin-left: 20px;
}
@media screen and (min-width: 769px) {
  .p-search-view-num {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-search-action .c-btn-common {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-search-action .c-btn-common {
    min-width: 17.4rem;
  }
}
.p-search-body {
  padding: 1rem;
}
@media screen and (min-width: 769px) {
  .p-search-word {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-search-word-header {
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .p-search-word-header {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-search-word-box {
  display: flex;
}
@media screen and (min-width: 769px) {
  .p-search-word-box {
    width: calc(100% - 14.8rem);
  }
}
.p-search-word-input {
  width: calc( 100% - 9rem);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media screen and (min-width: 769px) {
  .p-search-word-input {
    width: calc( 100% - 10rem);
  }
}
.p-search-word-btn {
  color: #FFF;
  font-weight: 700;
  min-width: 9rem;
  background-color: #656565;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .p-search-word-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .p-search-word-btn {
    min-width: 10rem;
  }
}
.p-search-word-btn svg {
  fill: #FFF;
}
.p-search-rack {
  border: 0.1rem dashed #656565;
  border-radius: 6px;
  position: relative;
  padding: 0.5rem 1.5rem;
}
.p-search-rack::after {
  content: "";
  height: 5px;
  background-size: auto auto;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #CC000066 3px, #CC000066 0.4rem);
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
}
.p-search-rack-header {
  font-weight: 700;
  display: flex;
  padding: 1rem 0;
}
.p-search-rack-header svg {
  fill: #CC0000;
}
.p-search-rack-body {
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 769px) {
  .p-search-rack-2nd {
    display: flex;
    align-items: flex-start;
  }
}
.p-search-rack-2nd + .p-search-rack-2nd {
  margin-top: 2rem;
}
.p-search-rack-2nd-header {
  font-size: 1.6rem;
  background-color: #CC000033;
  padding: 0.8rem 1.8rem;
}
@media screen and (min-width: 769px) {
  .p-search-rack-2nd-header {
    min-width: 18rem;
    margin-right: 5.4rem;
  }
}
@media screen and (min-width: 769px) {
  .p-search-rack-2nd-body {
    width: 100%;
  }
}
.p-search-rack-2nd-body-reverse {
  padding: 0.8rem 1.8rem;
}
.p-search-rack-2nd .p-tooltip {
  position: absolute;
  top: 1rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-search-rack-2nd .p-tooltip {
    font-size: 1.3rem;
    width: 2rem;
    height: 2rem;
    right: 4rem;
  }
}
@media screen and (min-width: 769px) {
  .p-search-rack-2nd .p-tooltip {
    top: 1rem;
    left: 19rem;
  }
}
@media screen and (max-width: 768px) {
  .p-search-rack-2nd .p-tooltip::before {
    content: "";
    display: block;
    position: absolute;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 100em;
  }
}

.c-bar, .c-bar-orange, .c-bar-lightgreen, .c-bar-green, .c-bar-lightred, .c-bar-red {
  width: 100%;
  height: 1.4rem;
}
.c-bar-red {
  background-color: #E81616;
}
.c-bar-lightred {
  background-color: #E81616BF;
}
.c-bar-green {
  background-color: #008414;
}
.c-bar-lightgreen {
  background-color: #008414cc;
}
.c-bar-orange {
  background-color: #FFA700;
}
.c-bar-arrow-left, .c-bar-arrow-left-green, .c-bar-arrow-left-red {
  position: relative;
}
.c-bar-arrow-left::before, .c-bar-arrow-left-green::before, .c-bar-arrow-left-red::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.7rem solid #FFF;
  border-bottom: 0.7rem solid #FFF;
  border-right: 1rem solid #333;
  border-left: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.c-bar-arrow-left-red::before {
  border-right: 1rem solid #E81616;
}
.c-bar-arrow-left-green::before {
  border-right: 1rem solid #008414;
}
.c-bar-arrow-right, .c-bar-arrow-right-green, .c-bar-arrow-right-red {
  position: relative;
}
.c-bar-arrow-right::before, .c-bar-arrow-right-green::before, .c-bar-arrow-right-red::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.7rem solid #FFF;
  border-bottom: 0.7rem solid #FFF;
  border-left: 1rem solid #333;
  border-right: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.c-bar-arrow-right-red::before {
  border-left: 1rem solid #E81616;
}
.c-bar-arrow-right-green::before {
  border-left: 1rem solid #008414;
}

.p-pager {
  background-color: #CC00001a;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-pager {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}
@media screen and (min-width: 769px) {
  .p-pager {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.4rem 2rem;
  }
}
.p-pager-current {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .p-pager-current {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-pager-current {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 769px) {
  .p-pager-current {
    margin-right: 2.5rem;
  }
}
.p-pager .c-btn-common {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-pager .c-btn-common {
    min-width: 16rem;
  }
}

.p-tooltip {
  color: #FFF;
  font-weight: 700;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 10em;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #656565;
  vertical-align: middle;
  font-size: 10px;
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .p-tooltip {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .p-tooltip {
    width: 2rem;
    height: 2rem;
    pointer-events: auto;
  }
}

.p-modal-category-btn {
  font-weight: 400;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.p-modal-category-btn:hover {
  color: #FFF;
  background-color: #CC0000CC;
  border-color: #CC0000;
}
.p-modal-category-btn:hover svg {
  fill: #FFF;
}
@media screen and (min-width: 769px) {
  .p-modal-category-header {
    pointer-events: none;
  }
}
@media screen and (min-width: 769px) {
  .p-modal-category-toggle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-modal-category-body {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .p-modal-category-body-reverse {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .modal-header {
    margin-bottom: 4rem;
    padding-right: 13.5rem;
    padding-left: 13.5rem;
  }
}
.modal-header .btn-close {
  width: 3rem;
  height: 3rem;
  background-color: #CC0000;
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-header .btn-close svg {
  display: block;
  fill: #FFF;
}
.modal-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 769px) {
  .modal-title {
    font-size: 2.6rem;
  }
}
.modal-title::after {
  content: "";
  height: 5px;
  width: 100%;
  background-size: auto auto;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #CC000066 3px, #CC000066 0.4rem);
  position: absolute;
  bottom: 0px;
  left: 0;
}
@media screen and (min-width: 769px) {
  .modal-body {
    padding-right: 13.5rem;
    padding-left: 13.5rem;
  }
}
@media screen and (min-width: 769px) {
  .modal-body-2nd {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
.modal-body-scroll {
  max-height: 50vh;
  overflow-y: auto;
}
@media screen and (min-width: 769px) {
  .modal-footer {
    padding-right: 13.5rem;
    padding-left: 13.5rem;
  }
}
.modal-footer .c-btn-common {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .modal-footer .c-btn-common {
    width: 17.4rem;
  }
}

.p-market-nav {
  background-color: #CC00001a;
  display: flex;
  align-items: center;
  padding: 2rem 2.2rem;
}
.p-market-headline {
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: auto;
}
.p-market-date {
  margin-left: auto;
}
.p-market-action {
  margin-left: 1rem;
}
@media screen and (min-width: 769px) {
  .p-market-action {
    margin-left: 2rem;
  }
}
.p-market-action .c-btn-common {
  min-width: 6.6rem;
  min-height: 3rem;
}
@media screen and (min-width: 769px) {
  .p-market-action .c-btn-common {
    min-width: 15.6rem;
    min-height: 4rem;
  }
}
@media screen and (min-width: 769px) {
  .p-market-body {
    background-image: url("../img/map.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.p-market-list {
  display: flex;
  flex-wrap: wrap;
  margin: -0.8rem;
}
@media screen and (min-width: 769px) {
  .p-market-list {
    padding: 0 5.5rem;
    margin: -1.5rem -1.5rem;
  }
}
.p-market-list li {
  width: 50%;
  padding: 0.8rem;
}
@media screen and (min-width: 769px) {
  .p-market-list li {
    width: 25%;
    padding: 1.5rem 1.5rem;
  }
}
.p-market-detail {
  text-decoration: none;
  word-break: break-all;
  height: 100%;
  display: block;
  border: 0.1rem solid #A8A8A8;
  background-color: #FFF;
  box-shadow: 3px 3px 0 #4A4A4A29;
  padding: 2rem 0.8rem;
}
.p-market-flag {
  min-width: 4.2rem;
}
.p-market-country {
  display: flex;
  margin-bottom: 0.5rem;
}
.p-market-currency {
  font-weight: 700;
  margin-left: 0.5rem;
  padding-top: 0.3rem;
}
.p-market-fluctuation {
  text-align: right;
}
.p-market-price {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .p-market-price {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .p-market-price span {
    display: block;
  }
}
.p-market-price span + span {
  margin-left: 2rem;
}
@media screen and (min-width: 769px) {
  .p-market-price span + span {
    margin-left: 0.8rem;
  }
}

.p-detail-rating {
  display: flex;
  align-items: center;
}
.p-detail-rating-star {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b186d;
}
.p-detail-opetate {
  font-size: 15px;
  font-size: 1.5rem;
  display: flex;
}
@media screen and (min-width: 769px) {
  .p-detail-opetate {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  .p-detail-buy-list {
    justify-content: flex-end;
  }
}
.p-detail-buy-list li {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-detail-buy-list li {
    padding-right: 2.75rem;
    padding-left: 2.75rem;
  }
}
@media screen and (min-width: 769px) {
  .p-detail-buy-list li {
    width: 15rem;
  }
}
.p-detail-buy-list .c-btn-stripe-theme {
  color: #CC0000;
}
.p-detail-buy-list .c-btn-stripe-orange {
  color: #FFA700;
}
.p-detail-buy-list .c-btn-stripe-green {
  color: #008414;
}
@media screen and (min-width: 769px) {
  .p-detail-buy-list .c-btn-stripe-theme,
.p-detail-buy-list .c-btn-stripe-orange,
.p-detail-buy-list .c-btn-stripe-green {
    font-size: 1.2rem;
    text-align: center;
  }
}
.p-detail-buy-list .c-btn-stripe-theme:hover,
.p-detail-buy-list .c-btn-stripe-orange:hover,
.p-detail-buy-list .c-btn-stripe-green:hover {
  color: #FFF;
}
.p-detail-evaluation-item {
  padding: 1rem 0;
  border-bottom: 0.1rem dotted #CCC;
}
.p-detail-evaluation-item:first-of-type {
  border-top: 0.1rem dotted #CCC;
}
.p-detail-evaluation-item-inner {
  display: flex;
  align-items: baseline;
}
.p-detail-evaluation-header {
  padding-right: 2.5rem;
  position: relative;
}
.p-detail-evaluation-header .p-tooltip {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.p-detail-evaluation-headline {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #CC0000CC;
  width: 14.2rem;
  text-align: center;
  padding: 0.8rem;
}
.p-detail-evaluation-body {
  text-align: center;
  width: 100%;
}
.p-detail-evaluation-table {
  border-bottom: 0.1rem solid #CCC;
}
.p-detail-evaluation-table-year {
  width: 26%;
}
.p-detail-evaluation-table-year-1, .p-detail-evaluation-table-year-3, .p-detail-evaluation-table-year-5, .p-detail-evaluation-table-year-10 {
  width: 18%;
}
.p-detail-evaluation-table-year-2nd {
  width: 13%;
}
.p-detail-evaluation-table-rating, .p-detail-evaluation-table-return, .p-detail-evaluation-table-deviation {
  width: 29%;
}
@media screen and (min-width: 769px) {
  .p-detail-evaluation-wrap {
    display: flex;
    margin: 0 -1rem;
  }
}
@media screen and (min-width: 1160px) {
  .p-detail-evaluation-content, .p-detail-evaluation-content-left, .p-detail-evaluation-content-right {
    width: 100%;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1159px) {
  .p-detail-evaluation-content, .p-detail-evaluation-content-right, .p-detail-evaluation-content-left {
    width: 50%;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 769px) {
  .p-detail-evaluation-content-left {
    max-width: 64rem;
  }
}
@media screen and (min-width: 769px) {
  .p-detail-evaluation-content-right {
    max-width: 62rem;
  }
}
.p-detail-evaluation-box {
  margin-top: 2.5rem;
}
@media screen and (min-width: 769px) {
  .p-detail-evaluation-box {
    margin-top: 3rem;
  }
}
.p-detail-feature-header {
  display: flex;
  align-items: center;
}
.p-detail-feature-headline {
  font-size: 1.6rem;
  background-color: #CC000033;
  padding: 0.8rem 1.8rem;
}
.p-detail-info-list {
  display: flex;
  flex-wrap: wrap;
}
.p-detail-info-item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-detail-info-item {
    width: 33.3333%;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 769px) {
  .p-detail-info-item {
    margin-right: 4rem;
  }
}
.p-detail-info-link {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-detail-info-link {
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .p-detail-info-link {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
}
.p-detail-info-link:hover {
  color: #CC0000;
  text-decoration: underline;
}
.p-detail-info-link:hover .p-detail-info-ico {
  fill: #CC0000;
}
.p-detail-info-ico {
  fill: #333;
}
.p-detail-info-meta {
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .p-detail-info-meta {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .p-detail-info-meta {
    margin-left: 2rem;
  }
}
.p-detail-info-name {
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (min-width: 769px) {
  .p-detail-info-name {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-detail-info-date {
  font-size: 10px;
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .p-detail-info-date {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-detail-tab-nav {
  display: flex;
  margin: 0 -0.2rem;
}
.p-detail-tab-nav-item {
  font-weight: 700;
  text-align: center;
  width: calc(33.3333% - .4rem);
  border: 0.1rem solid #9E9E9E;
  border-radius: 6px;
  padding: 1.4rem;
  margin: 0 0.2rem;
}
.p-detail-tab-nav-item.active {
  color: #FFF;
  background-color: #CC0000CC;
  border-color: #CC0000;
}

.p-simulate-tab-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0.1rem;
}
.p-simulate-tab-nav-item, .p-simulate-tab-nav-item-large {
  font-weight: 700;
  text-align: center;
  width: calc(51 / 315 * 100%);
  background-color: #CC000033;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  padding: 1rem 0;
  margin: 0 0 0.1rem 0.1rem;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .p-simulate-tab-nav-item, .p-simulate-tab-nav-item-large {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  .p-simulate-tab-nav-item, .p-simulate-tab-nav-item-large {
    padding: 1.8rem 0;
    width: calc(96 / 1070 * 100%);
  }
}
.p-simulate-tab-nav-item.active, .active.p-simulate-tab-nav-item-large {
  color: #FFF;
  background-color: #CC0000;
}
@media screen and (max-width: 768px) {
  .p-simulate-tab-nav-item-large {
    width: calc(102 / 315 * 100%);
  }
}
.p-simulate-amount {
  font-weight: 700;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .p-simulate-amount {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-simulate-amount-arrow {
  stroke: #CC0000;
}
@media screen and (min-width: 769px) {
  .p-simulate-period {
    display: flex;
    justify-content: flex-end;
  }
}
.p-simulate-period-txt {
  color: #FFF;
  font-weight: 700;
  text-align: center;
  background-color: #CC0000CC;
  padding: 0.8rem;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (min-width: 769px) {
  .p-simulate-period-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 769px) {
  .p-simulate-caution {
    text-align: right;
  }
}
.p-simulate-list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px -0.4rem;
}
.p-simulate-item, .p-simulate-item-2nd {
  width: 50%;
  padding: 5px 0.4rem;
}
@media screen and (min-width: 769px) {
  .p-simulate-item, .p-simulate-item-2nd {
    width: 33.3333%;
  }
}
.p-simulate-item-2nd {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-simulate-item-2nd {
    width: 33.3333%;
  }
}
.p-simulate-item-2nd .p-simulate-box {
  width: 45%;
}
.p-simulate-item-2nd .p-simulate-box + .p-simulate-box {
  position: relative;
}
.p-simulate-item-2nd .p-simulate-box + .p-simulate-box::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-left: 0.1rem dotted #656565;
  position: absolute;
  left: -11%;
}
.p-simulate-box-outer {
  height: 100%;
  border: 0.1rem solid #9E9E9E;
  border-radius: 6px;
  padding: 1rem 1rem;
  position: relative;
}
.p-simulate-box-outer::after {
  content: "";
  height: 5px;
  width: calc(100% - 16px);
  background-size: auto auto;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #CC000066 3px, #CC000066 0.4rem);
  position: absolute;
  bottom: 0.1rem;
  left: 8px;
  right: 8px;
}
.p-simulate-box-header {
  color: #656565;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #CC0000;
  padding-bottom: 0.5rem;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .p-simulate-box-header {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-simulate-price-num {
  color: #CC0000;
  font-weight: 700;
  text-align: center;
  word-break: break-all;
}
.p-simulate-price-unit {
  color: #656565;
  font-weight: 700;
  text-align: right;
}

@media screen and (min-width: 769px) {
  .p-share {
    display: flex;
    margin: 0 -1rem;
  }
  .p-share::before {
    content: "";
    display: block;
    height: 100%;
    border-top: 0.1rem solid #CCC;
    border-bottom: 0.1rem solid #CCC;
    position: absolute;
    top: -0.1rem;
    right: 1rem;
    left: 1rem;
  }
}
.p-share-note {
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .p-share-note {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-share-table {
  min-width: initial;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-share-table {
    margin: 0 1rem;
  }
}
@media screen and (min-width: 769px) {
  .p-share-table:nth-of-type(even) tr:nth-of-type(odd) td {
    background-color: #EFEFEF;
  }
}
@media screen and (min-width: 769px) {
  .p-share-table:nth-of-type(even) tr:nth-of-type(even) td {
    background-color: #FFF;
  }
}
.p-share-table-date {
  width: 58%;
}

.p-info-table th {
  width: 9rem;
}
@media screen and (min-width: 769px) {
  .p-info-table th {
    width: 18.6rem;
  }
}
.p-info-table td {
  text-align: left;
}

.panel-wrap {
  position: relative;
  float: left;
  padding: 0;
  background-color: rgba(11, 24, 109, 0.4);
  border-radius: 3px;
  padding: 5px 15px;
  margin-top: 10px;
  font-size: 18px;
  text-decoration: none;
}
.panel-wrap div, .panel-wrap p {
  font-size: 18px;
  text-decoration: none;
}

a.panel-btn, span.panel-btn {
  display: block;
  position: relative;
  /*float:  left */
  z-index: 100;
  padding: 5px 15px 0 5px;
  font-size: 18px;
  /*line-height:  40px */
  text-decoration: none;
  border-bottom: 1px solid #000;
  cursor: pointer;
}

a.panel-btn::after, span.panel-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #CC0000 transparent transparent;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.panel {
  display: none;
  position: absolute;
  top: 45px;
  left: 7px;
  z-index: 1000;
  /*width:  110px */
  margin-left: 10px;
  padding: 12px 15px;
  background: #fff;
  border: 5px solid rgba(11, 24, 109, 0.4);
  border-radius: 3px;
  box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.panel::after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
}

#panel::before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
}

.panel::after {
  top: -35px;
  left: 35px;
  border: 15px solid transparent;
  border-bottom: 15px solid rgba(11, 24, 109, 0.4);
}
.panel a {
  display: block;
  background: rgba(11, 24, 109, 0.4);
  padding: 7px 12px;
  color: #CC0000;
  border-bottom: 1px dotted #CC0000;
  white-space: nowrap;
}
.panel a.last {
  border-bottom: none;
}
.panel a span {
  font-size: 70%;
}
.panel a:active {
  background: #CC0000;
  color: #fff;
}
.panel a.selected {
  background: #00a7db;
  color: #fff;
}
.panel div {
  display: block;
  background: #fff;
  padding: 7px 12px;
  border-bottom: 1px dotted #CC0000;
  white-space: nowrap;
}
.panel div.last {
  border-bottom: none;
}
.panel div span {
  font-size: 70%;
}
.panel div:active, .panel div.selected {
  background: #CC0000;
  color: #fff;
}
.panel p {
  display: block;
  background: #FFE8E8;
  padding: 7px 12px;
  color: #CC0000;
  border-bottom: 1px dotted #CC0000;
  white-space: nowrap;
}
.panel p.last {
  border-bottom: none;
}
.panel p span {
  font-size: 70%;
}
.panel p:active, .panel p.selected {
  background: #CC0000;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .panel-wrap {
    margin-top: 0;
    margin-right: 15px;
  }
}
.term-select {
  color: #333;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  text-align: center;
  border: 1px solid #CC0000;
  padding: 5px 30px 5px 15px;
}
.term-select:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  -webkit-transform: translateY(1px);
  -webkit-transform-transform: translateY(1px);
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -webkit-box-sizing-box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-top: 4px solid #CC0000;
  pointer-events: none;
}
.term-select span {
  display: block;
}

#term-pulldown {
  display: none;
}
#term-pulldown.active {
  position: absolute;
  display: block;
  z-index: 100;
  cursor: pointer;
}
#term-pulldown:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  -webkit-transform: translateY(1px);
  -webkit-transform-transform: translateY(1px);
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -webkit-box-sizing-box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-top: 4px solid #CC0000;
  pointer-events: none;
}
#term-pulldown ul {
  width: auto;
  height: 360px;
  position: relative;
  top: 20px;
  left: 0;
  z-index: 10;
  background-color: #FFF;
  border-radius: 5px;
  border: 1px solid #CC0000;
  list-style-type: none;
  padding: 0;
}
#term-pulldown ul:before, #term-pulldown ul:after {
  content: "";
  width: 0px;
  border-color: #fff;
  border-style: solid;
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 99;
  -webkit-transform: translateX(-50%);
  -webkit-transform-transform: translateX(-50%);
  pointer-events: none;
}
#term-pulldown ul:before {
  border-color: #CC0000;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-width: 11px;
  top: -22px;
}
#term-pulldown ul:after {
  border-color: #fff;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-width: 11px;
  top: -21px;
}
#term-pulldown li {
  text-align: left;
  left: 0;
  width: 148px;
  height: 36px;
  display: table;
}
#term-pulldown li + li {
  border-top: 1px dotted #ccc;
}
#term-pulldown li:first-child {
  top: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#term-pulldown li:first-child:hover:after, #term-pulldown li:first-child.active:after {
  content: "";
  width: 0px;
  border-color: #CC0000;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-style: solid;
  border-width: 13px;
  position: absolute;
  top: -24px;
  left: 50%;
  z-index: 100;
  -webkit-transform: translateX(-50%);
  -webkit-transform-transform: translateX(-50%);
}
#term-pulldown li:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#term-pulldown li a {
  padding-left: 20px;
  padding-left-width: 100%;
  height: 100%;
  color: #333 !important;
  display: table-cell;
  vertical-align: middle;
  text-decoration: none;
  pointer-events: auto;
}
#term-pulldown li:hover, #term-pulldown li.active {
  background-color: #CC0000;
}
#term-pulldown li:hover > a, #term-pulldown li.active > a {
  color: #fff !important;
  vertical-align: middle;
}

.star-color {
  color: #0b186d;
}

#investment_result .investment_result_edit_initial_investment svg {
  stroke: #CC0000;
}
#investment_result .investment_titles .investment_result_title:first-child, #investment_result .investment_result_table .value {
  color: #CC0000;
}

.theme-active {
  color: #FFF;
  background-color: rgba(11, 24, 109, 0.8);
  border-color: #0b186d;
}

.category-active {
  color: #FFF;
  background-color: rgba(11, 24, 109, 0.8);
  border-color: #0b186d;
}

.bunpai-active {
  color: #FFF;
  background-color: rgba(11, 24, 109, 0.8);
  border-color: #0b186d;
}

/* object/utility/_align.scss
-------------------------------------------------- */
.u-va-baseline {
  vertical-align: baseline !important;
}

.u-va-top {
  vertical-align: top !important;
}

.u-va-middle {
  vertical-align: middle !important;
}

.u-va-bottom {
  vertical-align: bottom !important;
}

.u-va-text-bottom {
  vertical-align: text-bottom !important;
}

.u-va-text-top {
  vertical-align: text-top !important;
}

/* object/utility/_flex.scss
-------------------------------------------------- */
.u-flex {
  display: flex !important;
}

@media screen and (min-width: 769px) {
  .u-flex-md {
    display: flex !important;
  }
}

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

@media screen and (min-width: 769px) {
  .u-inlineflex-md {
    display: inline-flex !important;
  }
}

.u-jc-c {
  justify-content: center !important;
}

.u-jc-fe {
  justify-content: flex-end !important;
}

.u-jc-fs {
  justify-content: flex-start !important;
}

.u-jc-sa {
  justify-content: space-around !important;
}

.u-jc-sb {
  justify-content: space-between !important;
}

.u-jc-se {
  justify-content: space-evenly !important;
}

@media screen and (min-width: 769px) {
  .u-jc-c-md {
    justify-content: center !important;
  }
}

@media screen and (min-width: 769px) {
  .u-jc-fe-md {
    justify-content: flex-end !important;
  }
}

@media screen and (min-width: 769px) {
  .u-jc-fs-md {
    justify-content: flex-start !important;
  }
}

@media screen and (min-width: 769px) {
  .u-jc-sa-md {
    justify-content: space-around !important;
  }
}

@media screen and (min-width: 769px) {
  .u-jc-sb-md {
    justify-content: space-between !important;
  }
}

@media screen and (min-width: 769px) {
  .u-jc-se-md {
    justify-content: space-evenly !important;
  }
}

.u-ai-bl {
  align-items: baseline !important;
}

.u-ai-c {
  align-items: center !important;
}

.u-ai-fe {
  align-items: flex-end !important;
}

.u-ai-fs {
  align-items: flex-start !important;
}

.u-ai-s {
  align-items: stretch !important;
}

@media screen and (min-width: 769px) {
  .u-ai-bl-md {
    align-items: baseline !important;
  }
}

@media screen and (min-width: 769px) {
  .u-ai-c-md {
    align-items: center !important;
  }
}

@media screen and (min-width: 769px) {
  .u-ai-fe-md {
    align-items: flex-end !important;
  }
}

@media screen and (min-width: 769px) {
  .u-ai-fs-md {
    align-items: flex-start !important;
  }
}

@media screen and (min-width: 769px) {
  .u-ai-s-md {
    align-items: stretch !important;
  }
}

.u-fd-c {
  flex-direction: column !important;
}

.u-fd-cr {
  flex-direction: column-reverse !important;
}

.u-fd-r {
  flex-direction: row !important;
}

.u-fd-rr {
  flex-direction: row-reverse !important;
}

@media screen and (min-width: 769px) {
  .u-fd-c-md {
    flex-direction: column !important;
  }
}

@media screen and (min-width: 769px) {
  .u-fd-cr-md {
    flex-direction: column-reverse !important;
  }
}

@media screen and (min-width: 769px) {
  .u-fd-r-md {
    flex-direction: row !important;
  }
}

@media screen and (min-width: 769px) {
  .u-fd-rr-md {
    flex-direction: row-reverse !important;
  }
}

/* object/utility/_font.scss
-------------------------------------------------- */
.u-ta-center {
  text-align: center !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-ta-justify {
  text-align: justify !important;
}

.u-text-wrap {
  white-space: normal !important;
}

.u-text-nowrap {
  white-space: nowrap !important;
}

.u-fw-400 {
  font-weight: 400 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

.u-fs-normal {
  font-style: normal !important;
}

.u-fs-italic {
  font-style: italic !important;
}

.u-fs-10 {
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .u-fs-10-md {
    font-size: 1rem;
  }
}

.u-fs-11 {
  font-size: 1.1rem;
}

.u-fs-12 {
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .u-fs-12-md {
    font-size: 1.2rem;
  }
}

.u-fs-13 {
  font-size: 1.3rem;
}
@media screen and (min-width: 769px) {
  .u-fs-13-md {
    font-size: 1.3rem;
  }
}

.u-fs-14 {
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .u-fs-14-md {
    font-size: 1.4rem;
  }
}

.u-fs-15 {
  font-size: 1.5rem;
}
@media screen and (min-width: 769px) {
  .u-fs-15-md {
    font-size: 1.5rem;
  }
}

.u-fs-16 {
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .u-fs-16-md {
    font-size: 1.6rem;
  }
}

.u-fs-17 {
  font-size: 1.7rem;
}
@media screen and (min-width: 769px) {
  .u-fs-17-md {
    font-size: 1.7rem;
  }
}

.u-fs-18 {
  font-size: 1.8rem;
}
@media screen and (min-width: 769px) {
  .u-fs-18-md {
    font-size: 1.8rem;
  }
}

.u-fs-19 {
  font-size: 1.9rem;
}
@media screen and (min-width: 769px) {
  .u-fs-19-md {
    font-size: 1.9rem;
  }
}

.u-fs-20 {
  font-size: 2rem;
}
@media screen and (min-width: 769px) {
  .u-fs-20-md {
    font-size: 2rem;
  }
}

.u-fs-21 {
  font-size: 2.1rem;
}
@media screen and (min-width: 769px) {
  .u-fs-21-md {
    font-size: 2.1rem;
  }
}

.u-fs-22 {
  font-size: 2.2rem;
}
@media screen and (min-width: 769px) {
  .u-fs-22-md {
    font-size: 2.2rem;
  }
}

.u-fs-23 {
  font-size: 2.3rem;
}
@media screen and (min-width: 769px) {
  .u-fs-23-md {
    font-size: 2.3rem;
  }
}

.u-fs-24 {
  font-size: 2.4rem;
}
@media screen and (min-width: 769px) {
  .u-fs-24-md {
    font-size: 2.4rem;
  }
}

.u-fs-25 {
  font-size: 2.5rem;
}
@media screen and (min-width: 769px) {
  .u-fs-25-md {
    font-size: 2.5rem;
  }
}

.u-fs-26 {
  font-size: 2.6rem;
}
@media screen and (min-width: 769px) {
  .u-fs-26-md {
    font-size: 2.6rem;
  }
}

.u-fs-27 {
  font-size: 2.7rem;
}
@media screen and (min-width: 769px) {
  .u-fs-27-md {
    font-size: 2.7rem;
  }
}

.u-fs-28 {
  font-size: 2.8rem;
}
@media screen and (min-width: 769px) {
  .u-fs-28-md {
    font-size: 2.8rem;
  }
}

.u-fs-29 {
  font-size: 2.9rem;
}
@media screen and (min-width: 769px) {
  .u-fs-29-md {
    font-size: 2.9rem;
  }
}

.u-fs-30 {
  font-size: 3rem;
}
@media screen and (min-width: 769px) {
  .u-fs-30-md {
    font-size: 3rem;
  }
}

.u-fs-31 {
  font-size: 3.1rem;
}
@media screen and (min-width: 769px) {
  .u-fs-31-md {
    font-size: 3.1rem;
  }
}

.u-fs-32 {
  font-size: 3.2rem;
}
@media screen and (min-width: 769px) {
  .u-fs-32-md {
    font-size: 3.2rem;
  }
}

.u-fs-33 {
  font-size: 3.3rem;
}
@media screen and (min-width: 769px) {
  .u-fs-33-md {
    font-size: 3.3rem;
  }
}

.u-fs-34 {
  font-size: 3.4rem;
}
@media screen and (min-width: 769px) {
  .u-fs-34-md {
    font-size: 3.4rem;
  }
}

.u-fs-35 {
  font-size: 3.5rem;
}
@media screen and (min-width: 769px) {
  .u-fs-35-md {
    font-size: 3.5rem;
  }
}

.u-fs-36 {
  font-size: 3.6rem;
}
@media screen and (min-width: 769px) {
  .u-fs-36-md {
    font-size: 3.6rem;
  }
}

.u-width-10 {
  width: 1rem;
}

.u-width-20 {
  width: 2rem;
}

.u-width-30 {
  width: 3rem;
}

.u-width-40 {
  width: 4rem;
}

.u-width-50 {
  width: 5rem;
}

.u-width-60 {
  width: 6rem;
}

.u-width-70 {
  width: 7rem;
}

.u-width-80 {
  width: 8rem;
}

.u-width-90 {
  width: 9rem;
}

.u-width-100 {
  width: 10rem;
}

.u-width-110 {
  width: 11rem;
}

.u-width-120 {
  width: 12rem;
}

.u-width-130 {
  width: 13rem;
}

.u-width-140 {
  width: 14rem;
}

.u-width-150 {
  width: 15rem;
}

.u-width-160 {
  width: 16rem;
}

.u-width-170 {
  width: 17rem;
}

.u-width-180 {
  width: 18rem;
}

.u-width-190 {
  width: 19rem;
}

.u-width-200 {
  width: 20rem;
}

.u-width-210 {
  width: 21rem;
}

.u-width-220 {
  width: 22rem;
}

.u-width-230 {
  width: 23rem;
}

.u-width-240 {
  width: 24rem;
}

.u-width-250 {
  width: 25rem;
}

.u-width-260 {
  width: 26rem;
}

.u-width-270 {
  width: 27rem;
}

.u-width-280 {
  width: 28rem;
}

.u-width-280 {
  width: 28rem;
}

.u-width-290 {
  width: 29rem;
}

.u-width-300 {
  width: 30rem;
}

/* object/utility/_margin.scss
-------------------------------------------------- */
.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-mt-0,
.u-my-0 {
  margin-top: 0px !important;
}

.u-mt-5,
.u-my-5 {
  margin-top: 5px !important;
}

.u-mt-10,
.u-my-10 {
  margin-top: 10px !important;
}

.u-mt-15,
.u-my-15 {
  margin-top: 15px !important;
}

.u-mt-20,
.u-my-20 {
  margin-top: 20px !important;
}

.u-mt-25,
.u-my-25 {
  margin-top: 25px !important;
}

.u-mt-30,
.u-my-30 {
  margin-top: 30px !important;
}

.u-mt-35,
.u-my-35 {
  margin-top: 35px !important;
}

.u-mt-40,
.u-my-40 {
  margin-top: 40px !important;
}

.u-mt-45,
.u-my-45 {
  margin-top: 45px !important;
}

.u-mt-50,
.u-my-50 {
  margin-top: 50px !important;
}

.u-mt-55,
.u-my-55 {
  margin-top: 55px !important;
}

.u-mt-60,
.u-my-60 {
  margin-top: 60px !important;
}

.u-mt-65,
.u-my-65 {
  margin-top: 65px !important;
}

.u-mt-70,
.u-my-70 {
  margin-top: 70px !important;
}

.u-mt-75,
.u-my-75 {
  margin-top: 75px !important;
}

.u-mt-80,
.u-my-80 {
  margin-top: 80px !important;
}

.u-mt-85,
.u-my-85 {
  margin-top: 85px !important;
}

.u-mt-90,
.u-my-90 {
  margin-top: 90px !important;
}

.u-mt-95,
.u-my-95 {
  margin-top: 95px !important;
}

.u-mt-100,
.u-my-100 {
  margin-top: 100px !important;
}

.u-mb-0,
.u-my-0 {
  margin-bottom: 0px !important;
}

.u-mb-5,
.u-my-5 {
  margin-bottom: 5px !important;
}

.u-mb-10,
.u-my-10 {
  margin-bottom: 10px !important;
}

.u-mb-15,
.u-my-15 {
  margin-bottom: 15px !important;
}

.u-mb-20,
.u-my-20 {
  margin-bottom: 20px !important;
}

.u-mb-25,
.u-my-25 {
  margin-bottom: 25px !important;
}

.u-mb-30,
.u-my-30 {
  margin-bottom: 30px !important;
}

.u-mb-35,
.u-my-35 {
  margin-bottom: 35px !important;
}

.u-mb-40,
.u-my-40 {
  margin-bottom: 40px !important;
}

.u-mb-45,
.u-my-45 {
  margin-bottom: 45px !important;
}

.u-mb-50,
.u-my-50 {
  margin-bottom: 50px !important;
}

.u-mb-55,
.u-my-55 {
  margin-bottom: 55px !important;
}

.u-mb-60,
.u-my-60 {
  margin-bottom: 60px !important;
}

.u-mb-65,
.u-my-65 {
  margin-bottom: 65px !important;
}

.u-mb-70,
.u-my-70 {
  margin-bottom: 70px !important;
}

.u-mb-75,
.u-my-75 {
  margin-bottom: 75px !important;
}

.u-mb-80,
.u-my-80 {
  margin-bottom: 80px !important;
}

.u-mb-85,
.u-my-85 {
  margin-bottom: 85px !important;
}

.u-mb-90,
.u-my-90 {
  margin-bottom: 90px !important;
}

.u-mb-95,
.u-my-95 {
  margin-bottom: 95px !important;
}

.u-mb-100,
.u-my-100 {
  margin-bottom: 100px !important;
}

.u-ml-0,
.u-mx-0 {
  margin-left: 0px !important;
}

.u-ml-5,
.u-mx-5 {
  margin-left: 5px !important;
}

.u-ml-10,
.u-mx-10 {
  margin-left: 10px !important;
}

.u-ml-15,
.u-mx-15 {
  margin-left: 15px !important;
}

.u-ml-20,
.u-mx-20 {
  margin-left: 20px !important;
}

.u-ml-25,
.u-mx-25 {
  margin-left: 25px !important;
}

.u-ml-30,
.u-mx-30 {
  margin-left: 30px !important;
}

.u-ml-35,
.u-mx-35 {
  margin-left: 35px !important;
}

.u-ml-40,
.u-mx-40 {
  margin-left: 40px !important;
}

.u-ml-45,
.u-mx-45 {
  margin-left: 45px !important;
}

.u-ml-50,
.u-mx-50 {
  margin-left: 50px !important;
}

.u-ml-55,
.u-mx-55 {
  margin-left: 55px !important;
}

.u-ml-60,
.u-mx-60 {
  margin-left: 60px !important;
}

.u-ml-65,
.u-mx-65 {
  margin-left: 65px !important;
}

.u-ml-70,
.u-mx-70 {
  margin-left: 70px !important;
}

.u-ml-75,
.u-mx-75 {
  margin-left: 75px !important;
}

.u-ml-80,
.u-mx-80 {
  margin-left: 80px !important;
}

.u-ml-85,
.u-mx-85 {
  margin-left: 85px !important;
}

.u-ml-90,
.u-mx-90 {
  margin-left: 90px !important;
}

.u-ml-95,
.u-mx-95 {
  margin-left: 95px !important;
}

.u-ml-100,
.u-mx-100 {
  margin-left: 100px !important;
}

.u-mr-0,
.u-mx-0 {
  margin-right: 0px !important;
}

.u-mr-5,
.u-mx-5 {
  margin-right: 5px !important;
}

.u-mr-10,
.u-mx-10 {
  margin-right: 10px !important;
}

.u-mr-15,
.u-mx-15 {
  margin-right: 15px !important;
}

.u-mr-20,
.u-mx-20 {
  margin-right: 20px !important;
}

.u-mr-25,
.u-mx-25 {
  margin-right: 25px !important;
}

.u-mr-30,
.u-mx-30 {
  margin-right: 30px !important;
}

.u-mr-35,
.u-mx-35 {
  margin-right: 35px !important;
}

.u-mr-40,
.u-mx-40 {
  margin-right: 40px !important;
}

.u-mr-45,
.u-mx-45 {
  margin-right: 45px !important;
}

.u-mr-50,
.u-mx-50 {
  margin-right: 50px !important;
}

.u-mr-55,
.u-mx-55 {
  margin-right: 55px !important;
}

.u-mr-60,
.u-mx-60 {
  margin-right: 60px !important;
}

.u-mr-65,
.u-mx-65 {
  margin-right: 65px !important;
}

.u-mr-70,
.u-mx-70 {
  margin-right: 70px !important;
}

.u-mr-75,
.u-mx-75 {
  margin-right: 75px !important;
}

.u-mr-80,
.u-mx-80 {
  margin-right: 80px !important;
}

.u-mr-85,
.u-mx-85 {
  margin-right: 85px !important;
}

.u-mr-90,
.u-mx-90 {
  margin-right: 90px !important;
}

.u-mr-95,
.u-mx-95 {
  margin-right: 95px !important;
}

.u-mr-100,
.u-mx-100 {
  margin-right: 100px !important;
}

@media screen and (min-width: 577px) {
  .u-mx-auto-sm {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .u-mt-0-sm,
.u-my-0-sm {
    margin-top: 0px !important;
  }

  .u-mt-5-sm,
.u-my-5-sm {
    margin-top: 5px !important;
  }

  .u-mt-10-sm,
.u-my-10-sm {
    margin-top: 10px !important;
  }

  .u-mt-15-sm,
.u-my-15-sm {
    margin-top: 15px !important;
  }

  .u-mt-20-sm,
.u-my-20-sm {
    margin-top: 20px !important;
  }

  .u-mt-25-sm,
.u-my-25-sm {
    margin-top: 25px !important;
  }

  .u-mt-30-sm,
.u-my-30-sm {
    margin-top: 30px !important;
  }

  .u-mt-35-sm,
.u-my-35-sm {
    margin-top: 35px !important;
  }

  .u-mt-40-sm,
.u-my-40-sm {
    margin-top: 40px !important;
  }

  .u-mt-45-sm,
.u-my-45-sm {
    margin-top: 45px !important;
  }

  .u-mt-50-sm,
.u-my-50-sm {
    margin-top: 50px !important;
  }

  .u-mt-55-sm,
.u-my-55-sm {
    margin-top: 55px !important;
  }

  .u-mt-60-sm,
.u-my-60-sm {
    margin-top: 60px !important;
  }

  .u-mt-65-sm,
.u-my-65-sm {
    margin-top: 65px !important;
  }

  .u-mt-70-sm,
.u-my-70-sm {
    margin-top: 70px !important;
  }

  .u-mt-75-sm,
.u-my-75-sm {
    margin-top: 75px !important;
  }

  .u-mt-80-sm,
.u-my-80-sm {
    margin-top: 80px !important;
  }

  .u-mt-85-sm,
.u-my-85-sm {
    margin-top: 85px !important;
  }

  .u-mt-90-sm,
.u-my-90-sm {
    margin-top: 90px !important;
  }

  .u-mt-95-sm,
.u-my-95-sm {
    margin-top: 95px !important;
  }

  .u-mt-100-sm,
.u-my-100-sm {
    margin-top: 100px !important;
  }

  .u-mb-0-sm,
.u-my-0-sm {
    margin-bottom: 0px !important;
  }

  .u-mb-5-sm,
.u-my-5-sm {
    margin-bottom: 5px !important;
  }

  .u-mb-10-sm,
.u-my-10-sm {
    margin-bottom: 10px !important;
  }

  .u-mb-15-sm,
.u-my-15-sm {
    margin-bottom: 15px !important;
  }

  .u-mb-20-sm,
.u-my-20-sm {
    margin-bottom: 20px !important;
  }

  .u-mb-25-sm,
.u-my-25-sm {
    margin-bottom: 25px !important;
  }

  .u-mb-30-sm,
.u-my-30-sm {
    margin-bottom: 30px !important;
  }

  .u-mb-35-sm,
.u-my-35-sm {
    margin-bottom: 35px !important;
  }

  .u-mb-40-sm,
.u-my-40-sm {
    margin-bottom: 40px !important;
  }

  .u-mb-45-sm,
.u-my-45-sm {
    margin-bottom: 45px !important;
  }

  .u-mb-50-sm,
.u-my-50-sm {
    margin-bottom: 50px !important;
  }

  .u-mb-55-sm,
.u-my-55-sm {
    margin-bottom: 55px !important;
  }

  .u-mb-60-sm,
.u-my-60-sm {
    margin-bottom: 60px !important;
  }

  .u-mb-65-sm,
.u-my-65-sm {
    margin-bottom: 65px !important;
  }

  .u-mb-70-sm,
.u-my-70-sm {
    margin-bottom: 70px !important;
  }

  .u-mb-75-sm,
.u-my-75-sm {
    margin-bottom: 75px !important;
  }

  .u-mb-80-sm,
.u-my-80-sm {
    margin-bottom: 80px !important;
  }

  .u-mb-85-sm,
.u-my-85-sm {
    margin-bottom: 85px !important;
  }

  .u-mb-90-sm,
.u-my-90-sm {
    margin-bottom: 90px !important;
  }

  .u-mb-95-sm,
.u-my-95-sm {
    margin-bottom: 95px !important;
  }

  .u-mb-100-sm,
.u-my-100-sm {
    margin-bottom: 100px !important;
  }

  .u-ml-0-sm,
.u-mx-0-sm {
    margin-left: 0px !important;
  }

  .u-ml-5-sm,
.u-mx-5-sm {
    margin-left: 5px !important;
  }

  .u-ml-10-sm,
.u-mx-10-sm {
    margin-left: 10px !important;
  }

  .u-ml-15-sm,
.u-mx-15-sm {
    margin-left: 15px !important;
  }

  .u-ml-20-sm,
.u-mx-20-sm {
    margin-left: 20px !important;
  }

  .u-ml-25-sm,
.u-mx-25-sm {
    margin-left: 25px !important;
  }

  .u-ml-30-sm,
.u-mx-30-sm {
    margin-left: 30px !important;
  }

  .u-ml-35-sm,
.u-mx-35-sm {
    margin-left: 35px !important;
  }

  .u-ml-40-sm,
.u-mx-40-sm {
    margin-left: 40px !important;
  }

  .u-ml-45-sm,
.u-mx-45-sm {
    margin-left: 45px !important;
  }

  .u-ml-50-sm,
.u-mx-50-sm {
    margin-left: 50px !important;
  }

  .u-ml-55-sm,
.u-mx-55-sm {
    margin-left: 55px !important;
  }

  .u-ml-60-sm,
.u-mx-60-sm {
    margin-left: 60px !important;
  }

  .u-ml-65-sm,
.u-mx-65-sm {
    margin-left: 65px !important;
  }

  .u-ml-70-sm,
.u-mx-70-sm {
    margin-left: 70px !important;
  }

  .u-ml-75-sm,
.u-mx-75-sm {
    margin-left: 75px !important;
  }

  .u-ml-80-sm,
.u-mx-80-sm {
    margin-left: 80px !important;
  }

  .u-ml-85-sm,
.u-mx-85-sm {
    margin-left: 85px !important;
  }

  .u-ml-90-sm,
.u-mx-90-sm {
    margin-left: 90px !important;
  }

  .u-ml-95-sm,
.u-mx-95-sm {
    margin-left: 95px !important;
  }

  .u-ml-100-sm,
.u-mx-100-sm {
    margin-left: 100px !important;
  }

  .u-mr-0-sm,
.u-mx-0-sm {
    margin-right: 0px !important;
  }

  .u-mr-5-sm,
.u-mx-5-sm {
    margin-right: 5px !important;
  }

  .u-mr-10-sm,
.u-mx-10-sm {
    margin-right: 10px !important;
  }

  .u-mr-15-sm,
.u-mx-15-sm {
    margin-right: 15px !important;
  }

  .u-mr-20-sm,
.u-mx-20-sm {
    margin-right: 20px !important;
  }

  .u-mr-25-sm,
.u-mx-25-sm {
    margin-right: 25px !important;
  }

  .u-mr-30-sm,
.u-mx-30-sm {
    margin-right: 30px !important;
  }

  .u-mr-35-sm,
.u-mx-35-sm {
    margin-right: 35px !important;
  }

  .u-mr-40-sm,
.u-mx-40-sm {
    margin-right: 40px !important;
  }

  .u-mr-45-sm,
.u-mx-45-sm {
    margin-right: 45px !important;
  }

  .u-mr-50-sm,
.u-mx-50-sm {
    margin-right: 50px !important;
  }

  .u-mr-55-sm,
.u-mx-55-sm {
    margin-right: 55px !important;
  }

  .u-mr-60-sm,
.u-mx-60-sm {
    margin-right: 60px !important;
  }

  .u-mr-65-sm,
.u-mx-65-sm {
    margin-right: 65px !important;
  }

  .u-mr-70-sm,
.u-mx-70-sm {
    margin-right: 70px !important;
  }

  .u-mr-75-sm,
.u-mx-75-sm {
    margin-right: 75px !important;
  }

  .u-mr-80-sm,
.u-mx-80-sm {
    margin-right: 80px !important;
  }

  .u-mr-85-sm,
.u-mx-85-sm {
    margin-right: 85px !important;
  }

  .u-mr-90-sm,
.u-mx-90-sm {
    margin-right: 90px !important;
  }

  .u-mr-95-sm,
.u-mx-95-sm {
    margin-right: 95px !important;
  }

  .u-mr-100-sm,
.u-mx-100-sm {
    margin-right: 100px !important;
  }
}
@media screen and (min-width: 769px) {
  .u-mx-auto-md {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .u-mt-0-md,
.u-my-0-md {
    margin-top: 0px !important;
  }

  .u-mt-5-md,
.u-my-5-md {
    margin-top: 5px !important;
  }

  .u-mt-10-md,
.u-my-10-md {
    margin-top: 10px !important;
  }

  .u-mt-15-md,
.u-my-15-md {
    margin-top: 15px !important;
  }

  .u-mt-20-md,
.u-my-20-md {
    margin-top: 20px !important;
  }

  .u-mt-25-md,
.u-my-25-md {
    margin-top: 25px !important;
  }

  .u-mt-30-md,
.u-my-30-md {
    margin-top: 30px !important;
  }

  .u-mt-35-md,
.u-my-35-md {
    margin-top: 35px !important;
  }

  .u-mt-40-md,
.u-my-40-md {
    margin-top: 40px !important;
  }

  .u-mt-45-md,
.u-my-45-md {
    margin-top: 45px !important;
  }

  .u-mt-50-md,
.u-my-50-md {
    margin-top: 50px !important;
  }

  .u-mt-55-md,
.u-my-55-md {
    margin-top: 55px !important;
  }

  .u-mt-60-md,
.u-my-60-md {
    margin-top: 60px !important;
  }

  .u-mt-65-md,
.u-my-65-md {
    margin-top: 65px !important;
  }

  .u-mt-70-md,
.u-my-70-md {
    margin-top: 70px !important;
  }

  .u-mt-75-md,
.u-my-75-md {
    margin-top: 75px !important;
  }

  .u-mt-80-md,
.u-my-80-md {
    margin-top: 80px !important;
  }

  .u-mt-85-md,
.u-my-85-md {
    margin-top: 85px !important;
  }

  .u-mt-90-md,
.u-my-90-md {
    margin-top: 90px !important;
  }

  .u-mt-95-md,
.u-my-95-md {
    margin-top: 95px !important;
  }

  .u-mt-100-md,
.u-my-100-md {
    margin-top: 100px !important;
  }

  .u-mb-0-md,
.u-my-0-md {
    margin-bottom: 0px !important;
  }

  .u-mb-5-md,
.u-my-5-md {
    margin-bottom: 5px !important;
  }

  .u-mb-10-md,
.u-my-10-md {
    margin-bottom: 10px !important;
  }

  .u-mb-15-md,
.u-my-15-md {
    margin-bottom: 15px !important;
  }

  .u-mb-20-md,
.u-my-20-md {
    margin-bottom: 20px !important;
  }

  .u-mb-25-md,
.u-my-25-md {
    margin-bottom: 25px !important;
  }

  .u-mb-30-md,
.u-my-30-md {
    margin-bottom: 30px !important;
  }

  .u-mb-35-md,
.u-my-35-md {
    margin-bottom: 35px !important;
  }

  .u-mb-40-md,
.u-my-40-md {
    margin-bottom: 40px !important;
  }

  .u-mb-45-md,
.u-my-45-md {
    margin-bottom: 45px !important;
  }

  .u-mb-50-md,
.u-my-50-md {
    margin-bottom: 50px !important;
  }

  .u-mb-55-md,
.u-my-55-md {
    margin-bottom: 55px !important;
  }

  .u-mb-60-md,
.u-my-60-md {
    margin-bottom: 60px !important;
  }

  .u-mb-65-md,
.u-my-65-md {
    margin-bottom: 65px !important;
  }

  .u-mb-70-md,
.u-my-70-md {
    margin-bottom: 70px !important;
  }

  .u-mb-75-md,
.u-my-75-md {
    margin-bottom: 75px !important;
  }

  .u-mb-80-md,
.u-my-80-md {
    margin-bottom: 80px !important;
  }

  .u-mb-85-md,
.u-my-85-md {
    margin-bottom: 85px !important;
  }

  .u-mb-90-md,
.u-my-90-md {
    margin-bottom: 90px !important;
  }

  .u-mb-95-md,
.u-my-95-md {
    margin-bottom: 95px !important;
  }

  .u-mb-100-md,
.u-my-100-md {
    margin-bottom: 100px !important;
  }

  .u-ml-0-md,
.u-mx-0-md {
    margin-left: 0px !important;
  }

  .u-ml-5-md,
.u-mx-5-md {
    margin-left: 5px !important;
  }

  .u-ml-10-md,
.u-mx-10-md {
    margin-left: 10px !important;
  }

  .u-ml-15-md,
.u-mx-15-md {
    margin-left: 15px !important;
  }

  .u-ml-20-md,
.u-mx-20-md {
    margin-left: 20px !important;
  }

  .u-ml-25-md,
.u-mx-25-md {
    margin-left: 25px !important;
  }

  .u-ml-30-md,
.u-mx-30-md {
    margin-left: 30px !important;
  }

  .u-ml-35-md,
.u-mx-35-md {
    margin-left: 35px !important;
  }

  .u-ml-40-md,
.u-mx-40-md {
    margin-left: 40px !important;
  }

  .u-ml-45-md,
.u-mx-45-md {
    margin-left: 45px !important;
  }

  .u-ml-50-md,
.u-mx-50-md {
    margin-left: 50px !important;
  }

  .u-ml-55-md,
.u-mx-55-md {
    margin-left: 55px !important;
  }

  .u-ml-60-md,
.u-mx-60-md {
    margin-left: 60px !important;
  }

  .u-ml-65-md,
.u-mx-65-md {
    margin-left: 65px !important;
  }

  .u-ml-70-md,
.u-mx-70-md {
    margin-left: 70px !important;
  }

  .u-ml-75-md,
.u-mx-75-md {
    margin-left: 75px !important;
  }

  .u-ml-80-md,
.u-mx-80-md {
    margin-left: 80px !important;
  }

  .u-ml-85-md,
.u-mx-85-md {
    margin-left: 85px !important;
  }

  .u-ml-90-md,
.u-mx-90-md {
    margin-left: 90px !important;
  }

  .u-ml-95-md,
.u-mx-95-md {
    margin-left: 95px !important;
  }

  .u-ml-100-md,
.u-mx-100-md {
    margin-left: 100px !important;
  }

  .u-mr-0-md,
.u-mx-0-md {
    margin-right: 0px !important;
  }

  .u-mr-5-md,
.u-mx-5-md {
    margin-right: 5px !important;
  }

  .u-mr-10-md,
.u-mx-10-md {
    margin-right: 10px !important;
  }

  .u-mr-15-md,
.u-mx-15-md {
    margin-right: 15px !important;
  }

  .u-mr-20-md,
.u-mx-20-md {
    margin-right: 20px !important;
  }

  .u-mr-25-md,
.u-mx-25-md {
    margin-right: 25px !important;
  }

  .u-mr-30-md,
.u-mx-30-md {
    margin-right: 30px !important;
  }

  .u-mr-35-md,
.u-mx-35-md {
    margin-right: 35px !important;
  }

  .u-mr-40-md,
.u-mx-40-md {
    margin-right: 40px !important;
  }

  .u-mr-45-md,
.u-mx-45-md {
    margin-right: 45px !important;
  }

  .u-mr-50-md,
.u-mx-50-md {
    margin-right: 50px !important;
  }

  .u-mr-55-md,
.u-mx-55-md {
    margin-right: 55px !important;
  }

  .u-mr-60-md,
.u-mx-60-md {
    margin-right: 60px !important;
  }

  .u-mr-65-md,
.u-mx-65-md {
    margin-right: 65px !important;
  }

  .u-mr-70-md,
.u-mx-70-md {
    margin-right: 70px !important;
  }

  .u-mr-75-md,
.u-mx-75-md {
    margin-right: 75px !important;
  }

  .u-mr-80-md,
.u-mx-80-md {
    margin-right: 80px !important;
  }

  .u-mr-85-md,
.u-mx-85-md {
    margin-right: 85px !important;
  }

  .u-mr-90-md,
.u-mx-90-md {
    margin-right: 90px !important;
  }

  .u-mr-95-md,
.u-mx-95-md {
    margin-right: 95px !important;
  }

  .u-mr-100-md,
.u-mx-100-md {
    margin-right: 100px !important;
  }
}
@media screen and (min-width: 993px) {
  .u-mx-auto-lg {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .u-mt-0-lg,
.u-my-0-lg {
    margin-top: 0px !important;
  }

  .u-mt-5-lg,
.u-my-5-lg {
    margin-top: 5px !important;
  }

  .u-mt-10-lg,
.u-my-10-lg {
    margin-top: 10px !important;
  }

  .u-mt-15-lg,
.u-my-15-lg {
    margin-top: 15px !important;
  }

  .u-mt-20-lg,
.u-my-20-lg {
    margin-top: 20px !important;
  }

  .u-mt-25-lg,
.u-my-25-lg {
    margin-top: 25px !important;
  }

  .u-mt-30-lg,
.u-my-30-lg {
    margin-top: 30px !important;
  }

  .u-mt-35-lg,
.u-my-35-lg {
    margin-top: 35px !important;
  }

  .u-mt-40-lg,
.u-my-40-lg {
    margin-top: 40px !important;
  }

  .u-mt-45-lg,
.u-my-45-lg {
    margin-top: 45px !important;
  }

  .u-mt-50-lg,
.u-my-50-lg {
    margin-top: 50px !important;
  }

  .u-mt-55-lg,
.u-my-55-lg {
    margin-top: 55px !important;
  }

  .u-mt-60-lg,
.u-my-60-lg {
    margin-top: 60px !important;
  }

  .u-mt-65-lg,
.u-my-65-lg {
    margin-top: 65px !important;
  }

  .u-mt-70-lg,
.u-my-70-lg {
    margin-top: 70px !important;
  }

  .u-mt-75-lg,
.u-my-75-lg {
    margin-top: 75px !important;
  }

  .u-mt-80-lg,
.u-my-80-lg {
    margin-top: 80px !important;
  }

  .u-mt-85-lg,
.u-my-85-lg {
    margin-top: 85px !important;
  }

  .u-mt-90-lg,
.u-my-90-lg {
    margin-top: 90px !important;
  }

  .u-mt-95-lg,
.u-my-95-lg {
    margin-top: 95px !important;
  }

  .u-mt-100-lg,
.u-my-100-lg {
    margin-top: 100px !important;
  }

  .u-mb-0-lg,
.u-my-0-lg {
    margin-bottom: 0px !important;
  }

  .u-mb-5-lg,
.u-my-5-lg {
    margin-bottom: 5px !important;
  }

  .u-mb-10-lg,
.u-my-10-lg {
    margin-bottom: 10px !important;
  }

  .u-mb-15-lg,
.u-my-15-lg {
    margin-bottom: 15px !important;
  }

  .u-mb-20-lg,
.u-my-20-lg {
    margin-bottom: 20px !important;
  }

  .u-mb-25-lg,
.u-my-25-lg {
    margin-bottom: 25px !important;
  }

  .u-mb-30-lg,
.u-my-30-lg {
    margin-bottom: 30px !important;
  }

  .u-mb-35-lg,
.u-my-35-lg {
    margin-bottom: 35px !important;
  }

  .u-mb-40-lg,
.u-my-40-lg {
    margin-bottom: 40px !important;
  }

  .u-mb-45-lg,
.u-my-45-lg {
    margin-bottom: 45px !important;
  }

  .u-mb-50-lg,
.u-my-50-lg {
    margin-bottom: 50px !important;
  }

  .u-mb-55-lg,
.u-my-55-lg {
    margin-bottom: 55px !important;
  }

  .u-mb-60-lg,
.u-my-60-lg {
    margin-bottom: 60px !important;
  }

  .u-mb-65-lg,
.u-my-65-lg {
    margin-bottom: 65px !important;
  }

  .u-mb-70-lg,
.u-my-70-lg {
    margin-bottom: 70px !important;
  }

  .u-mb-75-lg,
.u-my-75-lg {
    margin-bottom: 75px !important;
  }

  .u-mb-80-lg,
.u-my-80-lg {
    margin-bottom: 80px !important;
  }

  .u-mb-85-lg,
.u-my-85-lg {
    margin-bottom: 85px !important;
  }

  .u-mb-90-lg,
.u-my-90-lg {
    margin-bottom: 90px !important;
  }

  .u-mb-95-lg,
.u-my-95-lg {
    margin-bottom: 95px !important;
  }

  .u-mb-100-lg,
.u-my-100-lg {
    margin-bottom: 100px !important;
  }

  .u-ml-0-lg,
.u-mx-0-lg {
    margin-left: 0px !important;
  }

  .u-ml-5-lg,
.u-mx-5-lg {
    margin-left: 5px !important;
  }

  .u-ml-10-lg,
.u-mx-10-lg {
    margin-left: 10px !important;
  }

  .u-ml-15-lg,
.u-mx-15-lg {
    margin-left: 15px !important;
  }

  .u-ml-20-lg,
.u-mx-20-lg {
    margin-left: 20px !important;
  }

  .u-ml-25-lg,
.u-mx-25-lg {
    margin-left: 25px !important;
  }

  .u-ml-30-lg,
.u-mx-30-lg {
    margin-left: 30px !important;
  }

  .u-ml-35-lg,
.u-mx-35-lg {
    margin-left: 35px !important;
  }

  .u-ml-40-lg,
.u-mx-40-lg {
    margin-left: 40px !important;
  }

  .u-ml-45-lg,
.u-mx-45-lg {
    margin-left: 45px !important;
  }

  .u-ml-50-lg,
.u-mx-50-lg {
    margin-left: 50px !important;
  }

  .u-ml-55-lg,
.u-mx-55-lg {
    margin-left: 55px !important;
  }

  .u-ml-60-lg,
.u-mx-60-lg {
    margin-left: 60px !important;
  }

  .u-ml-65-lg,
.u-mx-65-lg {
    margin-left: 65px !important;
  }

  .u-ml-70-lg,
.u-mx-70-lg {
    margin-left: 70px !important;
  }

  .u-ml-75-lg,
.u-mx-75-lg {
    margin-left: 75px !important;
  }

  .u-ml-80-lg,
.u-mx-80-lg {
    margin-left: 80px !important;
  }

  .u-ml-85-lg,
.u-mx-85-lg {
    margin-left: 85px !important;
  }

  .u-ml-90-lg,
.u-mx-90-lg {
    margin-left: 90px !important;
  }

  .u-ml-95-lg,
.u-mx-95-lg {
    margin-left: 95px !important;
  }

  .u-ml-100-lg,
.u-mx-100-lg {
    margin-left: 100px !important;
  }

  .u-mr-0-lg,
.u-mx-0-lg {
    margin-right: 0px !important;
  }

  .u-mr-5-lg,
.u-mx-5-lg {
    margin-right: 5px !important;
  }

  .u-mr-10-lg,
.u-mx-10-lg {
    margin-right: 10px !important;
  }

  .u-mr-15-lg,
.u-mx-15-lg {
    margin-right: 15px !important;
  }

  .u-mr-20-lg,
.u-mx-20-lg {
    margin-right: 20px !important;
  }

  .u-mr-25-lg,
.u-mx-25-lg {
    margin-right: 25px !important;
  }

  .u-mr-30-lg,
.u-mx-30-lg {
    margin-right: 30px !important;
  }

  .u-mr-35-lg,
.u-mx-35-lg {
    margin-right: 35px !important;
  }

  .u-mr-40-lg,
.u-mx-40-lg {
    margin-right: 40px !important;
  }

  .u-mr-45-lg,
.u-mx-45-lg {
    margin-right: 45px !important;
  }

  .u-mr-50-lg,
.u-mx-50-lg {
    margin-right: 50px !important;
  }

  .u-mr-55-lg,
.u-mx-55-lg {
    margin-right: 55px !important;
  }

  .u-mr-60-lg,
.u-mx-60-lg {
    margin-right: 60px !important;
  }

  .u-mr-65-lg,
.u-mx-65-lg {
    margin-right: 65px !important;
  }

  .u-mr-70-lg,
.u-mx-70-lg {
    margin-right: 70px !important;
  }

  .u-mr-75-lg,
.u-mx-75-lg {
    margin-right: 75px !important;
  }

  .u-mr-80-lg,
.u-mx-80-lg {
    margin-right: 80px !important;
  }

  .u-mr-85-lg,
.u-mx-85-lg {
    margin-right: 85px !important;
  }

  .u-mr-90-lg,
.u-mx-90-lg {
    margin-right: 90px !important;
  }

  .u-mr-95-lg,
.u-mx-95-lg {
    margin-right: 95px !important;
  }

  .u-mr-100-lg,
.u-mx-100-lg {
    margin-right: 100px !important;
  }
}
@media screen and (min-width: 1201px) {
  .u-mx-auto-xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .u-mt-0-xl,
.u-my-0-xl {
    margin-top: 0px !important;
  }

  .u-mt-5-xl,
.u-my-5-xl {
    margin-top: 5px !important;
  }

  .u-mt-10-xl,
.u-my-10-xl {
    margin-top: 10px !important;
  }

  .u-mt-15-xl,
.u-my-15-xl {
    margin-top: 15px !important;
  }

  .u-mt-20-xl,
.u-my-20-xl {
    margin-top: 20px !important;
  }

  .u-mt-25-xl,
.u-my-25-xl {
    margin-top: 25px !important;
  }

  .u-mt-30-xl,
.u-my-30-xl {
    margin-top: 30px !important;
  }

  .u-mt-35-xl,
.u-my-35-xl {
    margin-top: 35px !important;
  }

  .u-mt-40-xl,
.u-my-40-xl {
    margin-top: 40px !important;
  }

  .u-mt-45-xl,
.u-my-45-xl {
    margin-top: 45px !important;
  }

  .u-mt-50-xl,
.u-my-50-xl {
    margin-top: 50px !important;
  }

  .u-mt-55-xl,
.u-my-55-xl {
    margin-top: 55px !important;
  }

  .u-mt-60-xl,
.u-my-60-xl {
    margin-top: 60px !important;
  }

  .u-mt-65-xl,
.u-my-65-xl {
    margin-top: 65px !important;
  }

  .u-mt-70-xl,
.u-my-70-xl {
    margin-top: 70px !important;
  }

  .u-mt-75-xl,
.u-my-75-xl {
    margin-top: 75px !important;
  }

  .u-mt-80-xl,
.u-my-80-xl {
    margin-top: 80px !important;
  }

  .u-mt-85-xl,
.u-my-85-xl {
    margin-top: 85px !important;
  }

  .u-mt-90-xl,
.u-my-90-xl {
    margin-top: 90px !important;
  }

  .u-mt-95-xl,
.u-my-95-xl {
    margin-top: 95px !important;
  }

  .u-mt-100-xl,
.u-my-100-xl {
    margin-top: 100px !important;
  }

  .u-mb-0-xl,
.u-my-0-xl {
    margin-bottom: 0px !important;
  }

  .u-mb-5-xl,
.u-my-5-xl {
    margin-bottom: 5px !important;
  }

  .u-mb-10-xl,
.u-my-10-xl {
    margin-bottom: 10px !important;
  }

  .u-mb-15-xl,
.u-my-15-xl {
    margin-bottom: 15px !important;
  }

  .u-mb-20-xl,
.u-my-20-xl {
    margin-bottom: 20px !important;
  }

  .u-mb-25-xl,
.u-my-25-xl {
    margin-bottom: 25px !important;
  }

  .u-mb-30-xl,
.u-my-30-xl {
    margin-bottom: 30px !important;
  }

  .u-mb-35-xl,
.u-my-35-xl {
    margin-bottom: 35px !important;
  }

  .u-mb-40-xl,
.u-my-40-xl {
    margin-bottom: 40px !important;
  }

  .u-mb-45-xl,
.u-my-45-xl {
    margin-bottom: 45px !important;
  }

  .u-mb-50-xl,
.u-my-50-xl {
    margin-bottom: 50px !important;
  }

  .u-mb-55-xl,
.u-my-55-xl {
    margin-bottom: 55px !important;
  }

  .u-mb-60-xl,
.u-my-60-xl {
    margin-bottom: 60px !important;
  }

  .u-mb-65-xl,
.u-my-65-xl {
    margin-bottom: 65px !important;
  }

  .u-mb-70-xl,
.u-my-70-xl {
    margin-bottom: 70px !important;
  }

  .u-mb-75-xl,
.u-my-75-xl {
    margin-bottom: 75px !important;
  }

  .u-mb-80-xl,
.u-my-80-xl {
    margin-bottom: 80px !important;
  }

  .u-mb-85-xl,
.u-my-85-xl {
    margin-bottom: 85px !important;
  }

  .u-mb-90-xl,
.u-my-90-xl {
    margin-bottom: 90px !important;
  }

  .u-mb-95-xl,
.u-my-95-xl {
    margin-bottom: 95px !important;
  }

  .u-mb-100-xl,
.u-my-100-xl {
    margin-bottom: 100px !important;
  }

  .u-ml-0-xl,
.u-mx-0-xl {
    margin-left: 0px !important;
  }

  .u-ml-5-xl,
.u-mx-5-xl {
    margin-left: 5px !important;
  }

  .u-ml-10-xl,
.u-mx-10-xl {
    margin-left: 10px !important;
  }

  .u-ml-15-xl,
.u-mx-15-xl {
    margin-left: 15px !important;
  }

  .u-ml-20-xl,
.u-mx-20-xl {
    margin-left: 20px !important;
  }

  .u-ml-25-xl,
.u-mx-25-xl {
    margin-left: 25px !important;
  }

  .u-ml-30-xl,
.u-mx-30-xl {
    margin-left: 30px !important;
  }

  .u-ml-35-xl,
.u-mx-35-xl {
    margin-left: 35px !important;
  }

  .u-ml-40-xl,
.u-mx-40-xl {
    margin-left: 40px !important;
  }

  .u-ml-45-xl,
.u-mx-45-xl {
    margin-left: 45px !important;
  }

  .u-ml-50-xl,
.u-mx-50-xl {
    margin-left: 50px !important;
  }

  .u-ml-55-xl,
.u-mx-55-xl {
    margin-left: 55px !important;
  }

  .u-ml-60-xl,
.u-mx-60-xl {
    margin-left: 60px !important;
  }

  .u-ml-65-xl,
.u-mx-65-xl {
    margin-left: 65px !important;
  }

  .u-ml-70-xl,
.u-mx-70-xl {
    margin-left: 70px !important;
  }

  .u-ml-75-xl,
.u-mx-75-xl {
    margin-left: 75px !important;
  }

  .u-ml-80-xl,
.u-mx-80-xl {
    margin-left: 80px !important;
  }

  .u-ml-85-xl,
.u-mx-85-xl {
    margin-left: 85px !important;
  }

  .u-ml-90-xl,
.u-mx-90-xl {
    margin-left: 90px !important;
  }

  .u-ml-95-xl,
.u-mx-95-xl {
    margin-left: 95px !important;
  }

  .u-ml-100-xl,
.u-mx-100-xl {
    margin-left: 100px !important;
  }

  .u-mr-0-xl,
.u-mx-0-xl {
    margin-right: 0px !important;
  }

  .u-mr-5-xl,
.u-mx-5-xl {
    margin-right: 5px !important;
  }

  .u-mr-10-xl,
.u-mx-10-xl {
    margin-right: 10px !important;
  }

  .u-mr-15-xl,
.u-mx-15-xl {
    margin-right: 15px !important;
  }

  .u-mr-20-xl,
.u-mx-20-xl {
    margin-right: 20px !important;
  }

  .u-mr-25-xl,
.u-mx-25-xl {
    margin-right: 25px !important;
  }

  .u-mr-30-xl,
.u-mx-30-xl {
    margin-right: 30px !important;
  }

  .u-mr-35-xl,
.u-mx-35-xl {
    margin-right: 35px !important;
  }

  .u-mr-40-xl,
.u-mx-40-xl {
    margin-right: 40px !important;
  }

  .u-mr-45-xl,
.u-mx-45-xl {
    margin-right: 45px !important;
  }

  .u-mr-50-xl,
.u-mx-50-xl {
    margin-right: 50px !important;
  }

  .u-mr-55-xl,
.u-mx-55-xl {
    margin-right: 55px !important;
  }

  .u-mr-60-xl,
.u-mx-60-xl {
    margin-right: 60px !important;
  }

  .u-mr-65-xl,
.u-mx-65-xl {
    margin-right: 65px !important;
  }

  .u-mr-70-xl,
.u-mx-70-xl {
    margin-right: 70px !important;
  }

  .u-mr-75-xl,
.u-mx-75-xl {
    margin-right: 75px !important;
  }

  .u-mr-80-xl,
.u-mx-80-xl {
    margin-right: 80px !important;
  }

  .u-mr-85-xl,
.u-mx-85-xl {
    margin-right: 85px !important;
  }

  .u-mr-90-xl,
.u-mx-90-xl {
    margin-right: 90px !important;
  }

  .u-mr-95-xl,
.u-mx-95-xl {
    margin-right: 95px !important;
  }

  .u-mr-100-xl,
.u-mx-100-xl {
    margin-right: 100px !important;
  }
}
/* object/utility/_padding.scss
-------------------------------------------------- */
.u-px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-pt-0,
.u-py-0 {
  padding-top: 0px !important;
}

.u-pt-5,
.u-py-5 {
  padding-top: 5px !important;
}

.u-pt-10,
.u-py-10 {
  padding-top: 10px !important;
}

.u-pt-15,
.u-py-15 {
  padding-top: 15px !important;
}

.u-pt-20,
.u-py-20 {
  padding-top: 20px !important;
}

.u-pt-25,
.u-py-25 {
  padding-top: 25px !important;
}

.u-pt-30,
.u-py-30 {
  padding-top: 30px !important;
}

.u-pt-35,
.u-py-35 {
  padding-top: 35px !important;
}

.u-pt-40,
.u-py-40 {
  padding-top: 40px !important;
}

.u-pt-45,
.u-py-45 {
  padding-top: 45px !important;
}

.u-pt-50,
.u-py-50 {
  padding-top: 50px !important;
}

.u-pt-55,
.u-py-55 {
  padding-top: 55px !important;
}

.u-pt-60,
.u-py-60 {
  padding-top: 60px !important;
}

.u-pt-65,
.u-py-65 {
  padding-top: 65px !important;
}

.u-pt-70,
.u-py-70 {
  padding-top: 70px !important;
}

.u-pt-75,
.u-py-75 {
  padding-top: 75px !important;
}

.u-pt-80,
.u-py-80 {
  padding-top: 80px !important;
}

.u-pt-85,
.u-py-85 {
  padding-top: 85px !important;
}

.u-pt-90,
.u-py-90 {
  padding-top: 90px !important;
}

.u-pt-95,
.u-py-95 {
  padding-top: 95px !important;
}

.u-pt-100,
.u-py-100 {
  padding-top: 100px !important;
}

.u-pb-0,
.u-py-0 {
  padding-bottom: 0px !important;
}

.u-pb-5,
.u-py-5 {
  padding-bottom: 5px !important;
}

.u-pb-10,
.u-py-10 {
  padding-bottom: 10px !important;
}

.u-pb-15,
.u-py-15 {
  padding-bottom: 15px !important;
}

.u-pb-20,
.u-py-20 {
  padding-bottom: 20px !important;
}

.u-pb-25,
.u-py-25 {
  padding-bottom: 25px !important;
}

.u-pb-30,
.u-py-30 {
  padding-bottom: 30px !important;
}

.u-pb-35,
.u-py-35 {
  padding-bottom: 35px !important;
}

.u-pb-40,
.u-py-40 {
  padding-bottom: 40px !important;
}

.u-pb-45,
.u-py-45 {
  padding-bottom: 45px !important;
}

.u-pb-50,
.u-py-50 {
  padding-bottom: 50px !important;
}

.u-pb-55,
.u-py-55 {
  padding-bottom: 55px !important;
}

.u-pb-60,
.u-py-60 {
  padding-bottom: 60px !important;
}

.u-pb-65,
.u-py-65 {
  padding-bottom: 65px !important;
}

.u-pb-70,
.u-py-70 {
  padding-bottom: 70px !important;
}

.u-pb-75,
.u-py-75 {
  padding-bottom: 75px !important;
}

.u-pb-80,
.u-py-80 {
  padding-bottom: 80px !important;
}

.u-pb-85,
.u-py-85 {
  padding-bottom: 85px !important;
}

.u-pb-90,
.u-py-90 {
  padding-bottom: 90px !important;
}

.u-pb-95,
.u-py-95 {
  padding-bottom: 95px !important;
}

.u-pb-100,
.u-py-100 {
  padding-bottom: 100px !important;
}

.u-pl-0,
.u-px-0 {
  padding-left: 0px !important;
}

.u-pl-5,
.u-px-5 {
  padding-left: 5px !important;
}

.u-pl-10,
.u-px-10 {
  padding-left: 10px !important;
}

.u-pl-15,
.u-px-15 {
  padding-left: 15px !important;
}

.u-pl-20,
.u-px-20 {
  padding-left: 20px !important;
}

.u-pl-25,
.u-px-25 {
  padding-left: 25px !important;
}

.u-pl-30,
.u-px-30 {
  padding-left: 30px !important;
}

.u-pl-35,
.u-px-35 {
  padding-left: 35px !important;
}

.u-pl-40,
.u-px-40 {
  padding-left: 40px !important;
}

.u-pl-45,
.u-px-45 {
  padding-left: 45px !important;
}

.u-pl-50,
.u-px-50 {
  padding-left: 50px !important;
}

.u-pl-55,
.u-px-55 {
  padding-left: 55px !important;
}

.u-pl-60,
.u-px-60 {
  padding-left: 60px !important;
}

.u-pl-65,
.u-px-65 {
  padding-left: 65px !important;
}

.u-pl-70,
.u-px-70 {
  padding-left: 70px !important;
}

.u-pl-75,
.u-px-75 {
  padding-left: 75px !important;
}

.u-pl-80,
.u-px-80 {
  padding-left: 80px !important;
}

.u-pl-85,
.u-px-85 {
  padding-left: 85px !important;
}

.u-pl-90,
.u-px-90 {
  padding-left: 90px !important;
}

.u-pl-95,
.u-px-95 {
  padding-left: 95px !important;
}

.u-pl-100,
.u-px-100 {
  padding-left: 100px !important;
}

.u-pr-0,
.u-px-0 {
  padding-right: 0px !important;
}

.u-pr-5,
.u-px-5 {
  padding-right: 5px !important;
}

.u-pr-10,
.u-px-10 {
  padding-right: 10px !important;
}

.u-pr-15,
.u-px-15 {
  padding-right: 15px !important;
}

.u-pr-20,
.u-px-20 {
  padding-right: 20px !important;
}

.u-pr-25,
.u-px-25 {
  padding-right: 25px !important;
}

.u-pr-30,
.u-px-30 {
  padding-right: 30px !important;
}

.u-pr-35,
.u-px-35 {
  padding-right: 35px !important;
}

.u-pr-40,
.u-px-40 {
  padding-right: 40px !important;
}

.u-pr-45,
.u-px-45 {
  padding-right: 45px !important;
}

.u-pr-50,
.u-px-50 {
  padding-right: 50px !important;
}

.u-pr-55,
.u-px-55 {
  padding-right: 55px !important;
}

.u-pr-60,
.u-px-60 {
  padding-right: 60px !important;
}

.u-pr-65,
.u-px-65 {
  padding-right: 65px !important;
}

.u-pr-70,
.u-px-70 {
  padding-right: 70px !important;
}

.u-pr-75,
.u-px-75 {
  padding-right: 75px !important;
}

.u-pr-80,
.u-px-80 {
  padding-right: 80px !important;
}

.u-pr-85,
.u-px-85 {
  padding-right: 85px !important;
}

.u-pr-90,
.u-px-90 {
  padding-right: 90px !important;
}

.u-pr-95,
.u-px-95 {
  padding-right: 95px !important;
}

.u-pr-100,
.u-px-100 {
  padding-right: 100px !important;
}

@media screen and (min-width: 577px) {
  .u-px-auto-sm {
    padding-left: auto !important;
    padding-right: auto !important;
  }

  .u-pt-0-sm,
.u-py-0-sm {
    padding-top: 0px !important;
  }

  .u-pt-5-sm,
.u-py-5-sm {
    padding-top: 5px !important;
  }

  .u-pt-10-sm,
.u-py-10-sm {
    padding-top: 10px !important;
  }

  .u-pt-15-sm,
.u-py-15-sm {
    padding-top: 15px !important;
  }

  .u-pt-20-sm,
.u-py-20-sm {
    padding-top: 20px !important;
  }

  .u-pt-25-sm,
.u-py-25-sm {
    padding-top: 25px !important;
  }

  .u-pt-30-sm,
.u-py-30-sm {
    padding-top: 30px !important;
  }

  .u-pt-35-sm,
.u-py-35-sm {
    padding-top: 35px !important;
  }

  .u-pt-40-sm,
.u-py-40-sm {
    padding-top: 40px !important;
  }

  .u-pt-45-sm,
.u-py-45-sm {
    padding-top: 45px !important;
  }

  .u-pt-50-sm,
.u-py-50-sm {
    padding-top: 50px !important;
  }

  .u-pt-55-sm,
.u-py-55-sm {
    padding-top: 55px !important;
  }

  .u-pt-60-sm,
.u-py-60-sm {
    padding-top: 60px !important;
  }

  .u-pt-65-sm,
.u-py-65-sm {
    padding-top: 65px !important;
  }

  .u-pt-70-sm,
.u-py-70-sm {
    padding-top: 70px !important;
  }

  .u-pt-75-sm,
.u-py-75-sm {
    padding-top: 75px !important;
  }

  .u-pt-80-sm,
.u-py-80-sm {
    padding-top: 80px !important;
  }

  .u-pt-85-sm,
.u-py-85-sm {
    padding-top: 85px !important;
  }

  .u-pt-90-sm,
.u-py-90-sm {
    padding-top: 90px !important;
  }

  .u-pt-95-sm,
.u-py-95-sm {
    padding-top: 95px !important;
  }

  .u-pt-100-sm,
.u-py-100-sm {
    padding-top: 100px !important;
  }

  .u-pb-0-sm,
.u-py-0-sm {
    padding-bottom: 0px !important;
  }

  .u-pb-5-sm,
.u-py-5-sm {
    padding-bottom: 5px !important;
  }

  .u-pb-10-sm,
.u-py-10-sm {
    padding-bottom: 10px !important;
  }

  .u-pb-15-sm,
.u-py-15-sm {
    padding-bottom: 15px !important;
  }

  .u-pb-20-sm,
.u-py-20-sm {
    padding-bottom: 20px !important;
  }

  .u-pb-25-sm,
.u-py-25-sm {
    padding-bottom: 25px !important;
  }

  .u-pb-30-sm,
.u-py-30-sm {
    padding-bottom: 30px !important;
  }

  .u-pb-35-sm,
.u-py-35-sm {
    padding-bottom: 35px !important;
  }

  .u-pb-40-sm,
.u-py-40-sm {
    padding-bottom: 40px !important;
  }

  .u-pb-45-sm,
.u-py-45-sm {
    padding-bottom: 45px !important;
  }

  .u-pb-50-sm,
.u-py-50-sm {
    padding-bottom: 50px !important;
  }

  .u-pb-55-sm,
.u-py-55-sm {
    padding-bottom: 55px !important;
  }

  .u-pb-60-sm,
.u-py-60-sm {
    padding-bottom: 60px !important;
  }

  .u-pb-65-sm,
.u-py-65-sm {
    padding-bottom: 65px !important;
  }

  .u-pb-70-sm,
.u-py-70-sm {
    padding-bottom: 70px !important;
  }

  .u-pb-75-sm,
.u-py-75-sm {
    padding-bottom: 75px !important;
  }

  .u-pb-80-sm,
.u-py-80-sm {
    padding-bottom: 80px !important;
  }

  .u-pb-85-sm,
.u-py-85-sm {
    padding-bottom: 85px !important;
  }

  .u-pb-90-sm,
.u-py-90-sm {
    padding-bottom: 90px !important;
  }

  .u-pb-95-sm,
.u-py-95-sm {
    padding-bottom: 95px !important;
  }

  .u-pb-100-sm,
.u-py-100-sm {
    padding-bottom: 100px !important;
  }

  .u-pl-0-sm,
.u-px-0-sm {
    padding-left: 0px !important;
  }

  .u-pl-5-sm,
.u-px-5-sm {
    padding-left: 5px !important;
  }

  .u-pl-10-sm,
.u-px-10-sm {
    padding-left: 10px !important;
  }

  .u-pl-15-sm,
.u-px-15-sm {
    padding-left: 15px !important;
  }

  .u-pl-20-sm,
.u-px-20-sm {
    padding-left: 20px !important;
  }

  .u-pl-25-sm,
.u-px-25-sm {
    padding-left: 25px !important;
  }

  .u-pl-30-sm,
.u-px-30-sm {
    padding-left: 30px !important;
  }

  .u-pl-35-sm,
.u-px-35-sm {
    padding-left: 35px !important;
  }

  .u-pl-40-sm,
.u-px-40-sm {
    padding-left: 40px !important;
  }

  .u-pl-45-sm,
.u-px-45-sm {
    padding-left: 45px !important;
  }

  .u-pl-50-sm,
.u-px-50-sm {
    padding-left: 50px !important;
  }

  .u-pl-55-sm,
.u-px-55-sm {
    padding-left: 55px !important;
  }

  .u-pl-60-sm,
.u-px-60-sm {
    padding-left: 60px !important;
  }

  .u-pl-65-sm,
.u-px-65-sm {
    padding-left: 65px !important;
  }

  .u-pl-70-sm,
.u-px-70-sm {
    padding-left: 70px !important;
  }

  .u-pl-75-sm,
.u-px-75-sm {
    padding-left: 75px !important;
  }

  .u-pl-80-sm,
.u-px-80-sm {
    padding-left: 80px !important;
  }

  .u-pl-85-sm,
.u-px-85-sm {
    padding-left: 85px !important;
  }

  .u-pl-90-sm,
.u-px-90-sm {
    padding-left: 90px !important;
  }

  .u-pl-95-sm,
.u-px-95-sm {
    padding-left: 95px !important;
  }

  .u-pl-100-sm,
.u-px-100-sm {
    padding-left: 100px !important;
  }

  .u-pr-0-sm,
.u-px-0-sm {
    padding-right: 0px !important;
  }

  .u-pr-5-sm,
.u-px-5-sm {
    padding-right: 5px !important;
  }

  .u-pr-10-sm,
.u-px-10-sm {
    padding-right: 10px !important;
  }

  .u-pr-15-sm,
.u-px-15-sm {
    padding-right: 15px !important;
  }

  .u-pr-20-sm,
.u-px-20-sm {
    padding-right: 20px !important;
  }

  .u-pr-25-sm,
.u-px-25-sm {
    padding-right: 25px !important;
  }

  .u-pr-30-sm,
.u-px-30-sm {
    padding-right: 30px !important;
  }

  .u-pr-35-sm,
.u-px-35-sm {
    padding-right: 35px !important;
  }

  .u-pr-40-sm,
.u-px-40-sm {
    padding-right: 40px !important;
  }

  .u-pr-45-sm,
.u-px-45-sm {
    padding-right: 45px !important;
  }

  .u-pr-50-sm,
.u-px-50-sm {
    padding-right: 50px !important;
  }

  .u-pr-55-sm,
.u-px-55-sm {
    padding-right: 55px !important;
  }

  .u-pr-60-sm,
.u-px-60-sm {
    padding-right: 60px !important;
  }

  .u-pr-65-sm,
.u-px-65-sm {
    padding-right: 65px !important;
  }

  .u-pr-70-sm,
.u-px-70-sm {
    padding-right: 70px !important;
  }

  .u-pr-75-sm,
.u-px-75-sm {
    padding-right: 75px !important;
  }

  .u-pr-80-sm,
.u-px-80-sm {
    padding-right: 80px !important;
  }

  .u-pr-85-sm,
.u-px-85-sm {
    padding-right: 85px !important;
  }

  .u-pr-90-sm,
.u-px-90-sm {
    padding-right: 90px !important;
  }

  .u-pr-95-sm,
.u-px-95-sm {
    padding-right: 95px !important;
  }

  .u-pr-100-sm,
.u-px-100-sm {
    padding-right: 100px !important;
  }
}
@media screen and (min-width: 769px) {
  .u-px-auto-md {
    padding-left: auto !important;
    padding-right: auto !important;
  }

  .u-pt-0-md,
.u-py-0-md {
    padding-top: 0px !important;
  }

  .u-pt-5-md,
.u-py-5-md {
    padding-top: 5px !important;
  }

  .u-pt-10-md,
.u-py-10-md {
    padding-top: 10px !important;
  }

  .u-pt-15-md,
.u-py-15-md {
    padding-top: 15px !important;
  }

  .u-pt-20-md,
.u-py-20-md {
    padding-top: 20px !important;
  }

  .u-pt-25-md,
.u-py-25-md {
    padding-top: 25px !important;
  }

  .u-pt-30-md,
.u-py-30-md {
    padding-top: 30px !important;
  }

  .u-pt-35-md,
.u-py-35-md {
    padding-top: 35px !important;
  }

  .u-pt-40-md,
.u-py-40-md {
    padding-top: 40px !important;
  }

  .u-pt-45-md,
.u-py-45-md {
    padding-top: 45px !important;
  }

  .u-pt-50-md,
.u-py-50-md {
    padding-top: 50px !important;
  }

  .u-pt-55-md,
.u-py-55-md {
    padding-top: 55px !important;
  }

  .u-pt-60-md,
.u-py-60-md {
    padding-top: 60px !important;
  }

  .u-pt-65-md,
.u-py-65-md {
    padding-top: 65px !important;
  }

  .u-pt-70-md,
.u-py-70-md {
    padding-top: 70px !important;
  }

  .u-pt-75-md,
.u-py-75-md {
    padding-top: 75px !important;
  }

  .u-pt-80-md,
.u-py-80-md {
    padding-top: 80px !important;
  }

  .u-pt-85-md,
.u-py-85-md {
    padding-top: 85px !important;
  }

  .u-pt-90-md,
.u-py-90-md {
    padding-top: 90px !important;
  }

  .u-pt-95-md,
.u-py-95-md {
    padding-top: 95px !important;
  }

  .u-pt-100-md,
.u-py-100-md {
    padding-top: 100px !important;
  }

  .u-pb-0-md,
.u-py-0-md {
    padding-bottom: 0px !important;
  }

  .u-pb-5-md,
.u-py-5-md {
    padding-bottom: 5px !important;
  }

  .u-pb-10-md,
.u-py-10-md {
    padding-bottom: 10px !important;
  }

  .u-pb-15-md,
.u-py-15-md {
    padding-bottom: 15px !important;
  }

  .u-pb-20-md,
.u-py-20-md {
    padding-bottom: 20px !important;
  }

  .u-pb-25-md,
.u-py-25-md {
    padding-bottom: 25px !important;
  }

  .u-pb-30-md,
.u-py-30-md {
    padding-bottom: 30px !important;
  }

  .u-pb-35-md,
.u-py-35-md {
    padding-bottom: 35px !important;
  }

  .u-pb-40-md,
.u-py-40-md {
    padding-bottom: 40px !important;
  }

  .u-pb-45-md,
.u-py-45-md {
    padding-bottom: 45px !important;
  }

  .u-pb-50-md,
.u-py-50-md {
    padding-bottom: 50px !important;
  }

  .u-pb-55-md,
.u-py-55-md {
    padding-bottom: 55px !important;
  }

  .u-pb-60-md,
.u-py-60-md {
    padding-bottom: 60px !important;
  }

  .u-pb-65-md,
.u-py-65-md {
    padding-bottom: 65px !important;
  }

  .u-pb-70-md,
.u-py-70-md {
    padding-bottom: 70px !important;
  }

  .u-pb-75-md,
.u-py-75-md {
    padding-bottom: 75px !important;
  }

  .u-pb-80-md,
.u-py-80-md {
    padding-bottom: 80px !important;
  }

  .u-pb-85-md,
.u-py-85-md {
    padding-bottom: 85px !important;
  }

  .u-pb-90-md,
.u-py-90-md {
    padding-bottom: 90px !important;
  }

  .u-pb-95-md,
.u-py-95-md {
    padding-bottom: 95px !important;
  }

  .u-pb-100-md,
.u-py-100-md {
    padding-bottom: 100px !important;
  }

  .u-pl-0-md,
.u-px-0-md {
    padding-left: 0px !important;
  }

  .u-pl-5-md,
.u-px-5-md {
    padding-left: 5px !important;
  }

  .u-pl-10-md,
.u-px-10-md {
    padding-left: 10px !important;
  }

  .u-pl-15-md,
.u-px-15-md {
    padding-left: 15px !important;
  }

  .u-pl-20-md,
.u-px-20-md {
    padding-left: 20px !important;
  }

  .u-pl-25-md,
.u-px-25-md {
    padding-left: 25px !important;
  }

  .u-pl-30-md,
.u-px-30-md {
    padding-left: 30px !important;
  }

  .u-pl-35-md,
.u-px-35-md {
    padding-left: 35px !important;
  }

  .u-pl-40-md,
.u-px-40-md {
    padding-left: 40px !important;
  }

  .u-pl-45-md,
.u-px-45-md {
    padding-left: 45px !important;
  }

  .u-pl-50-md,
.u-px-50-md {
    padding-left: 50px !important;
  }

  .u-pl-55-md,
.u-px-55-md {
    padding-left: 55px !important;
  }

  .u-pl-60-md,
.u-px-60-md {
    padding-left: 60px !important;
  }

  .u-pl-65-md,
.u-px-65-md {
    padding-left: 65px !important;
  }

  .u-pl-70-md,
.u-px-70-md {
    padding-left: 70px !important;
  }

  .u-pl-75-md,
.u-px-75-md {
    padding-left: 75px !important;
  }

  .u-pl-80-md,
.u-px-80-md {
    padding-left: 80px !important;
  }

  .u-pl-85-md,
.u-px-85-md {
    padding-left: 85px !important;
  }

  .u-pl-90-md,
.u-px-90-md {
    padding-left: 90px !important;
  }

  .u-pl-95-md,
.u-px-95-md {
    padding-left: 95px !important;
  }

  .u-pl-100-md,
.u-px-100-md {
    padding-left: 100px !important;
  }

  .u-pr-0-md,
.u-px-0-md {
    padding-right: 0px !important;
  }

  .u-pr-5-md,
.u-px-5-md {
    padding-right: 5px !important;
  }

  .u-pr-10-md,
.u-px-10-md {
    padding-right: 10px !important;
  }

  .u-pr-15-md,
.u-px-15-md {
    padding-right: 15px !important;
  }

  .u-pr-20-md,
.u-px-20-md {
    padding-right: 20px !important;
  }

  .u-pr-25-md,
.u-px-25-md {
    padding-right: 25px !important;
  }

  .u-pr-30-md,
.u-px-30-md {
    padding-right: 30px !important;
  }

  .u-pr-35-md,
.u-px-35-md {
    padding-right: 35px !important;
  }

  .u-pr-40-md,
.u-px-40-md {
    padding-right: 40px !important;
  }

  .u-pr-45-md,
.u-px-45-md {
    padding-right: 45px !important;
  }

  .u-pr-50-md,
.u-px-50-md {
    padding-right: 50px !important;
  }

  .u-pr-55-md,
.u-px-55-md {
    padding-right: 55px !important;
  }

  .u-pr-60-md,
.u-px-60-md {
    padding-right: 60px !important;
  }

  .u-pr-65-md,
.u-px-65-md {
    padding-right: 65px !important;
  }

  .u-pr-70-md,
.u-px-70-md {
    padding-right: 70px !important;
  }

  .u-pr-75-md,
.u-px-75-md {
    padding-right: 75px !important;
  }

  .u-pr-80-md,
.u-px-80-md {
    padding-right: 80px !important;
  }

  .u-pr-85-md,
.u-px-85-md {
    padding-right: 85px !important;
  }

  .u-pr-90-md,
.u-px-90-md {
    padding-right: 90px !important;
  }

  .u-pr-95-md,
.u-px-95-md {
    padding-right: 95px !important;
  }

  .u-pr-100-md,
.u-px-100-md {
    padding-right: 100px !important;
  }
}
@media screen and (min-width: 993px) {
  .u-px-auto-lg {
    padding-left: auto !important;
    padding-right: auto !important;
  }

  .u-pt-0-lg,
.u-py-0-lg {
    padding-top: 0px !important;
  }

  .u-pt-5-lg,
.u-py-5-lg {
    padding-top: 5px !important;
  }

  .u-pt-10-lg,
.u-py-10-lg {
    padding-top: 10px !important;
  }

  .u-pt-15-lg,
.u-py-15-lg {
    padding-top: 15px !important;
  }

  .u-pt-20-lg,
.u-py-20-lg {
    padding-top: 20px !important;
  }

  .u-pt-25-lg,
.u-py-25-lg {
    padding-top: 25px !important;
  }

  .u-pt-30-lg,
.u-py-30-lg {
    padding-top: 30px !important;
  }

  .u-pt-35-lg,
.u-py-35-lg {
    padding-top: 35px !important;
  }

  .u-pt-40-lg,
.u-py-40-lg {
    padding-top: 40px !important;
  }

  .u-pt-45-lg,
.u-py-45-lg {
    padding-top: 45px !important;
  }

  .u-pt-50-lg,
.u-py-50-lg {
    padding-top: 50px !important;
  }

  .u-pt-55-lg,
.u-py-55-lg {
    padding-top: 55px !important;
  }

  .u-pt-60-lg,
.u-py-60-lg {
    padding-top: 60px !important;
  }

  .u-pt-65-lg,
.u-py-65-lg {
    padding-top: 65px !important;
  }

  .u-pt-70-lg,
.u-py-70-lg {
    padding-top: 70px !important;
  }

  .u-pt-75-lg,
.u-py-75-lg {
    padding-top: 75px !important;
  }

  .u-pt-80-lg,
.u-py-80-lg {
    padding-top: 80px !important;
  }

  .u-pt-85-lg,
.u-py-85-lg {
    padding-top: 85px !important;
  }

  .u-pt-90-lg,
.u-py-90-lg {
    padding-top: 90px !important;
  }

  .u-pt-95-lg,
.u-py-95-lg {
    padding-top: 95px !important;
  }

  .u-pt-100-lg,
.u-py-100-lg {
    padding-top: 100px !important;
  }

  .u-pb-0-lg,
.u-py-0-lg {
    padding-bottom: 0px !important;
  }

  .u-pb-5-lg,
.u-py-5-lg {
    padding-bottom: 5px !important;
  }

  .u-pb-10-lg,
.u-py-10-lg {
    padding-bottom: 10px !important;
  }

  .u-pb-15-lg,
.u-py-15-lg {
    padding-bottom: 15px !important;
  }

  .u-pb-20-lg,
.u-py-20-lg {
    padding-bottom: 20px !important;
  }

  .u-pb-25-lg,
.u-py-25-lg {
    padding-bottom: 25px !important;
  }

  .u-pb-30-lg,
.u-py-30-lg {
    padding-bottom: 30px !important;
  }

  .u-pb-35-lg,
.u-py-35-lg {
    padding-bottom: 35px !important;
  }

  .u-pb-40-lg,
.u-py-40-lg {
    padding-bottom: 40px !important;
  }

  .u-pb-45-lg,
.u-py-45-lg {
    padding-bottom: 45px !important;
  }

  .u-pb-50-lg,
.u-py-50-lg {
    padding-bottom: 50px !important;
  }

  .u-pb-55-lg,
.u-py-55-lg {
    padding-bottom: 55px !important;
  }

  .u-pb-60-lg,
.u-py-60-lg {
    padding-bottom: 60px !important;
  }

  .u-pb-65-lg,
.u-py-65-lg {
    padding-bottom: 65px !important;
  }

  .u-pb-70-lg,
.u-py-70-lg {
    padding-bottom: 70px !important;
  }

  .u-pb-75-lg,
.u-py-75-lg {
    padding-bottom: 75px !important;
  }

  .u-pb-80-lg,
.u-py-80-lg {
    padding-bottom: 80px !important;
  }

  .u-pb-85-lg,
.u-py-85-lg {
    padding-bottom: 85px !important;
  }

  .u-pb-90-lg,
.u-py-90-lg {
    padding-bottom: 90px !important;
  }

  .u-pb-95-lg,
.u-py-95-lg {
    padding-bottom: 95px !important;
  }

  .u-pb-100-lg,
.u-py-100-lg {
    padding-bottom: 100px !important;
  }

  .u-pl-0-lg,
.u-px-0-lg {
    padding-left: 0px !important;
  }

  .u-pl-5-lg,
.u-px-5-lg {
    padding-left: 5px !important;
  }

  .u-pl-10-lg,
.u-px-10-lg {
    padding-left: 10px !important;
  }

  .u-pl-15-lg,
.u-px-15-lg {
    padding-left: 15px !important;
  }

  .u-pl-20-lg,
.u-px-20-lg {
    padding-left: 20px !important;
  }

  .u-pl-25-lg,
.u-px-25-lg {
    padding-left: 25px !important;
  }

  .u-pl-30-lg,
.u-px-30-lg {
    padding-left: 30px !important;
  }

  .u-pl-35-lg,
.u-px-35-lg {
    padding-left: 35px !important;
  }

  .u-pl-40-lg,
.u-px-40-lg {
    padding-left: 40px !important;
  }

  .u-pl-45-lg,
.u-px-45-lg {
    padding-left: 45px !important;
  }

  .u-pl-50-lg,
.u-px-50-lg {
    padding-left: 50px !important;
  }

  .u-pl-55-lg,
.u-px-55-lg {
    padding-left: 55px !important;
  }

  .u-pl-60-lg,
.u-px-60-lg {
    padding-left: 60px !important;
  }

  .u-pl-65-lg,
.u-px-65-lg {
    padding-left: 65px !important;
  }

  .u-pl-70-lg,
.u-px-70-lg {
    padding-left: 70px !important;
  }

  .u-pl-75-lg,
.u-px-75-lg {
    padding-left: 75px !important;
  }

  .u-pl-80-lg,
.u-px-80-lg {
    padding-left: 80px !important;
  }

  .u-pl-85-lg,
.u-px-85-lg {
    padding-left: 85px !important;
  }

  .u-pl-90-lg,
.u-px-90-lg {
    padding-left: 90px !important;
  }

  .u-pl-95-lg,
.u-px-95-lg {
    padding-left: 95px !important;
  }

  .u-pl-100-lg,
.u-px-100-lg {
    padding-left: 100px !important;
  }

  .u-pr-0-lg,
.u-px-0-lg {
    padding-right: 0px !important;
  }

  .u-pr-5-lg,
.u-px-5-lg {
    padding-right: 5px !important;
  }

  .u-pr-10-lg,
.u-px-10-lg {
    padding-right: 10px !important;
  }

  .u-pr-15-lg,
.u-px-15-lg {
    padding-right: 15px !important;
  }

  .u-pr-20-lg,
.u-px-20-lg {
    padding-right: 20px !important;
  }

  .u-pr-25-lg,
.u-px-25-lg {
    padding-right: 25px !important;
  }

  .u-pr-30-lg,
.u-px-30-lg {
    padding-right: 30px !important;
  }

  .u-pr-35-lg,
.u-px-35-lg {
    padding-right: 35px !important;
  }

  .u-pr-40-lg,
.u-px-40-lg {
    padding-right: 40px !important;
  }

  .u-pr-45-lg,
.u-px-45-lg {
    padding-right: 45px !important;
  }

  .u-pr-50-lg,
.u-px-50-lg {
    padding-right: 50px !important;
  }

  .u-pr-55-lg,
.u-px-55-lg {
    padding-right: 55px !important;
  }

  .u-pr-60-lg,
.u-px-60-lg {
    padding-right: 60px !important;
  }

  .u-pr-65-lg,
.u-px-65-lg {
    padding-right: 65px !important;
  }

  .u-pr-70-lg,
.u-px-70-lg {
    padding-right: 70px !important;
  }

  .u-pr-75-lg,
.u-px-75-lg {
    padding-right: 75px !important;
  }

  .u-pr-80-lg,
.u-px-80-lg {
    padding-right: 80px !important;
  }

  .u-pr-85-lg,
.u-px-85-lg {
    padding-right: 85px !important;
  }

  .u-pr-90-lg,
.u-px-90-lg {
    padding-right: 90px !important;
  }

  .u-pr-95-lg,
.u-px-95-lg {
    padding-right: 95px !important;
  }

  .u-pr-100-lg,
.u-px-100-lg {
    padding-right: 100px !important;
  }
}
@media screen and (min-width: 1201px) {
  .u-px-auto-xl {
    padding-left: auto !important;
    padding-right: auto !important;
  }

  .u-pt-0-xl,
.u-py-0-xl {
    padding-top: 0px !important;
  }

  .u-pt-5-xl,
.u-py-5-xl {
    padding-top: 5px !important;
  }

  .u-pt-10-xl,
.u-py-10-xl {
    padding-top: 10px !important;
  }

  .u-pt-15-xl,
.u-py-15-xl {
    padding-top: 15px !important;
  }

  .u-pt-20-xl,
.u-py-20-xl {
    padding-top: 20px !important;
  }

  .u-pt-25-xl,
.u-py-25-xl {
    padding-top: 25px !important;
  }

  .u-pt-30-xl,
.u-py-30-xl {
    padding-top: 30px !important;
  }

  .u-pt-35-xl,
.u-py-35-xl {
    padding-top: 35px !important;
  }

  .u-pt-40-xl,
.u-py-40-xl {
    padding-top: 40px !important;
  }

  .u-pt-45-xl,
.u-py-45-xl {
    padding-top: 45px !important;
  }

  .u-pt-50-xl,
.u-py-50-xl {
    padding-top: 50px !important;
  }

  .u-pt-55-xl,
.u-py-55-xl {
    padding-top: 55px !important;
  }

  .u-pt-60-xl,
.u-py-60-xl {
    padding-top: 60px !important;
  }

  .u-pt-65-xl,
.u-py-65-xl {
    padding-top: 65px !important;
  }

  .u-pt-70-xl,
.u-py-70-xl {
    padding-top: 70px !important;
  }

  .u-pt-75-xl,
.u-py-75-xl {
    padding-top: 75px !important;
  }

  .u-pt-80-xl,
.u-py-80-xl {
    padding-top: 80px !important;
  }

  .u-pt-85-xl,
.u-py-85-xl {
    padding-top: 85px !important;
  }

  .u-pt-90-xl,
.u-py-90-xl {
    padding-top: 90px !important;
  }

  .u-pt-95-xl,
.u-py-95-xl {
    padding-top: 95px !important;
  }

  .u-pt-100-xl,
.u-py-100-xl {
    padding-top: 100px !important;
  }

  .u-pb-0-xl,
.u-py-0-xl {
    padding-bottom: 0px !important;
  }

  .u-pb-5-xl,
.u-py-5-xl {
    padding-bottom: 5px !important;
  }

  .u-pb-10-xl,
.u-py-10-xl {
    padding-bottom: 10px !important;
  }

  .u-pb-15-xl,
.u-py-15-xl {
    padding-bottom: 15px !important;
  }

  .u-pb-20-xl,
.u-py-20-xl {
    padding-bottom: 20px !important;
  }

  .u-pb-25-xl,
.u-py-25-xl {
    padding-bottom: 25px !important;
  }

  .u-pb-30-xl,
.u-py-30-xl {
    padding-bottom: 30px !important;
  }

  .u-pb-35-xl,
.u-py-35-xl {
    padding-bottom: 35px !important;
  }

  .u-pb-40-xl,
.u-py-40-xl {
    padding-bottom: 40px !important;
  }

  .u-pb-45-xl,
.u-py-45-xl {
    padding-bottom: 45px !important;
  }

  .u-pb-50-xl,
.u-py-50-xl {
    padding-bottom: 50px !important;
  }

  .u-pb-55-xl,
.u-py-55-xl {
    padding-bottom: 55px !important;
  }

  .u-pb-60-xl,
.u-py-60-xl {
    padding-bottom: 60px !important;
  }

  .u-pb-65-xl,
.u-py-65-xl {
    padding-bottom: 65px !important;
  }

  .u-pb-70-xl,
.u-py-70-xl {
    padding-bottom: 70px !important;
  }

  .u-pb-75-xl,
.u-py-75-xl {
    padding-bottom: 75px !important;
  }

  .u-pb-80-xl,
.u-py-80-xl {
    padding-bottom: 80px !important;
  }

  .u-pb-85-xl,
.u-py-85-xl {
    padding-bottom: 85px !important;
  }

  .u-pb-90-xl,
.u-py-90-xl {
    padding-bottom: 90px !important;
  }

  .u-pb-95-xl,
.u-py-95-xl {
    padding-bottom: 95px !important;
  }

  .u-pb-100-xl,
.u-py-100-xl {
    padding-bottom: 100px !important;
  }

  .u-pl-0-xl,
.u-px-0-xl {
    padding-left: 0px !important;
  }

  .u-pl-5-xl,
.u-px-5-xl {
    padding-left: 5px !important;
  }

  .u-pl-10-xl,
.u-px-10-xl {
    padding-left: 10px !important;
  }

  .u-pl-15-xl,
.u-px-15-xl {
    padding-left: 15px !important;
  }

  .u-pl-20-xl,
.u-px-20-xl {
    padding-left: 20px !important;
  }

  .u-pl-25-xl,
.u-px-25-xl {
    padding-left: 25px !important;
  }

  .u-pl-30-xl,
.u-px-30-xl {
    padding-left: 30px !important;
  }

  .u-pl-35-xl,
.u-px-35-xl {
    padding-left: 35px !important;
  }

  .u-pl-40-xl,
.u-px-40-xl {
    padding-left: 40px !important;
  }

  .u-pl-45-xl,
.u-px-45-xl {
    padding-left: 45px !important;
  }

  .u-pl-50-xl,
.u-px-50-xl {
    padding-left: 50px !important;
  }

  .u-pl-55-xl,
.u-px-55-xl {
    padding-left: 55px !important;
  }

  .u-pl-60-xl,
.u-px-60-xl {
    padding-left: 60px !important;
  }

  .u-pl-65-xl,
.u-px-65-xl {
    padding-left: 65px !important;
  }

  .u-pl-70-xl,
.u-px-70-xl {
    padding-left: 70px !important;
  }

  .u-pl-75-xl,
.u-px-75-xl {
    padding-left: 75px !important;
  }

  .u-pl-80-xl,
.u-px-80-xl {
    padding-left: 80px !important;
  }

  .u-pl-85-xl,
.u-px-85-xl {
    padding-left: 85px !important;
  }

  .u-pl-90-xl,
.u-px-90-xl {
    padding-left: 90px !important;
  }

  .u-pl-95-xl,
.u-px-95-xl {
    padding-left: 95px !important;
  }

  .u-pl-100-xl,
.u-px-100-xl {
    padding-left: 100px !important;
  }

  .u-pr-0-xl,
.u-px-0-xl {
    padding-right: 0px !important;
  }

  .u-pr-5-xl,
.u-px-5-xl {
    padding-right: 5px !important;
  }

  .u-pr-10-xl,
.u-px-10-xl {
    padding-right: 10px !important;
  }

  .u-pr-15-xl,
.u-px-15-xl {
    padding-right: 15px !important;
  }

  .u-pr-20-xl,
.u-px-20-xl {
    padding-right: 20px !important;
  }

  .u-pr-25-xl,
.u-px-25-xl {
    padding-right: 25px !important;
  }

  .u-pr-30-xl,
.u-px-30-xl {
    padding-right: 30px !important;
  }

  .u-pr-35-xl,
.u-px-35-xl {
    padding-right: 35px !important;
  }

  .u-pr-40-xl,
.u-px-40-xl {
    padding-right: 40px !important;
  }

  .u-pr-45-xl,
.u-px-45-xl {
    padding-right: 45px !important;
  }

  .u-pr-50-xl,
.u-px-50-xl {
    padding-right: 50px !important;
  }

  .u-pr-55-xl,
.u-px-55-xl {
    padding-right: 55px !important;
  }

  .u-pr-60-xl,
.u-px-60-xl {
    padding-right: 60px !important;
  }

  .u-pr-65-xl,
.u-px-65-xl {
    padding-right: 65px !important;
  }

  .u-pr-70-xl,
.u-px-70-xl {
    padding-right: 70px !important;
  }

  .u-pr-75-xl,
.u-px-75-xl {
    padding-right: 75px !important;
  }

  .u-pr-80-xl,
.u-px-80-xl {
    padding-right: 80px !important;
  }

  .u-pr-85-xl,
.u-px-85-xl {
    padding-right: 85px !important;
  }

  .u-pr-90-xl,
.u-px-90-xl {
    padding-right: 90px !important;
  }

  .u-pr-95-xl,
.u-px-95-xl {
    padding-right: 95px !important;
  }

  .u-pr-100-xl,
.u-px-100-xl {
    padding-right: 100px !important;
  }
}/*# sourceMappingURL=style.css.map */