@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Roboto:wght@400;500&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
}

:where(body) {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1pt solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1pt;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1pt !important;
  width: 1pt !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --vw: 1vw;
  --leading-trim: calc((1em - 1lh) / 2);
  --header-height: calc(var(--vw) * 16);
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: 10rem;
  }
}

html {
  color: #000000;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: 2.6666666667vw;
  font-size: calc(var(--vw) * 100 * 10 / 375);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  background-color: #fff;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-size: 1.6rem;
  position: relative;
  overflow-x: hidden;
  font-feature-settings: "palt";
}
body.-open-drawer {
  overflow: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video,
embed,
object {
  max-width: 100%;
  vertical-align: bottom;
}

img {
  width: auto;
  height: auto;
}

figure {
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
}

.l-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
.l-wrap.-top {
  overflow: hidden;
  height: 100svh;
  scrollbar-gutter: stable;
  background: radial-gradient(151.25% 96.58% at 19.27% 35.07%, #fff 0%, #c7e5f1 100%);
}
@media screen and (min-width: 768px) {
  .l-wrap.-top {
    background: radial-gradient(151.25% 96.58% at 26.25% 40.97%, #fff 0%, #c7e5f1 100%);
  }
}
.l-wrap.-top.-active {
  overflow: auto;
  height: auto;
  scrollbar-gutter: auto;
}

.l-contents__body {
  padding-top: var(--header-height);
}
body.-top .l-contents__body {
  padding-top: 0;
}
.js-inview.js-inview--fadeup {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(3rem); /* 下に3remの位置から */
  transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-inview.js-inview--fadeup.js-inview--done {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 3rem上に移動する */
}

.c-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .c-container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.c-container.-p-zero {
  padding-left: 0;
  padding-right: 0;
}
.c-container.-p-sm {
  padding-left: 2rem;
  padding-right: 2rem;
}
.c-container.-p-md {
  padding-left: 5rem;
  padding-right: 5rem;
}
.c-container.-p-lg {
  padding-left: 10rem;
  padding-right: 10rem;
}
.c-container.-max-width-none {
  max-width: none;
}
.c-container.-max-width-sm {
  max-width: 86rem;
}
.c-container.-max-width-rg {
  max-width: 124rem;
}
.c-container.-max-width-md {
  max-width: 134rem;
}
.c-container.-max-width-lg {
  max-width: 134rem;
}

@media screen and (min-width: 768px) {
  .c-container.-p-zero-md {
    padding-left: 0;
    padding-right: 0;
  }
  .c-container.-p-sm-md {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .c-container.-p-md-md {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .c-container.-p-lg-md {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .c-container.-max-width-none-md {
    max-width: none;
  }
  .c-container.-max-width-sm-md {
    max-width: 86rem;
  }
  .c-container.-max-width-rg-md {
    max-width: 124rem;
  }
  .c-container.-max-width-md-md {
    max-width: 134rem;
  }
  .c-container.-max-width-lg-md {
    max-width: 134rem;
  }
}
@media screen and (min-width: 900px) {
  .c-container.-p-zero-md-x {
    padding-left: 0;
    padding-right: 0;
  }
  .c-container.-p-sm-md-x {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .c-container.-p-md-md-x {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .c-container.-p-lg-md-x {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .c-container.-max-width-none-md-x {
    max-width: none;
  }
  .c-container.-max-width-sm-md-x {
    max-width: 86rem;
  }
  .c-container.-max-width-rg-md-x {
    max-width: 124rem;
  }
  .c-container.-max-width-md-md-x {
    max-width: 134rem;
  }
  .c-container.-max-width-lg-md-x {
    max-width: 134rem;
  }
}
@media screen and (min-width: 1080px) {
  .c-container.-p-zero-lg {
    padding-left: 0;
    padding-right: 0;
  }
  .c-container.-p-sm-lg {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .c-container.-p-md-lg {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .c-container.-p-lg-lg {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .c-container.-max-width-none-lg {
    max-width: none;
  }
  .c-container.-max-width-sm-lg {
    max-width: 86rem;
  }
  .c-container.-max-width-rg-lg {
    max-width: 124rem;
  }
  .c-container.-max-width-md-lg {
    max-width: 134rem;
  }
  .c-container.-max-width-lg-lg {
    max-width: 134rem;
  }
}
@media screen and (min-width: 1280px) {
  .c-container.-p-zero-xl {
    padding-left: 0;
    padding-right: 0;
  }
  .c-container.-p-sm-xl {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .c-container.-p-md-xl {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .c-container.-p-lg-xl {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .c-container.-max-width-none-xl {
    max-width: none;
  }
  .c-container.-max-width-sm-xl {
    max-width: 86rem;
  }
  .c-container.-max-width-rg-xl {
    max-width: 124rem;
  }
  .c-container.-max-width-md-xl {
    max-width: 134rem;
  }
  .c-container.-max-width-lg-xl {
    max-width: 134rem;
  }
}
.c-container.-border-bottom {
  position: relative;
}
.c-container.-border-bottom:after {
  content: "";
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
  bottom: 0;
  right: 2rem;
  left: 2rem;
  width: auto;
}
@media screen and (min-width: 768px) {
  .c-container.-border-bottom:after {
    right: 5rem;
    left: 5rem;
  }
}

.c-cookie {
  display: flex;
  flex-direction: column;
  gap: 1.640625em;
  color: #fff;
  background-color: #222222;
  padding: 1.640625em;
}
@media screen and (min-width: 768px) {
  .c-cookie {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.640625em;
  }
}
.c-cookie__text {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-cookie__text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.c-cookie__button-group {
  display: flex;
  flex: 0 0 auto;
  gap: 1.4rem;
}

.c-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.c-badge {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.3333em 0.875em;
  background-color: #222222;
}
.c-badge.-radius-rounded {
  border-radius: 0.25em;
}
.c-badge.-radius-circle {
  border-radius: 9999rem;
}
.c-badge.-outline-black, .c-badge.-outline-white, .c-badge.-outline-brand, .c-badge.-outline-brand-accent {
  background-color: transparent;
  outline: solid 0.1rem;
  outline-offset: -0.1rem;
}
.c-badge.-outline-black {
  color: #222222;
  outline-color: #222222;
}
.c-badge.-outline-white {
  color: #fff;
  outline-color: #fff;
}
.c-badge.-outline-brand {
  color: #1F3183;
  outline-color: #1F3183;
}
.c-badge.-outline-brand-accent {
  color: #9e8850;
  outline-color: #9e8850;
}
.c-badge.-color-white {
  background-color: #fff;
  color: #222222;
}
.c-badge.-color-brand {
  background-color: #1F3183;
  color: #fff;
}
.c-badge.-color-brand-accent {
  background-color: #9e8850;
  color: #fff;
}

.c-button {
  --button-color: #1F3183;
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0.5rem;
  position: relative;
  background-color: var(--button-color);
  transition: opacity 0.4s;
}
.c-button__inner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 1.161rem 0.993rem 1.161rem 1.793rem;
  text-decoration: none;
  vertical-align: bottom;
  color: #fff;
}
.c-button__icon {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  position: relative;
  top: 0.1rem;
  overflow: hidden;
}
.c-button__icon:before, .c-button__icon:after {
  content: "";
  display: block;
  background: url(../img/arrow-external-link-white.svg);
  background-size: contain;
  background-repeat: repeat;
  transition: transform 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-button__icon:after {
  transform: translate(-100%, 100%);
}
.c-button:hover .c-button__icon:before {
  transform: translate(100%, -100%);
}
.c-button:hover .c-button__icon:after {
  transform: translate(0, 0);
}
.c-button.-color-white {
  --button-color: #fff;
  color: #1F3183;
}
.c-button.-outline-white {
  --button-color: transparent;
  border: 1pt solid #fff;
  color: #fff;
}

.c-icon {
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-icon.-icon-arrow-external-link {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  position: relative;
  overflow: hidden;
}
.c-icon.-icon-arrow-external-link:before, .c-icon.-icon-arrow-external-link:after {
  content: "";
  display: block;
  background: url(../img/arrow-external-link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-icon.-icon-arrow-external-link:after {
  transform: translate(-100%, 100%);
}
.c-icon.-icon-arrow-internal-link {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  position: relative;
  overflow: hidden;
}
.c-icon.-icon-arrow-internal-link:before, .c-icon.-icon-arrow-internal-link:after {
  content: "";
  display: block;
  background: url(../img/arrow-internal-link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-icon.-icon-arrow-internal-link:after {
  transform: translate(-100%, 0);
}

.c-row {
  --gutter-x: 0rem;
  --gutter-y: 0rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter-y) var(--gutter-x);
}
.c-row.-gutters-0, .c-row.-gutters-x-0 {
  --gutter-x: 0rem;
}
.c-row.-gutters-0, .c-row.-gutters-y-0 {
  --gutter-y: 0rem;
}
@media screen and (min-width: 768px) {
  .c-row.-gutters-0-md, .c-row.-gutters-x-0-md {
    --gutter-x: 0rem;
  }
  .c-row.-gutters-0-md, .c-row.-gutters-y-0-md {
    --gutter-y: 0rem;
  }
}
@media screen and (min-width: 900px) {
  .c-row.-gutters-0-md-x, .c-row.-gutters-x-0-md-x {
    --gutter-x: 0rem;
  }
  .c-row.-gutters-0-md-x, .c-row.-gutters-y-0-md-x {
    --gutter-y: 0rem;
  }
}
@media screen and (min-width: 1080px) {
  .c-row.-gutters-0-lg, .c-row.-gutters-x-0-lg {
    --gutter-x: 0rem;
  }
  .c-row.-gutters-0-lg, .c-row.-gutters-y-0-lg {
    --gutter-y: 0rem;
  }
}
@media screen and (min-width: 1280px) {
  .c-row.-gutters-0-xl, .c-row.-gutters-x-0-xl {
    --gutter-x: 0rem;
  }
  .c-row.-gutters-0-xl, .c-row.-gutters-y-0-xl {
    --gutter-y: 0rem;
  }
}
.c-row.-size-1-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-2-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-3-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-4-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-5-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-6-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-7-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-8-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-9-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-10-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-11-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-12-12 .c-row__col {
  flex: 0 0 auto;
  width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row.-size-auto .c-row__col {
  flex: 0 0 auto;
  width: auto;
}
@media screen and (min-width: 768px) {
  .c-row.-size-1-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-2-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-3-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-4-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-5-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-6-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-7-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-8-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-9-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-10-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-11-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-12-12-md .c-row__col {
    flex: 0 0 auto;
    width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-auto-md .c-row__col {
    flex: 0 0 auto;
    width: auto;
  }
}
@media screen and (min-width: 900px) {
  .c-row.-size-1-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-2-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-3-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-4-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-5-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-6-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-7-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-8-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-9-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-10-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-11-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-12-12-md-x .c-row__col {
    flex: 0 0 auto;
    width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-auto-md-x .c-row__col {
    flex: 0 0 auto;
    width: auto;
  }
}
@media screen and (min-width: 1080px) {
  .c-row.-size-1-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-2-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-3-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-4-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-5-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-6-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-7-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-8-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-9-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-10-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-11-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-12-12-lg .c-row__col {
    flex: 0 0 auto;
    width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-auto-lg .c-row__col {
    flex: 0 0 auto;
    width: auto;
  }
}
@media screen and (min-width: 1280px) {
  .c-row.-size-1-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-2-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-3-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-4-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-5-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-6-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-7-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-8-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-9-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-10-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-11-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-12-12-xl .c-row__col {
    flex: 0 0 auto;
    width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row.-size-auto-xl .c-row__col {
    flex: 0 0 auto;
    width: auto;
  }
}
.c-row .c-row__col {
  flex: 1 0 0%;
}
.c-row .c-row__col.-size-1-12 {
  flex: 0 0 auto;
  width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-2-12 {
  flex: 0 0 auto;
  width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-3-12 {
  flex: 0 0 auto;
  width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-4-12 {
  flex: 0 0 auto;
  width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-5-12 {
  flex: 0 0 auto;
  width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-6-12 {
  flex: 0 0 auto;
  width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-7-12 {
  flex: 0 0 auto;
  width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-8-12 {
  flex: 0 0 auto;
  width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-9-12 {
  flex: 0 0 auto;
  width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-10-12 {
  flex: 0 0 auto;
  width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-11-12 {
  flex: 0 0 auto;
  width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-12-12 {
  flex: 0 0 auto;
  width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
}
.c-row .c-row__col.-size-auto {
  flex: 0 0 auto;
  width: auto;
}
@media screen and (min-width: 768px) {
  .c-row .c-row__col.-size-1-12-md {
    flex: 0 0 auto;
    width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-2-12-md {
    flex: 0 0 auto;
    width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-3-12-md {
    flex: 0 0 auto;
    width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-4-12-md {
    flex: 0 0 auto;
    width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-5-12-md {
    flex: 0 0 auto;
    width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-6-12-md {
    flex: 0 0 auto;
    width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-7-12-md {
    flex: 0 0 auto;
    width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-8-12-md {
    flex: 0 0 auto;
    width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-9-12-md {
    flex: 0 0 auto;
    width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-10-12-md {
    flex: 0 0 auto;
    width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-11-12-md {
    flex: 0 0 auto;
    width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-12-12-md {
    flex: 0 0 auto;
    width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-auto-md {
    flex: 0 0 auto;
    width: auto;
  }
}
@media screen and (min-width: 900px) {
  .c-row .c-row__col.-size-1-12-md-x {
    flex: 0 0 auto;
    width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-2-12-md-x {
    flex: 0 0 auto;
    width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-3-12-md-x {
    flex: 0 0 auto;
    width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-4-12-md-x {
    flex: 0 0 auto;
    width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-5-12-md-x {
    flex: 0 0 auto;
    width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-6-12-md-x {
    flex: 0 0 auto;
    width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-7-12-md-x {
    flex: 0 0 auto;
    width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-8-12-md-x {
    flex: 0 0 auto;
    width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-9-12-md-x {
    flex: 0 0 auto;
    width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-10-12-md-x {
    flex: 0 0 auto;
    width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-11-12-md-x {
    flex: 0 0 auto;
    width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-12-12-md-x {
    flex: 0 0 auto;
    width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-auto-md-x {
    flex: 0 0 auto;
    width: auto;
  }
}
@media screen and (min-width: 1080px) {
  .c-row .c-row__col.-size-1-12-lg {
    flex: 0 0 auto;
    width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-2-12-lg {
    flex: 0 0 auto;
    width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-3-12-lg {
    flex: 0 0 auto;
    width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-4-12-lg {
    flex: 0 0 auto;
    width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-5-12-lg {
    flex: 0 0 auto;
    width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-6-12-lg {
    flex: 0 0 auto;
    width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-7-12-lg {
    flex: 0 0 auto;
    width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-8-12-lg {
    flex: 0 0 auto;
    width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-9-12-lg {
    flex: 0 0 auto;
    width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-10-12-lg {
    flex: 0 0 auto;
    width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-11-12-lg {
    flex: 0 0 auto;
    width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-12-12-lg {
    flex: 0 0 auto;
    width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-auto-lg {
    flex: 0 0 auto;
    width: auto;
  }
}
@media screen and (min-width: 1280px) {
  .c-row .c-row__col.-size-1-12-xl {
    flex: 0 0 auto;
    width: calc(1 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-2-12-xl {
    flex: 0 0 auto;
    width: calc(2 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-3-12-xl {
    flex: 0 0 auto;
    width: calc(3 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-4-12-xl {
    flex: 0 0 auto;
    width: calc(4 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-5-12-xl {
    flex: 0 0 auto;
    width: calc(5 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-6-12-xl {
    flex: 0 0 auto;
    width: calc(6 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-7-12-xl {
    flex: 0 0 auto;
    width: calc(7 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-8-12-xl {
    flex: 0 0 auto;
    width: calc(8 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-9-12-xl {
    flex: 0 0 auto;
    width: calc(9 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-10-12-xl {
    flex: 0 0 auto;
    width: calc(10 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-11-12-xl {
    flex: 0 0 auto;
    width: calc(11 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-12-12-xl {
    flex: 0 0 auto;
    width: calc(12 / 12 * (100% + var(--gutter-x)) - var(--gutter-x));
  }
  .c-row .c-row__col.-size-auto-xl {
    flex: 0 0 auto;
    width: auto;
  }
}

.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.25em;
  font-size: 1.2rem;
  line-height: 1.3;
  list-style: none;
}
.c-breadcrumb__item {
  display: flex;
}
.c-breadcrumb__item:not(:first-child)::before {
  font-style: normal;
  font-weight: 400;
  content: ">";
  display: inline-block;
  padding-right: 0.25em;
  font-size: 1em;
  vertical-align: -0.06em;
}
.c-breadcrumb__item.-current a {
  text-decoration: none;
  pointer-events: none;
}

.c-table {
  min-width: 100%;
  caption-side: bottom;
  border-collapse: collapse;
  border-color: rgb(40, 54, 56);
  line-height: 1.25;
}
@media not screen and (min-width: 768px) {
  .c-table {
    font-size: 1.4rem;
    line-height: 1.428571;
  }
}
.c-table__thead, .c-table__tbody, .c-table__tr, .c-table__th, .c-table__td {
  text-align: left;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
.c-table__thead {
  vertical-align: bottom;
}
.c-table__thead .c-table__th {
  font-weight: 500;
}
.c-table__tbody {
  vertical-align: inherit;
}
.c-table__th, .c-table__td {
  font-weight: 400;
  border-bottom-width: 0.1rem;
  padding: 1.3125em 1.375em;
}
@media not screen and (min-width: 768px) {
  .c-table__th, .c-table__td {
    padding: 0.875em;
  }
}
.c-table caption {
  text-align: left;
  margin-top: 2rem;
  font-weight: 400;
  line-height: 1.875;
}
@media not screen and (min-width: 768px) {
  .c-table caption {
    margin-top: 1.2rem;
  }
}
.c-table__colgroup-col.-width-10per {
  width: 10%;
}
.c-table__colgroup-col.-width-11per {
  width: 11%;
}
.c-table__colgroup-col.-width-12per {
  width: 12%;
}
.c-table__colgroup-col.-width-13per {
  width: 13%;
}
.c-table__colgroup-col.-width-14per {
  width: 14%;
}
.c-table__colgroup-col.-width-15per {
  width: 15%;
}
.c-table__colgroup-col.-width-16per {
  width: 16%;
}
.c-table__colgroup-col.-width-17per {
  width: 17%;
}
.c-table__colgroup-col.-width-18per {
  width: 18%;
}
.c-table__colgroup-col.-width-19per {
  width: 19%;
}
.c-table__colgroup-col.-width-20per {
  width: 20%;
}
.c-table__colgroup-col.-width-21per {
  width: 21%;
}
.c-table__colgroup-col.-width-22per {
  width: 22%;
}
.c-table__colgroup-col.-width-23per {
  width: 23%;
}
.c-table__colgroup-col.-width-24per {
  width: 24%;
}
.c-table__colgroup-col.-width-25per {
  width: 25%;
}
.c-table__colgroup-col.-width-26per {
  width: 26%;
}
.c-table__colgroup-col.-width-27per {
  width: 27%;
}
.c-table__colgroup-col.-width-28per {
  width: 28%;
}
.c-table__colgroup-col.-width-29per {
  width: 29%;
}
.c-table__colgroup-col.-width-30per {
  width: 30%;
}
.c-table__colgroup-col.-width-31per {
  width: 31%;
}
.c-table__colgroup-col.-width-32per {
  width: 32%;
}
.c-table__colgroup-col.-width-33per {
  width: 33%;
}
.c-table__colgroup-col.-width-34per {
  width: 34%;
}
.c-table__colgroup-col.-width-35per {
  width: 35%;
}
.c-table__colgroup-col.-width-36per {
  width: 36%;
}
.c-table__colgroup-col.-width-37per {
  width: 37%;
}
.c-table__colgroup-col.-width-38per {
  width: 38%;
}
.c-table__colgroup-col.-width-39per {
  width: 39%;
}
.c-table__colgroup-col.-width-40per {
  width: 40%;
}
.c-table__colgroup-col.-width-41per {
  width: 41%;
}
.c-table__colgroup-col.-width-42per {
  width: 42%;
}
.c-table__colgroup-col.-width-43per {
  width: 43%;
}
.c-table__colgroup-col.-width-44per {
  width: 44%;
}
.c-table__colgroup-col.-width-45per {
  width: 45%;
}
.c-table__colgroup-col.-width-46per {
  width: 46%;
}
.c-table__colgroup-col.-width-47per {
  width: 47%;
}
.c-table__colgroup-col.-width-48per {
  width: 48%;
}
.c-table__colgroup-col.-width-49per {
  width: 49%;
}
.c-table__colgroup-col.-width-50per {
  width: 50%;
}
.c-table.-width-fixed {
  table-layout: fixed;
  width: 100%;
}
.c-table.-bordered .c-table__th,
.c-table.-bordered .c-table__td {
  border-width: 0.1rem;
}
.c-table.-width-auto {
  min-width: auto;
}

.c-text-link, .c-text-link:hover {
  color: inherit;
}
.c-text-link.-rich {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  font-size: 1.4rem;
  font-weight: 500;
}
.c-text-link.-rich .c-text-link__inner {
  position: relative;
  padding-right: 5rem;
  padding-bottom: 0.214285em;
}
.c-text-link.-rich .c-text-link__icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translate(50%, -50%);
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  background: #1F3183;
  transition: height 300ms cubic-bezier(0.8, 0, 0.17, 1), width 300ms cubic-bezier(0.8, 0, 0.17, 1);
}
.c-text-link.-rich .c-text-link__icon:before {
  content: "";
  display: block;
  width: 55%;
  height: 25%;
  background: url(../img/link-arrow.svg) center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-125%, -50%);
  transition: transform 300ms cubic-bezier(0.8, 0, 0.17, 1);
}
.c-text-link.-rich.-current .c-text-link__icon {
  background: #9e8850;
}
.c-text-link.-rich:not(.-current):hover {
  text-decoration: none;
}
.c-text-link.-rich:not(.-current):hover .c-text-link__icon {
  height: 4rem;
  width: 4rem;
}
.c-text-link.-rich:not(.-current):hover .c-text-link__icon:before {
  transform: translate(0, -50%);
}
@media not screen and (min-width: 768px) {
  .c-text-link.-rich {
    text-decoration: none;
  }
  .c-text-link.-rich .c-text-link__icon {
    height: 4rem;
    width: 4rem;
  }
  .c-text-link.-rich .c-text-link__icon:before {
    transform: translate(0, -50%);
  }
}
.c-text-link.-rich.-current {
  pointer-events: none;
  text-decoration: none;
  opacity: 1;
}
.c-text-link.-rich.-streched-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .c-text-style.-heading-1 {
    font-size: 6rem;
    line-height: 1.2;
  }
}
.c-text-style.-heading-1 {
  font-size: 6rem;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-text-style.-heading-2 {
    font-size: 5rem;
    line-height: 1.2;
  }
}
.c-text-style.-heading-2 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-text-style.-heading-3 {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}
.c-text-style.-heading-3 {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-text-style.-heading-4 {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
.c-text-style.-heading-4 {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-text-style.-small-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.c-text-style.-small-text {
  font-size: 1.4rem;
  line-height: 1.8;
}
.c-text-style.-center-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
.c-text-style.-center-title > .c-text-style__item {
  position: relative;
  display: inline-block;
  width: fit-content;
  line-height: 1;
}
.c-text-style.-center-title > .c-text-style__item.-en {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
}
.c-text-style.-center-title > .c-text-style__item.-ja {
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: 1.3rem;
  margin-top: 0.8rem;
}
.c-text-style.-center-title-rich {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  font-weight: 500;
}
.c-text-style.-center-title-rich > .c-text-style__item {
  position: relative;
  display: inline-block;
  width: fit-content;
  line-height: 1;
}
.c-text-style.-center-title-rich > .c-text-style__item.-en {
  font-family: "Roboto", sans-serif;
  color: #9e8850;
  font-size: 2rem;
}
.c-text-style.-center-title-rich > .c-text-style__item.-ja {
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: 2.6rem;
  margin-top: 1.7rem;
}
.c-text-style.-mask-bg-title {
  position: relative;
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 1.1rem;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  padding-bottom: 1.1rem;
  font-weight: 500;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .c-text-style.-mask-bg-title {
    padding-top: 6.6rem;
  }
}
.c-text-style.-mask-bg-title::before {
  background: #B2A073;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 1.3rem;
  height: 1pt;
}
.c-text-style.-mask-bg-title .c-text-style__mask {
  position: absolute;
  left: 0;
  right: 0;
  height: 1em;
  bottom: 1.1rem;
  overflow: hidden;
}
.c-text-style.-mask-bg-title .c-text-style__mask:after {
  background: #000;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translate(100.5%, 0);
}
.c-text-style.-mask-bg-title > span:not(.c-text-style__mask) {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  display: inline-block;
  width: max-content;
  font-size: 1.5rem;
  line-height: 1;
  padding-bottom: 0.1em;
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
}
.c-text-style.-mask-bg-title > span:not(.c-text-style__mask)::after {
  background: #000;
  bottom: 0.1em;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(100.5%, 0);
}
@media not screen and (min-width: 768px) {
  .c-text-style.-mask-bg-title > span:not(.c-text-style__mask) {
    font-size: 4rem;
  }
}
.c-text-style.-mask-bg-title.-reverse {
  padding-top: 0.07rem;
  padding-bottom: 4.1rem;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  flex-direction: column-reverse;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .c-text-style.-mask-bg-title.-reverse {
    font-size: 4rem;
    padding-top: 0.2rem;
    padding-bottom: 4.8rem;
  }
}
.c-text-style.-mask-bg-title.-reverse > span {
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif;
  top: auto;
  bottom: 1.1rem;
}
.c-text-style.-person {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  line-height: 1;
}
.c-text-style.-person .-business-position {
  font-size: 1.8rem;
  margin-bottom: 4.7rem;
}
.c-text-style.-person .-ja {
  font-size: 3.6rem;
  margin-bottom: 2.1rem;
}
.c-text-style.-person .-en {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-text-style.-person .-business-position {
    font-size: 2rem;
    margin-bottom: 3.95rem;
  }
  .c-text-style.-person .-ja {
    font-size: 6rem;
    margin-bottom: 1.9rem;
  }
  .c-text-style.-person .-en {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 2rem;
  }
}
.c-text-style.-h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-text-style.-h3 .c-text-style__item.-en {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.18;
}
.c-text-style.-h3 .c-text-style__item.-ja {
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: 1.6rem;
  margin-top: 0.5em;
}
.c-text-style.-h3.-large .c-text-style__item.-en {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1;
}
.c-text-style.-h3.-large .c-text-style__item.-ja {
  font-size: 1.6rem;
  margin-top: 1em;
}
.c-text-style.-h3-rich {
  --main-text-size: 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 2.3rem;
  font-weight: 500;
}
.c-text-style.-h3-rich:before {
  content: "";
  position: absolute;
  left: 0;
  width: 1.3rem;
  height: 1pt;
  background: #9e8850;
  top: var(--main-text-size);
  transform: translateY(-50%);
}
.c-text-style.-h3-rich .c-text-style__item.-ja {
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: var(--main-text-size);
  line-height: 1.3;
  margin-top: var(--leading-trim);
  margin-bottom: var(--leading-trim);
}
.c-text-style.-h3-rich .c-text-style__item.-en {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 2rem;
}
.c-text-style.-h3-rich.-size-small {
  --main-text-size: 2.8rem;
}
.c-text-style.-h3-rich.-size-small .c-text-style__item.-en {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}
.c-text-style.-h3-rich.-size-large {
  --main-text-size: 3.6rem;
}
.c-text-style.-h3-rich.-size-large .c-text-style__item.-en {
  font-size: 1.6rem;
}
.c-text-style .c-text-style.-h3-rich .c-text-style__item.-ja {
  line-height: 1.3;
  margin-top: var(--leading-trim);
  margin-bottom: var(--leading-trim);
}
.c-text-style .c-text-style.-h3-rich .c-text-style__item.-en {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-text-style .c-text-style.-h3-rich {
    --main-text-size: 3.6rem;
  }
}

body.-lang-en .c-text-style.-mask-bg-title {
  padding-bottom: 2.4rem;
}

@keyframes mask-title-anim {
  0% {
    color: transparent;
  }
  49% {
    color: transparent;
  }
  50% {
    color: inherit;
  }
  100% {
    color: inherit;
  }
}
@keyframes mask-bg-title-anim {
  0% {
    transform: translate(-100.5%, 0);
  }
  49%, 50% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(100.5%, 0);
  }
}
.c-figure.-service-symbol {
  width: 16.2rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c-figure.-service-symbol .c-figure__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #9e8850;
}

.c-wisiwyg h3, .c-wisiwyg h4, .c-wisiwyg h5 {
  font-weight: 500;
}
.c-wisiwyg p {
  margin-top: 15px;
}
.c-wisiwyg__title {
  position: relative;
  display: inline-block;
}
.c-wisiwyg__title.-large {
  font-size: 1.8rem;
  padding-bottom: 1.45rem;
  border-bottom: 1pt solid #000;
  padding-left: 2.4rem;
}
.c-wisiwyg__title.-large:not(:first-child) {
  margin-top: 5rem;
}
.c-wisiwyg__title.-large:not(:last-child) {
  margin-bottom: 3rem;
}
.c-wisiwyg__title.-large:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #9e8850;
  position: absolute;
  left: 0.3rem;
  top: 1rem;
  transform: rotate(45deg);
}
.c-wisiwyg__title.-medium {
  font-size: 1.6rem;
  padding-top: 3rem;
  display: block;
}
.c-wisiwyg__title.-medium:not(:first-child) {
  margin-top: 3rem;
  padding-top: 3.1rem;
}
.c-wisiwyg__title.-medium:not(:first-child):before {
  content: "";
  display: block;
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
  top: 0;
}
.c-wisiwyg__title.-medium:not(:last-child) {
  margin-bottom: 1rem;
}
.c-wisiwyg .c-line {
  display: block;
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
}
.c-wisiwyg .c-line:not(:first-child) {
  margin-top: 3rem;
}
.c-wisiwyg .c-line:not(:last-child) {
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .c-form {
    max-width: 134rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.c-form__table {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-form__table {
    border-bottom: solid 0.1rem #e3e3e3;
  }
}
@media screen and (min-width: 768px) {
  .c-form__table-row {
    display: flex;
    border: 0.1rem #e3e3e3;
    border-style: solid solid none;
  }
}
.c-form__table-heading {
  display: block;
  padding-top: 0.5625em;
  padding-bottom: 0.5625em;
  padding-left: 5rem;
  padding-right: 5rem;
  border: 0.1rem #e3e3e3;
  border-style: solid none;
  background-color: #f4f4f4;
}
@media screen and (min-width: 768px) {
  .c-form__table-heading {
    flex-shrink: 0;
    width: 33.3333333333%;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    padding-left: 1em;
    padding-right: 1em;
    border-style: none solid none none;
  }
}
.c-form__table-heading > .c-badge {
  margin-left: 1.3333333333em;
}
.c-form__table-body {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media screen and (min-width: 768px) {
  .c-form__table-body {
    flex-grow: 1;
    min-height: 7.2rem;
    padding-top: 0.875em;
    padding-bottom: 0.875em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.c-form__footer {
  margin-top: 3em;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media screen and (min-width: 768px) {
  .c-form__footer {
    margin-top: 1.875em;
    padding-left: 0;
    padding-right: 0;
  }
}
.c-form__footer-item + .c-form__footer-item {
  margin-top: 1.875em;
}
.c-form__footer-item.-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-form__terms {
  border: solid 0.1rem #e3e3e3;
}
.c-form__terms-inner {
  padding-top: 0.9166666667em;
  padding-bottom: 0.9166666667em;
  padding-left: 1.4166666667em;
  padding-right: 1.4166666667em;
  font-size: 1.2rem;
  line-height: 1.5;
}

.c-select:not(.-rich) {
  position: relative;
  display: inline-block;
}
.c-select:not(.-rich) select {
  -webkit-appearance: none;
          appearance: none;
}
.c-select:not(.-rich) select::-ms-expand {
  display: none;
}
.c-select:not(.-rich) .c-select__label {
  padding-top: 0.5625em;
  padding-bottom: 0.5625em;
  padding-left: 0.9375em;
  padding-right: 2.4375em;
  border: solid 0.1rem #DCDCDC;
  border-radius: 0.25em;
  background-color: #fff;
  color: #222222;
  line-height: 1.5;
  vertical-align: bottom;
}
.c-select:not(.-rich) .c-select__label:focus {
  border-color: #DCDCDC;
}
.c-select:not(.-rich) .c-select__label:focus-visible {
  border-color: #DCDCDC;
  outline: none;
  box-shadow: none;
}
.c-select:not(.-rich) .c-select__label:disabled {
  border-color: #DCDCDC;
  background-color: #DCDCDC;
  color: #000;
  opacity: 1;
  cursor: not-allowed;
}
.c-select:not(.-rich) .c-select__label:disabled + .c-select__icon::after {
  color: #000;
}
.c-select:not(.-rich) .c-select__icon {
  position: absolute;
  top: 50%;
  right: 0.75em;
  bottom: 0;
  transform: translateY(-10%);
  margin-top: auto;
  margin-bottom: auto;
}
.c-select:not(.-rich) .c-select__icon:after {
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 1em;
  border-right: 3.5px solid transparent;
  border-left: 3.5px solid transparent;
  border-top: 4px solid #000;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 1.25em;
  transform: translateX(50%);
  pointer-events: none;
}
.c-select:not(.-rich).-validate .c-select__label:invalid {
  border-color: red;
}

.c-select.-rich {
  position: relative;
  font-size: 1.23rem;
  line-height: 1.125;
  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
}
.c-select.-rich .c-select__btn {
  font-size: inherit;
  position: relative;
  padding: 0.45rem 2.3rem 0.35rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-appearance: none;
          appearance: none;
  background: #fff;
  color: inherit;
  line-height: inherit;
  min-height: 3.2rem;
  min-width: 6rem;
  border: 1pt solid #ccc;
}
.c-select.-rich .c-select__btn:hover {
  cursor: pointer;
}
.c-select.-rich .c-select__text {
  display: inline-block;
  font-size: inherit;
}
.c-select.-rich .c-select__icon {
  position: absolute;
  right: 0.7rem;
  display: block;
  border-top: 0.4rem solid #000;
  border-right: 0.35rem solid transparent;
  border-left: 0.35rem solid transparent;
  transform: translateY(-30%);
  top: 50%;
  transition: 0.2s transform cubic-bezier(0.8, 0, 0.17, 1);
}
.c-select.-rich.is_active .c-select__btn .c-select__icon {
  transform: translateY(-50%) rotate(180deg);
}
.c-select.-rich .c-select__menu {
  position: absolute;
  display: none;
  z-index: 99;
  top: calc(100% + 1rem);
  width: 100%;
  background: #fff;
  border: 1pt solid #ccc;
}
.c-select.-rich .c-select__menu-item,
.c-select.-rich .c-select__menu li {
  position: relative;
  white-space: nowrap;
  height: 3.4rem;
  padding: 1rem 0.9rem 0.8rem;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
  transition: all 0.25s ease 0s;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.c-select.-rich .c-select__menu-item + .c-select__menu-item, .c-select.-rich .c-select__menu-item + li,
.c-select.-rich .c-select__menu li + .c-select__menu-item,
.c-select.-rich .c-select__menu li + li {
  border-top: 1pt solid #ccc;
}
.c-select.-rich .c-select__menu-item:after,
.c-select.-rich .c-select__menu li:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  background: transparent;
  border-radius: 50%;
}
.c-select.-rich .c-select__menu-item.-current:after, .c-select.-rich .c-select__menu-item.current:after,
.c-select.-rich .c-select__menu li.-current:after,
.c-select.-rich .c-select__menu li.current:after {
  background: #1F3183;
}
.c-select.-rich .c-select__menu-item a:before,
.c-select.-rich .c-select__menu li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.c-select.-rich .c-select__menu-item span {
  display: inline-block;
}

.c-lists ul > li > ol,
.c-lists ol > li > ul {
  margin-left: -0.5em;
}
.c-lists.-disc {
  padding-left: 1em;
}
.c-lists.-disc > li {
  position: relative;
}
.c-lists.-disc > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5lh;
  left: -0.75em;
  transform: translateY(-50%);
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  background: #000;
}
.c-lists.-order {
  list-style-type: decimal;
  padding-left: 1em;
}
.c-lists.-note, .c-lists.-order-note {
  padding-left: 1.25em;
  list-style-type: none;
}
.c-lists.-note > li, .c-lists.-order-note > li {
  position: relative;
}
.c-lists.-note > li:before, .c-lists.-order-note > li:before {
  content: "※";
  display: block;
  position: absolute;
  top: 0.5lh;
  left: -1.25em;
  width: auto;
  height: auto;
  border-radius: initial;
  background: transparent;
  transform: translateY(-50%);
}
.c-lists.-order-note {
  padding-left: 2.5em;
  counter-reset: item;
}
.c-lists.-order-note > li:before {
  content: "※" counters(item, "");
  counter-increment: item;
  left: -2.5em;
}

.c-post {
  position: relative;
}
.c-post__head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-decoration: none;
  align-items: flex-start;
  padding-bottom: 5.1rem;
  margin-bottom: 5rem;
}
.c-post__head:after {
  content: "";
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: auto;
}
@media screen and (min-width: 768px) {
  .c-post__head:after {
    right: 0;
    left: 0;
  }
}
@media not screen and (min-width: 768px) {
  .c-post__head {
    padding-bottom: 3.1rem;
    margin-bottom: 3rem;
  }
}
.c-post__series {
  font-size: 1.2rem;
  line-height: normal;
  display: flex;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .c-post__series {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.c-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  padding-left: 2.1666666667em;
  margin-left: 2.0833333333em;
  border-left: 1pt solid #dcdcdc;
}
@media not screen and (min-width: 768px) {
  .c-post__series {
    margin-bottom: 1rem;
  }
  .c-post__tags {
    padding-left: 1.3333333333em;
    margin-left: 1.25em;
  }
}
.c-post__time {
  color: #888888;
  font-size: 1.4rem;
  line-height: 1.25; /* 125% */
}
.c-post__cat {
  color: #888888;
  font-size: 1.2rem;
  line-height: 1.25; /* 125% */
  padding: 0.19em 0.5em 0.228em;
  text-decoration: none;
}
.c-post__title {
  font-size: 2.8rem;
  line-height: 1.7;
}
.c-post__figure img {
  width: 100%;
  border: 1pt solid #D5D5D5;
}
.c-post__figure figcaption {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.c-post__figure {
  margin-bottom: 3rem;
}
@media not screen and (min-width: 768px) {
  .c-post__title {
    font-size: 2rem;
  }
}

.c-post.-editor .c-post__body {
  --leading-trim: calc((1em - 1lh) / 2);
  --editor-coefficient: 10px;
  color: #000000;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  background-color: #fff;
  overflow-wrap: break-word;
}
@media not screen and (min-width: 768px) {
  .c-post.-editor .c-post__body {
    --editor-coefficient: 2.666666vw;
  }
}
.c-post.-editor .c-post__body *,
.c-post.-editor .c-post__body *:before,
.c-post.-editor .c-post__body *:after {
  box-sizing: border-box;
}
.c-post.-editor .c-post__body audio,
.c-post.-editor .c-post__body canvas,
.c-post.-editor .c-post__body iframe,
.c-post.-editor .c-post__body img,
.c-post.-editor .c-post__body svg,
.c-post.-editor .c-post__body video,
.c-post.-editor .c-post__body embed,
.c-post.-editor .c-post__body object {
  max-width: 100%;
  vertical-align: bottom;
}
.c-post.-editor .c-post__body img {
  width: auto;
  height: auto;
}
.c-post.-editor .c-post__body strong {
  font-weight: 500;
}
.c-post.-editor .c-post__body p, .c-post.-editor .c-post__body ul, .c-post.-editor .c-post__body ol, .c-post.-editor .c-post__body dl {
  font-size: calc(1.6 * var(--editor-coefficient));
  line-height: 1.7;
}
.c-post.-editor .c-post__body p:not(:first-child), .c-post.-editor .c-post__body ul:not(:first-child), .c-post.-editor .c-post__body ol:not(:first-child), .c-post.-editor .c-post__body dl:not(:first-child) {
  margin-top: calc(3 * var(--editor-coefficient));
}
.c-post.-editor .c-post__body p:not(:last-child), .c-post.-editor .c-post__body ul:not(:last-child), .c-post.-editor .c-post__body ol:not(:last-child), .c-post.-editor .c-post__body dl:not(:last-child) {
  margin-bottom: calc(3 * var(--editor-coefficient));
}
.c-post.-editor .c-post__body p + p:not(:first-child) {
  margin-top: calc(-1.5 * var(--editor-coefficient));
}
.c-post.-editor .c-post__body h1, .c-post.-editor .c-post__body h2, .c-post.-editor .c-post__body h3 {
  font-size: calc(2.8 * var(--editor-coefficient));
  font-weight: 500;
  line-height: 1.7;
  display: block;
  width: fit-content;
}
@media not screen and (min-width: 768px) {
  .c-post.-editor .c-post__body h1__title, .c-post.-editor .c-post__body h2__title, .c-post.-editor .c-post__body h3__title {
    font-size: calc(2 * var(--editor-coefficient));
  }
}
.c-post.-editor .c-post__body h3 {
  color: #9e8850;
}
.c-post.-editor .c-post__body h3:not(:first-child) {
  margin-top: calc(5 * var(--editor-coefficient));
}
.c-post.-editor .c-post__body h3:not(:last-child) {
  margin-bottom: calc(5 * var(--editor-coefficient));
}
.c-post.-editor .c-post__body h4, .c-post.-editor .c-post__body h5 {
  position: relative;
  display: inline-block;
}
.c-post.-editor .c-post__body h4 {
  font-size: calc(1.8 * var(--editor-coefficient));
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1pt solid #000;
  padding: 0 0 calc(0.85 * var(--editor-coefficient)) calc(2.4 * var(--editor-coefficient));
  display: block;
  width: fit-content;
  margin-top: var(--leading-trim);
}
.c-post.-editor .c-post__body h4:not(:last-child) {
  margin-bottom: calc(2 * var(--editor-coefficient));
}
.c-post.-editor .c-post__body h4:before {
  content: "";
  display: block;
  width: calc(1 * var(--editor-coefficient));
  height: calc(1 * var(--editor-coefficient));
  background: #9e8850;
  position: absolute;
  left: calc(0.3 * var(--editor-coefficient));
  top: calc(1 * var(--editor-coefficient));
  transform: rotate(45deg);
}
.c-post.-editor .c-post__body h5 {
  font-size: calc(1.8 * var(--editor-coefficient));
  line-height: 1.7;
  font-weight: 500;
  display: block;
  width: fit-content;
  color: #9e8850;
}
.c-post.-editor .c-post__body h5:not(:first-child) {
  margin-top: calc(2 * var(--editor-coefficient));
}
.c-post.-editor .c-post__body h5:not(:last-child) {
  margin-bottom: calc(1 * var(--editor-coefficient));
}
.c-post.-editor .c-post__body h5:not(:last-child) + * {
  margin-top: 0;
}
.c-post.-editor .c-post__body ul, .c-post.-editor .c-post__body ol {
  padding-left: 1.5em;
}
.c-post.-editor .c-post__body ul {
  list-style-type: disc;
}
.c-post.-editor .c-post__body ol {
  list-style-type: auto;
}
.c-post.-editor .c-post__body a {
  color: #9e8850;
}
.c-post.-editor .c-post__body a[href] {
  cursor: pointer;
}
.c-post.-editor .c-post__body figure :where(figcaption) {
  font-size: calc(1.4 * var(--editor-coefficient));
  margin: calc(1 * var(--editor-coefficient)) 0 0 0;
}
.c-post.-editor .c-post__body .wp-block-embed {
  aspect-ratio: 16/9;
}
.c-post.-editor .c-post__body .wp-block-embed__wrapper,
.c-post.-editor .c-post__body .wp-block-embed iframe {
  width: 100%;
  height: 100%;
}

.c-post-lists {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 6.1rem 0;
  padding-bottom: 3.1rem;
}
@media not screen and (min-width: 768px) {
  .c-post-lists {
    padding-bottom: 2.1rem;
  }
}
@media screen and (min-width: 768px) {
  .c-post-lists.-has-top-line {
    padding-top: 3.1rem;
  }
  .c-post-lists.-has-top-line:before {
    content: "";
    display: block;
    transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
    width: 100%;
    height: 1pt;
    background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
    position: absolute;
    top: 0;
  }
}

.c-post-list {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  align-items: flex-start;
  gap: 2rem;
}
.c-post-list:after {
  content: "";
  display: block;
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
  bottom: -3.1rem;
}
@media not screen and (min-width: 768px) {
  .c-post-list {
    flex-direction: column;
    gap: 2.5rem;
  }
  .c-post-list:after {
    bottom: -2.1rem;
  }
}
.c-post-list a {
  text-decoration: none;
}
.c-post-list a[href] .c-post-list__title,
.c-post-list a[href].c-post-list__title {
  text-decoration: underline;
}
.c-post-list a[href]:hover .c-post-list__title,
.c-post-list a[href].c-post-list__title:hover {
  text-decoration: none;
}
.c-post-list a .c-post-list__text {
  text-decoration: none;
}
.c-post-list .c-post-list__head {
  border: 1pt solid #D5D5D5;
}
.c-post-list .c-post-list__body {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
  text-decoration: none;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .c-post-list .c-post-list__body {
    gap: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-post-list .c-post-list__head {
    width: calc((100% - 2rem) / 5.75 * 2.56);
  }
  .c-post-list .c-post-list__head + .c-post-list__body {
    width: calc((100% - 2rem) / 5.75 * 3.19);
  }
}
.c-post-list__series {
  font-size: 1.2rem;
  line-height: normal;
  display: flex;
}
@media screen and (min-width: 768px) {
  .c-post-list__series {
    margin-bottom: 1.5rem;
  }
}
.c-post-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  padding-left: 1.3333333333em;
  margin-left: 1.25em;
  border-left: 1pt solid #dcdcdc;
}
.c-post-list__time {
  color: #888888;
  font-size: 1.4rem;
  line-height: 1.25; /* 125% */
}
.c-post-list__cat {
  color: #888888;
  font-size: 1.2rem;
  line-height: 1.25; /* 125% */
  padding: 0.209em 0.5em;
  text-decoration: none;
}
.c-post-list__title {
  text-decoration: underline;
}
.c-post-list__text {
  font-size: 1.4rem;
  margin-top: 1rem;
  text-decoration: none;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .c-post-list__text {
    line-height: 2;
  }
}
.c-post-list__link {
  margin-top: 3.45rem;
}
@media not screen and (min-width: 768px) {
  .c-post-list__link {
    display: none !important;
  }
}

.c-post-list {
  gap: 2rem;
}

.c-post-list__series {
  margin-bottom: 0;
}

.c-post-list__body {
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-post-list__body {
    gap: 1.5rem;
  }
}

.c-post-list__title {
  font-weight: 500;
}

.c-card {
  border-top: 1pt solid #000000;
  border-bottom: 1pt solid #000000;
}
.c-card:not(:has(.c-card__article)) {
  display: none;
}
.c-card + .c-card {
  border-top: none;
}
.c-card + .c-card__adjacent .c-card, .c-card + .c-card__adjacent + .c-card {
  border-top: none;
}
.c-card__adjacent + .c-card {
  border-top: none;
}
.c-card__text-area {
  padding: 2rem 1.7rem;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .c-card__text-area {
    border-bottom: 1pt solid #000000;
    padding: 4.1rem 2rem 4rem;
  }
}
.c-card__heading {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 2.125;
}
@media screen and (min-width: 1080px) {
  .c-card__heading {
    font-size: 2rem;
    line-height: 1.7;
  }
}
.c-card__posts {
  max-width: 144rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .c-card__posts {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
  .c-card__posts {
    border-left: 1pt solid #000000;
    border-right: 1pt solid #000000;
  }
}
.c-card__post {
  flex: 0 0 auto;
  padding: 2.4rem 1.7rem;
  border-top: 1pt solid #000000;
}
@media screen and (min-width: 1080px) {
  .c-card__post {
    padding: 4rem 4rem 5.7rem;
    border-top: none;
  }
}
@media screen and (min-width: 1080px) {
  .c-card__post {
    width: 33.3333333333%;
    padding: 3.9rem;
  }
  .c-card__post:nth-of-type(3n + 2) {
    border-right: 1pt solid #000000;
  }
  .c-card__post:nth-of-type(3n + 1) {
    border-right: 1pt solid #000000;
    position: relative;
  }
  .c-card__post:nth-of-type(3n + 1)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 1pt;
    background-color: #000000;
  }
  .c-card__post:first-child::before {
    content: none;
  }
}
.c-card__post-link {
  display: block;
  position: relative;
  text-decoration: none;
}
.c-card__post-main {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-direction: row;
}
@media screen and (min-width: 1080px) {
  .c-card__post-main {
    display: inline;
  }
}
.c-card__post-img-sp {
  width: 15.4rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1080px) {
  .c-card__post-img-sp {
    display: none;
  }
}
.c-card__post-img-pc {
  display: none;
}
@media screen and (min-width: 1080px) {
  .c-card__post-img-pc {
    display: block;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 800/708;
  }
}
@media screen and (min-width: 1080px) {
  .c-card__post-text-area {
    padding: 2rem;
    position: absolute;
    bottom: 0;
  }
}
.c-card__post-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1080px) {
  .c-card__post-cats {
    gap: 1rem;
    margin-bottom: 1.1rem;
  }
}
.c-card__post-cat {
  display: inline-flex;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  background-color: #1F3183;
  padding: 0.7rem 0.5rem;
}
@media screen and (min-width: 1080px) {
  .c-card__post-cat {
    gap: 0.8rem;
    font-size: 1.12rem;
    font-weight: 500;
    padding: 0.8rem;
  }
}
.c-card__post-cat.-new {
  background-color: #dcdcdc;
}
.c-card__post-heading {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1080px) {
  .c-card__post-heading {
    display: inline;
    background: linear-gradient(transparent 0%, #ffd9d7 0%);
    background: linear-gradient(transparent 0%, transparent 10%, #fff 10%, #fff 90%, transparent 90%, transparent 100%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0.5rem;
    line-height: 2;
  }
}
.c-card__post-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.3rem;
  margin-top: 1.7rem;
}
@media screen and (min-width: 1080px) {
  .c-card__post-footer {
    gap: 2rem;
    margin-top: 2rem;
  }
}
.c-card__post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}
@media screen and (min-width: 1080px) {
  .c-card__post-tags {
    gap: 0.5rem 1rem;
  }
}
.c-card__post-tag {
  color: #888888;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 1080px) {
  .c-card__post-tag {
    font-size: 1.12rem;
  }
}
.c-card__post-buttons {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
.c-card__post-svg {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
.c-card__post-svg.-active {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.c-card__post.-favorite-active .c-card__article-svg {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.c-card__post.-favorite-active .c-card__article-svg.-active {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms, visibility 300ms;
}
.c-card.-border-top-none .c-card__article:first-child {
  border-top: none;
}

.c-heading:not(.-is-3) {
  color: #1F3183;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, #37a5de 0%, #2d77be 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-image 300ms;
  text-transform: uppercase;
  margin-top: 4.3rem;
  margin-bottom: 8rem;
}

.c-heading.-is-3 {
  position: relative;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
  border-bottom: 2px solid #004da1;
  padding: 1.4rem 0 1.4rem 2.5rem;
}
.c-heading.-is-3:after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #004da1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: center;
}
.c-heading.-is-3.-theme-white {
  color: #fff;
  border-bottom-color: #fff;
}
.c-heading.-is-3.-theme-white:after {
  background: #fff;
}

.c-text-field {
  --input-border-color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.015em;
  background-color: #fff;
  border: solid 1pt var(--input-border-color);
  border-radius: 4.6rem;
  padding: 1rem 2.8rem;
  -webkit-appearance: none;
}
.c-text-field[type=number] {
  -moz-appearance: textfield;
}
.c-text-field[type=number]::-webkit-outer-spin-button, .c-text-field[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.c-text-field::placeholder {
  color: #cfcfcf;
}
.c-text-field:focus {
  border-color: #1F3183;
  box-shadow: none;
  outline-color: #1F3183;
  outline-offset: -0.1rem;
  outline-width: 0.1rem;
}
.c-text-field:focus-visible {
  border-color: #1F3183;
  box-shadow: none;
  outline-color: #1F3183;
  outline-offset: -0.1rem;
  outline-width: 0.1rem;
}

.c-checkbox {
  --checkbox-color: #000;
  --checkbox-background-color: #fff;
  --checkbox-border-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--checkbox-color);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  background-color: var(--checkbox-background-color);
  border: 1pt solid var(--checkbox-border-color);
  border-radius: 4rem;
  padding: 1.2rem 1rem;
}
@media screen and (min-width: 768px) {
  .c-checkbox {
    padding: 0.8rem 1rem;
  }
}
.c-checkbox__input {
  display: none;
}
.c-checkbox:has(.c-checkbox__input:checked) {
  --checkbox-color: #fff;
  --checkbox-background-color: rgba(0, 0, 0, 0);
}

.c-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
  font-family: "Roboto", sans-serif;
}
@media not screen and (min-width: 768px) {
  .c-pagination {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .c-pagination {
    width: fit-content;
    margin-top: 8rem;
  }
}
.c-pagination > ul {
  display: flex;
  list-style: none;
  margin-right: 6rem;
  margin-left: 6rem;
}
@media not screen and (min-width: 768px) {
  .c-pagination > ul {
    margin-right: auto;
    margin-left: auto;
    max-width: calc(100% - 9rem);
  }
}
.c-pagination > ul > li > .page-numbers {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .c-pagination > ul > li > .page-numbers {
    width: 3rem;
  }
}
.c-pagination > ul > li > .page-numbers.prev, .c-pagination > ul > li > .page-numbers.next {
  position: absolute;
  top: 0;
}
.c-pagination > ul > li > .page-numbers.prev {
  left: 0;
  margin-right: 1.75rem;
}
.c-pagination > ul > li > .page-numbers.next {
  right: 0;
  margin-left: 1.75rem;
}
.c-pagination > ul > li > .page-numbers.current {
  color: #9e8850;
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}

.c-sns__inner {
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
.c-sns__item {
  flex-shrink: 0;
  transition: color 300ms;
}
@media (any-hover: hover) {
  .c-sns__item:hover {
    opacity: 1;
    color: #1F3183;
  }
}
.c-sns__item svg {
  height: 3rem;
  aspect-ratio: 1.2/1;
}

.c-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}
.c-branding img {
  max-width: 14.43rem;
}
.c-branding.-universal-sports-japan img {
  max-width: 13.648rem;
}
.c-branding .c-branding__logotext {
  padding: 0.63461em 0;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  white-space: nowrap;
  text-align: center;
}
.c-branding .c-branding__logotext.-lts-028 {
  letter-spacing: 0.28em;
}
.c-branding .c-branding__logotext.-lts-01 {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-branding img {
    transform: translateX(-2%);
  }
}

body.-lang-en .c-branding .c-branding__logotext {
  letter-spacing: 0;
}

.js-inview .c-text-style.-title {
  opacity: 0;
}
.js-inview.js-inview--done .c-text-style.-mask-bg-title {
  opacity: 1;
  animation: mask-title-anim 0.8s ease;
}
.js-inview.js-inview--done .c-text-style.-mask-bg-title:after, .js-inview.js-inview--done .c-text-style.-mask-bg-title > span:after {
  animation: mask-bg-title-anim 0.8s ease;
}

.c-section, .c-section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
}

.c-line {
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
}
.c-line.-divider {
  position: absolute;
  bottom: 0;
  right: 2rem;
  left: 2rem;
  width: auto;
}
@media screen and (min-width: 768px) {
  .c-line.-divider {
    right: 10rem;
    left: 10rem;
  }
}

.c-line.-vertical {
  transition: height 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 1pt;
  height: 100%;
  background: linear-gradient(to bottom, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
}

.c-banner {
  max-width: 600px;
  width: 100%;
  aspect-ratio: 600/80;
  min-height: 6rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 1rem 1.2rem 1.2rem;
  text-decoration: none;
}
.c-banner img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  transition: transform 300ms cubic-bezier(0.8, 0, 0.17, 1);
}
.c-banner.-hover:hover {
  cursor: pointer;
}
.c-banner.-hover:hover img {
  transform: scale(1.05);
}
.c-banner.-border:before, .c-banner.-border:after {
  content: "";
  display: block;
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
  z-index: 1;
  left: 0;
}
.c-banner.-border:before {
  top: 0;
}
.c-banner.-border:after {
  bottom: 0;
}
.c-banner.-border .c-banner__lines {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.c-banner.-border .c-banner__lines:before, .c-banner.-border .c-banner__lines:after {
  content: "";
  display: block;
  transition: height 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 1pt;
  height: 100%;
  background: linear-gradient(to bottom, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
}
.c-banner.-border .c-banner__lines:before {
  left: 0;
}
.c-banner.-border .c-banner__lines:after {
  right: 0;
}

.p-sw-Contact__section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/contact-bg.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center top;
  background-size: cover, cover;
}
.p-sw-Contact__section .c-section__inner {
  flex-direction: row;
  max-width: 124rem;
  gap: 5rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .p-sw-Contact__section .c-section__inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-sw-Contact__section .c-section__inner {
    flex-direction: column;
  }
}
.p-sw-Contact__section .c-section__head, .p-sw-Contact__section .c-section__body {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-sw-Contact__section .c-section__head {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.p-sw-Contact__section .c-section__body {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.p-sw-Contact__section .c-section__cta {
  display: flex;
  gap: 1px;
  position: relative;
}
.p-sw-Contact__section .c-section__cta-item {
  display: flex;
  flex-direction: column;
  transition: background-color 300ms cubic-bezier(0.8, 0, 0.17, 1);
  cursor: pointer;
  text-decoration: none;
}
.p-sw-Contact__section .c-section__cta-item-title {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
}
@media not screen and (min-width: 768px) {
  .p-sw-Contact__section .c-section__cta-item-title {
    font-size: 1.3rem;
  }
}
.p-sw-Contact__section .c-section__cta-item-text {
  font-size: 4rem;
  font-weight: 500;
}
@media not screen and (min-width: 768px) {
  .p-sw-Contact__section .c-section__cta-item-text {
    font-size: 2.8rem;
  }
}
.p-sw-Contact__section .c-section__cta-item.-tel {
  align-items: center;
  padding-right: 8rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Contact__section .c-section__cta-item.-tel {
    padding-right: 2.5rem;
  }
}
.p-sw-Contact__section .c-section__cta-item.-tel .c-section__cta-item-text {
  font-family: "Barlow Semi Condensed", system-ui;
}
.p-sw-Contact__section .c-section__cta-item.-form {
  position: relative;
  align-items: flex-start;
  padding-left: 8rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Contact__section .c-section__cta-item.-form {
    padding-left: 2.5rem;
  }
}
.p-sw-Contact__section .c-section__cta-item.-form .c-section__cta-item-text {
  font-family: "Roboto", sans-serif;
  -webkit-text-decoration: #000 underline 0.2rem;
          text-decoration: #000 underline 0.2rem;
  text-underline-offset: 0.4rem;
}
.p-sw-Contact__section .c-section__cta-item.-form .c-section__cta-item-icon {
  font-size: 2.05rem;
  margin-left: 1rem;
  margin-bottom: 0.125em;
}
.p-sw-Contact__section .c-section__cta-item.-form:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 1pt;
  background: #fff;
  top: 0;
  bottom: 0;
  left: -0.5px;
  transform: translateX(-50%);
}
.p-sw-Contact__section .c-section__cta-item:hover {
  opacity: 0.8;
}
.p-sw-Contact__section .c-section__cta-item.-form:hover .c-section__cta-item-icon:before {
  transform: translate(100%, 0);
}
.p-sw-Contact__section .c-section__cta-item.-form:hover .c-section__cta-item-icon:after {
  transform: translate(0, 0);
}
@media not screen and (min-width: 768px) {
  .p-sw-Contact__section {
    padding-top: 8rem;
    padding-bottom: 0;
    background-image: url(../img/contact-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .p-sw-Contact__section .c-section__inner {
    flex-direction: column;
    gap: 5rem;
    max-width: 100%;
    padding: 0;
  }
  .p-sw-Contact__section .c-section__head {
    padding: 0 2rem;
    width: 100%;
  }
  .p-sw-Contact__section .c-section__body {
    margin-left: 0;
  }
  .p-sw-Contact__section .c-section__body .c-container {
    width: 100%;
  }
  .p-sw-Contact__section .c-section__body .c-section__cta {
    flex-direction: column;
  }
  .p-sw-Contact__section .c-section__body .c-section__cta-item {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.5);
    padding: 4.425rem 2rem;
    gap: 1.2rem;
    align-items: center;
  }
  .p-sw-Contact__section .c-section__body .c-section__cta-item:hover {
    background: rgba(255, 255, 255, 0.8);
  }
  .p-sw-Contact__section .c-section__body .c-section__cta-item-text {
    line-height: 1.2;
  }
  .p-sw-Contact__section .c-section__body .c-section__cta-item-title {
    line-height: 2;
  }
  .p-sw-Contact__section .c-section__body .c-section__cta-item.-form:before {
    left: auto;
    bottom: auto;
    top: -0.5px;
    transform: translateY(-50%);
    height: 1pt;
    width: 100%;
  }
  .p-sw-Contact__section .c-section__body .c-section__cta-item.-form .c-section__cta-item-text {
    padding-left: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Contact__section.-rich {
    padding-top: 10rem;
    padding-bottom: 0;
    background-image: url(../img/contact-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .p-sw-Contact__section.-rich .c-section__inner {
    flex-direction: column;
    gap: 17.8rem;
    max-width: 100%;
    padding: 0;
  }
  .p-sw-Contact__section.-rich .c-section__head {
    padding: 0 5rem;
    max-width: 134rem;
    width: 100%;
    margin: 0 auto;
  }
  .p-sw-Contact__section.-rich .c-section__body {
    margin-left: 0;
  }
  .p-sw-Contact__section.-rich .c-section__body .c-container {
    width: 100%;
  }
  .p-sw-Contact__section.-rich .c-section__body .c-section__cta-item {
    opacity: 1 !important;
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    padding: 9.6rem 4rem;
    gap: 1.2rem;
    align-items: center;
  }
  .p-sw-Contact__section.-rich .c-section__body .c-section__cta-item:hover {
    background: rgba(255, 255, 255, 0.8);
  }
  .p-sw-Contact__section.-rich .c-section__body .c-section__cta-item-text {
    line-height: 1.2;
  }
  .p-sw-Contact__section.-rich .c-section__body .c-section__cta-item-title {
    line-height: 2;
  }
  .p-sw-Contact__section.-rich .c-section__body .c-section__cta-item.-form .c-section__cta-item-text {
    padding-left: 2.4rem;
  }
}

.p-sw-Entry__section .c-section__inner {
  flex-direction: row;
  max-width: 134rem;
  gap: 5rem;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-right: auto;
  margin-left: auto;
}
@media not screen and (min-width: 768px) {
  .p-sw-Entry__section .c-section__inner {
    flex-direction: column;
  }
  .p-sw-Entry__section .c-section__head {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Entry__section .c-section__head, .p-sw-Entry__section .c-section__body {
    flex: 1;
  }
  .p-sw-Entry__section .c-section__head {
    max-width: calc((100% - 5rem) / 119 * 29);
  }
  .p-sw-Entry__section .c-section__inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.p-sw-Main.-privacy .p-sw-Entry__section .c-section__body {
  max-width: 900px;
}
@media screen and (min-width: 768px) {
  .p-sw-Main.-privacy .p-sw-Entry__section .c-section__head {
    max-width: calc((100% - 5rem) / 119 * 12);
  }
}
.p-sw-Main.-privacy .c-post p, .p-sw-Main.-privacy .c-post ol, .p-sw-Main.-privacy .c-post ul, .p-sw-Main.-privacy .c-post dl {
  font-size: 1.4rem;
}
.p-sw-Main.-privacy .c-post__head {
  margin-bottom: 0;
}

.p-sw-Main.-contact .p-sw-Entry__section .c-badge {
  font-size: 1.2rem;
  line-height: 1.25;
  padding: 0.083333em 0.5em 0.33333em;
  text-decoration: none;
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .p-sw-Main.-contact .p-sw-Entry__section .c-section__head {
    max-width: calc((100% - 5rem) / 119 * 37.5);
  }
}
.p-sw-Main.-contact .p-sw-Entry__section .c-section__lead {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.33333;
  margin-top: 0.16666em;
}
.p-sw-Main.-contact .p-sw-Entry__section .c-section__text {
  font-size: 1.4rem;
}
.p-sw-Main.-contact .p-sw-Entry__section .c-section__text:not(:first-child) {
  margin-top: 1em;
}
.p-sw-Main.-contact .p-sw-Entry__section .c-section__text:not(:last-child) {
  margin-bottom: 3.125em;
}
.p-sw-Main.-contact .p-sw-Entry__section .c-section__text.-large {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 4.3em;
  margin-bottom: 1.5em;
  color: #9E8850;
}
@media screen and (min-width: 768px) {
  .p-sw-Main.-contact .p-sw-Entry__section .c-section__lead {
    font-size: 2.4rem;
  }
  .p-sw-Main.-contact .p-sw-Entry__section .c-section__text {
    font-size: 1.6rem;
  }
  .p-sw-Main.-contact .p-sw-Entry__section .c-section__text.-large {
    font-size: 2rem;
  }
  .p-sw-Main.-contact .p-sw-Entry__section .c-section__body .c-container {
    max-width: 560px;
    margin-left: 0;
  }
}

.p-sw-Footer__section {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Footer__section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Footer__section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.p-sw-Footer__section .c-section__head,
.p-sw-Footer__section .c-section__foot {
  display: flex;
  justify-content: space-between;
}
.p-sw-Footer__section .c-section__body {
  max-width: 134rem;
  margin: 6.8rem auto 5rem;
  display: flex;
  justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .p-sw-Footer__section .c-section__body {
    margin: 5rem auto;
    flex-direction: column;
    margin-right: 0;
    margin-left: 0;
    gap: 5rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-sw-Footer__section .c-section__foot {
    padding: 5rem 0 0;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.p-sw-Footer__sns {
  display: flex;
  justify-content: flex-end;
}
@media not screen and (min-width: 768px) {
  .p-sw-Footer__sns {
    width: 100%;
  }
}

.p-sw-Footer__left, .p-sw-Footer__right {
  display: flex;
  flex-direction: column;
}

.p-sw-Footer__left .c-container {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sw-Footer__left {
    padding-right: 1.6940298507%;
    width: 41.0447761194%;
  }
  .p-sw-Footer__left .c-container {
    max-width: 33rem;
  }
}

@media not screen and (min-width: 768px) {
  .p-sw-Footer__logotype {
    height: 8.22rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Footer__logotype {
    height: 4.2rem;
  }
}

.p-sw-Footer__info {
  padding: 1rem 0;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 5rem;
}
.p-sw-Footer__info:before, .p-sw-Footer__info:after {
  content: "";
  display: block;
  width: 5px;
  height: 1pt;
  background: #000;
  position: absolute;
  left: 0;
}
.p-sw-Footer__info:before {
  top: 0;
}
.p-sw-Footer__info:after {
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-sw-Footer__info {
    margin-top: 6.1rem;
    margin-bottom: 1.4rem;
  }
}

.p-sw-Footer__info-text.-tel {
  font-family: "Barlow Semi Condensed", system-ui;
  font-size: 3.6rem;
  display: inline-block;
  line-height: 1;
  margin-top: 0.25em;
  font-weight: 600;
}
.p-sw-Footer__info-text.-tel span {
  font-size: 2rem;
  transform: translateY(-5%);
  display: inline-block;
}

.p-sw-Footer__right {
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sw-Footer__right {
    width: 37.3134328358%;
  }
}

.p-sw-Footer__nav .c-nav__link,
.p-sw-Footer__bottom-nav .c-nav__link {
  text-decoration: none;
  opacity: 1 !important;
}
.p-sw-Footer__nav .c-nav__link[href],
.p-sw-Footer__bottom-nav .c-nav__link[href] {
  background-image: linear-gradient(#000, #000);
  background-size: 0 1pt;
  background-position: bottom 20% right;
  background-repeat: no-repeat;
  padding-bottom: 5px;
  transition: background-size 0.3s ease;
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
}
.p-sw-Footer__nav .c-nav__link[href]:hover,
.p-sw-Footer__bottom-nav .c-nav__link[href]:hover {
  background-size: 100% 1pt;
  background-position: bottom 20% left;
}

.p-sw-Footer__nav {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  gap: 2rem 2.4rem;
}
.p-sw-Footer__nav .c-nav__item {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sw-Footer__nav .c-nav__item {
    max-width: calc(43.75% - 1.2rem);
  }
  .p-sw-Footer__nav .c-nav__item:nth-of-type(2n) {
    max-width: calc(56.25% - 1.2rem);
  }
}

@media screen and (min-width: 768px) {
  body.-lang-en .p-sw-Footer__right {
    width: 50%;
  }
  body.-lang-en .p-sw-Footer__nav .c-nav__item {
    max-width: calc(60% - 1.2rem);
  }
  body.-lang-en .p-sw-Footer__nav .c-nav__item:nth-of-type(2n) {
    max-width: calc(40% - 1.2rem);
  }
}

@media screen and (min-width: 768px) {
  body.-lang-zh .p-sw-Footer__right {
    width: 37.3134328358%;
  }
  body.-lang-zh .p-sw-Footer__nav .c-nav__item {
    max-width: calc(50% - 1.2rem);
  }
  body.-lang-zh .p-sw-Footer__nav .c-nav__item:nth-of-type(2n) {
    max-width: calc(50% - 1.2rem);
  }
}

@media not screen and (min-width: 768px) {
  .p-sw-Footer__nav {
    flex-direction: column;
  }
}
.p-sw-Footer__nav .c-nav__link .c-icon {
  transform: translateY(20%);
  margin-left: 0.25em;
}
.p-sw-Footer__nav .c-nav__link:not([href]) > .c-icon {
  display: none;
}
.p-sw-Footer__nav .c-nav__link[href]:hover .c-icon:before {
  transform: translate(100%, -100%);
}
.p-sw-Footer__nav .c-nav__link[href]:hover .c-icon:after {
  transform: translate(0, 0);
}
.p-sw-Footer__nav.-has-line-top {
  position: relative;
  padding-top: 2.6rem;
}
.p-sw-Footer__nav.-has-line-top:before {
  content: "";
  display: block;
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-sw-Footer__nav.-has-line-top {
    padding-top: 3.1rem;
  }
}
.p-sw-Footer__nav.-large {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-sw-Footer__nav.-large .c-nav__item {
  max-width: 100%;
}

.p-sw-Footer__bottom-nav {
  display: flex;
  font-size: 1.2rem;
  line-height: 1.41666;
}
.p-sw-Footer__bottom-nav .c-nav__item:not(:first-child) {
  position: relative;
  padding-left: calc(0.5em + 1pt);
  margin-left: 0.5em;
}
.p-sw-Footer__bottom-nav .c-nav__item:not(:first-child):before {
  content: "";
  display: block;
  height: 80%;
  width: 1pt;
  background: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.p-sw-Footer__lede {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  padding-top: 1em;
  position: relative;
}
.p-sw-Footer__lede:before {
  content: "";
  display: block;
  width: 5px;
  height: 1pt;
  top: 0;
  left: 0;
  position: absolute;
  background: #000;
}

.p-sw-Footer__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  line-height: 1.41666;
}

.p-sw-FormProgress__lists {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  gap: 40px;
  font-size: 14px;
  position: relative;
}
.p-sw-FormProgress__lists:before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  width: 2px;
  content: "";
  display: block;
  transform: translate(-50%, 0);
  background: #EBE3D9;
}
.p-sw-FormProgress__lists .p-sw-FormProgress__list-item {
  padding-left: 40px;
  line-height: 1.25;
  padding-bottom: 2.5px;
  position: relative;
}
.p-sw-FormProgress__lists .p-sw-FormProgress__list-item:before, .p-sw-FormProgress__lists .p-sw-FormProgress__list-item:after {
  position: absolute;
  top: 10px;
  left: 10px;
  content: "";
  display: block;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.p-sw-FormProgress__lists .p-sw-FormProgress__list-item:before {
  width: 20px;
  height: 20px;
  border: 2px solid #EBE3D9;
  background: #fff;
}
@media not screen and (min-width: 768px) {
  .p-sw-FormProgress__lists {
    display: none;
  }
}

[data-contact=input] .p-sw-FormProgress__list-item.-input:after,
[data-contact=confirm] .p-sw-FormProgress__list-item.-confirm:after,
[data-contact=complete] .p-sw-FormProgress__list-item.-complete:after {
  width: 10px;
  height: 10px;
  background: #9E8850;
}

.p-sw-Form__preview-text:not(.-quiet) {
  border: 1pt solid #dcdcdc;
  padding: 1.075rem 2rem;
  min-height: 5rem;
}

.p-sw-Form__preview-text.-quiet {
  padding: 0.025em 0 0.0875em;
}

.p-sw-Form__btn-area {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
}
@media not screen and (min-width: 768px) {
  .p-sw-Form__btn-area {
    flex-direction: column;
  }
}
.p-sw-Form__btn-area > p {
  display: contents;
}

.p-sw-Form__button {
  width: 100%;
  background-color: transparent;
  opacity: 1 !important;
  overflow: hidden;
}
.p-sw-Form__button p {
  width: 100%;
}
.p-sw-Form__button br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-sw-Form__button {
    max-width: 24rem;
  }
}
.p-sw-Form__button .c-button__inner {
  width: 100%;
  justify-content: flex-end;
}
.p-sw-Form__button input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.4s;
  border-style: none;
  cursor: pointer;
  background: #dcdcdc;
  text-align: left;
  padding: 2rem;
}
.p-sw-Form__button input:disabled {
  opacity: 1 !important;
  cursor: not-allowed;
}
.p-sw-Form__button input:disabled ~ .c-button__icon:after {
  transform: translate(-100%, 0) !important;
}
.p-sw-Form__button input:disabled ~ .c-button__icon:before {
  transform: translate(0, 0) !important;
}
.p-sw-Form__button input:not(:disabled) {
  background: var(--button-color);
}
.p-sw-Form__button input:not(:disabled):hover {
  opacity: 0.8;
}
.p-sw-Form__button input:not(:disabled):hover ~ .c-button__icon:after {
  transform: translate(0, 0);
}
.p-sw-Form__button input:not(:disabled):hover ~ .c-button__icon:before {
  transform: translate(100%, 0);
}
.p-sw-Form__button .c-icon {
  width: 1.46428em;
  height: 1.46428em;
}
.p-sw-Form__button .c-icon.-icon-arrow-internal-link:before,
.p-sw-Form__button .c-icon.-icon-arrow-internal-link:after {
  background-image: url(../img/arrow-internal-link-white.svg);
}

.p-sw-Form__text-link input {
  background: transparent;
  border-style: none;
  text-decoration: underline;
}
.p-sw-Form__text-link:hover {
  cursor: pointer !important;
}
.p-sw-Form__text-link:hover input {
  cursor: inherit;
  text-decoration: none !important;
}

body[data-scrolled=true] .p-sw-Header {
  background: #fff;
}

body:not(.-top) .p-sw-Header {
  background: #fff;
}

.p-sw-Header {
  position: fixed;
  z-index: 1400;
  width: 100%;
  height: var(--header-height);
  padding-left: 1.5rem;
  transition: background-color 300ms cubic-bezier(0.8, 0, 0.17, 1);
}
@media screen and (min-width: 768px) {
  .p-sw-Header {
    height: 10rem;
    padding: 3rem 5rem;
  }
}
.p-sw-Header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.p-sw-Header__logo {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  margin-right: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__logo {
    width: 8.117rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Header__logo {
    height: 3.3rem;
    width: auto;
    margin-bottom: 0.5rem;
  }
}
.p-sw-Header__logo img {
  height: 100%;
  width: 100%;
}
.p-sw-Header:has(.p-sw-Header__menu[aria-hidden=true]) .p-sw-Header__logo-link {
  color: #fff;
  background-color: #1F3183;
  -webkit-text-fill-color: currentColor;
}

.p-sw-Header__logo-link {
  display: block;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-sw-Header__logo-link {
    flex-direction: row;
    align-items: flex-end;
  }
  .p-sw-Header__logo-link .c-branding__logotext {
    padding: 0;
  }
}
@media (any-hover: hover) {
  .p-sw-Header__logo-link:hover {
    opacity: 1;
  }
}
.p-sw-Header__buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  z-index: 1400;
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__buttons {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Header__buttons {
    display: none;
  }
}
.p-sw-Header__drawer-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--header-height);
  height: var(--header-height);
  margin-left: auto;
  text-align: center;
  background: #1F3183;
}
@media screen and (min-width: 768px) {
  .p-sw-Header__drawer-button {
    display: none;
  }
}
.p-sw-Header__drawer-button[aria-expanded=true] .p-sw-Header__drawer-button-line {
  background-color: transparent;
}
.p-sw-Header__drawer-button[aria-expanded=true] .p-sw-Header__drawer-button-line::before {
  transform: rotate(45deg);
}
.p-sw-Header__drawer-button[aria-expanded=true] .p-sw-Header__drawer-button-line::after {
  transform: rotate(-45deg);
}
.p-sw-Header__drawer-button-line {
  position: relative;
  width: 2.8rem;
  height: 0.1rem;
  transition: background-color 200ms ease;
}
.p-sw-Header__drawer-button-line::before, .p-sw-Header__drawer-button-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #fff;
  transition: transform 200ms ease;
}
.p-sw-Header__drawer-button-line::before {
  transform: translateY(-0.25rem);
}
.p-sw-Header__drawer-button-line::after {
  transform: translateY(0.25rem);
}
.p-sw-Header__drawer-button-text {
  position: absolute;
  visibility: hidden;
}
@keyframes menuFadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes menuFadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__menu {
    opacity: 0;
    display: none;
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    width: 100%;
    background: #1F3183;
    color: #fff;
    top: var(--header-height);
    left: 0;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    z-index: 1300;
    line-height: 1.15;
  }
  .p-sw-Header__menu[aria-hidden=false] {
    pointer-events: none;
    animation: menuFadeOut 0.4s ease;
  }
  .p-sw-Header__menu[aria-hidden=true] {
    opacity: 1;
    display: block;
    animation: menuFadeIn 0.4s ease;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Header__menu {
    margin-left: auto;
  }
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__menu-inner {
    padding: 6rem 0 2rem 0;
  }
}

.-open-drawer .p-sw-Header {
  background: #fff;
}

.p-sw-Header__menu-inner {
  display: flex;
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__menu-inner {
    flex-direction: column;
    min-height: 100%;
  }
}

@keyframes navFadeIn {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  50% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-sw-Header__nav {
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  gap: 2.5rem 3rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__nav {
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.6s, transform 0.6s;
    animation: navFadeIn 0.6s;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Header__nav {
    font-size: 1.6rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__nav .c-nav__item .c-nav__link:hover:after, .p-sw-Header__nav .c-nav__item.-current .c-nav__link:after {
    width: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Header__nav .c-nav__item .c-nav__link:hover:after, .p-sw-Header__nav .c-nav__item.-current .c-nav__link:after {
    width: 100%;
  }
}
.p-sw-Header__nav .c-nav__link {
  text-decoration: none;
  opacity: 1 !important;
  position: relative;
  display: flex;
  align-items: center;
}
.p-sw-Header__nav .c-nav__link:after {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  bottom: -1.5rem;
  height: 2px;
  background: #1F3183;
  transition: width 0.2s;
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__nav .c-nav__link:after {
    bottom: 50%;
    left: 0;
    transform: translateY(50%);
    height: 1pt;
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Header__nav .c-nav__link:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__nav .c-nav__link {
    padding-left: 6rem;
  }
}

@media not screen and (min-width: 768px) {
  .-open-drawer .p-sw-Header__nav {
    transition-delay: initial;
    transform: translateY(0);
    opacity: 1;
  }
}
.p-sw-Header__lang-select {
  margin-left: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__lang-select {
    margin-left: auto;
  }
}

.p-sw-Header__breadcrumb {
  font-size: 1.4rem;
  background: #f0f0f0;
  padding: 1.048rem 5rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Header__breadcrumb {
    display: none;
  }
}

.p-sw-Header__bottom {
  padding: 4rem 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-sw-Header__bottom {
    display: none;
  }
}

.p-sw-Header__sns {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.p-sw-Header__sns svg use path {
  fill: #fff;
}

.p-sw-Header__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  line-height: 1.41666;
}

.p-sw-Header__bottom-nav {
  display: flex;
  font-size: 1.2rem;
  line-height: 1.41666;
}
.p-sw-Header__bottom-nav .c-nav__item:not(:first-child) {
  position: relative;
  padding-left: calc(0.5em + 1pt);
  margin-left: 0.5em;
}
.p-sw-Header__bottom-nav .c-nav__item:not(:first-child):before {
  content: "";
  display: block;
  height: 80%;
  width: 1pt;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.p-sw-Main {
  position: relative;
}

.p-sw-Main__page-title {
  padding-top: 8rem;
}

.p-sw-Main__page-sub-title {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .p-sw-Main__page-title {
    padding-top: 15rem;
  }
}
.p-sw-Main__top-illust {
  display: flex;
  padding-top: 4.6rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-sw-Main__top-illust img, .p-sw-Main__top-illust svg {
  width: 100%;
}
.p-sw-Main__top-illust svg {
  max-width: 144rem;
}
.p-sw-Main__top-illust svg:first-child,
.p-sw-Main__top-illust svg:last-child {
  max-width: none;
  width: calc((100% - 144rem) / 2);
}
@media not screen and (min-width: 768px) {
  .p-sw-Main__top-illust {
    padding-top: 2.552rem;
  }
  .p-sw-Main__top-illust.-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Main__top-illust.-sp {
    display: none;
  }
}

.p-sw-Main {
  padding-bottom: 5.1rem;
}

.p-sw-Main__body {
  padding-top: 1rem;
  padding-bottom: 0.45rem;
}

.p-sw-Main__foot {
  margin-top: 2.25rem;
}

.p-sw-Main.-gap .p-sw-Main__body {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.p-sw-Main.-gap-wide .p-sw-Main__body {
  padding-top: 8rem;
  padding-bottom: 10rem;
}
.p-sw-Main.-gap-wide .p-sw-Main__foot {
  margin-top: 15rem;
}
@media screen and (min-width: 768px) {
  .p-sw-Main.-gap-md-wide .p-sw-Main__body {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
  .p-sw-Main.-gap-md-wide .p-sw-Main__foot {
    margin-top: 15rem;
  }
}
.p-sw-Main.-border-bottom {
  border-bottom: 1pt solid #c3c3c3;
}
.p-sw-Main.-theme-archive .p-sw-Main__archive-select .c-select__btn,
.p-sw-Main.-theme-archive .p-sw-Main__category-select .c-select__btn {
  padding-right: 4rem;
}
.p-sw-Main.-theme-archive .p-sw-Main__archive-select {
  position: absolute;
  right: 5rem;
  top: 5rem;
  font-size: 1.4rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Main.-theme-archive .p-sw-Main__archive-select {
    right: 2rem;
  }
}
.p-sw-Main.-theme-archive .p-sw-Main__category-select {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-sw-Main.-theme-archive .p-sw-Main__category-select {
    display: none;
  }
}
.p-sw-Main.-theme-archive .p-sw-Main__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 5.1rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Main.-theme-archive .p-sw-Main__container {
    padding-bottom: 3.1rem;
  }
}

.p-sw-Main__linkarea {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-sw-Main__linkarea {
    display: none;
  }
}

.p-sw-Main__linkarea-title {
  position: relative;
  padding-right: 3.1rem;
  padding-bottom: 0.4rem;
}
.p-sw-Main__linkarea-title:after {
  content: "";
  display: block;
  height: 100%;
  top: 0;
  right: 0;
  width: 1pt;
  background: #DCDCDC;
  position: absolute;
}

.p-sw-Main__page-top {
  display: none;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-sw-Main__page-top {
    display: flex;
  }
}
.p-sw-Main__page-top .p-sw-Main__page-top-link {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 600ms;
}
.p-sw-Main__page-top .p-sw-Main__page-top-link .c-text-link__icon {
  transform: translate(50%, -50%) rotate(-90deg) !important;
}
.p-sw-Main__page-top.-visible .p-sw-Main__page-top-link {
  pointer-events: auto;
  opacity: 1;
}
.p-sw-Main__page-top.-fixed .p-sw-Main__page-top-link {
  position: fixed;
  bottom: 40px;
}

.p-sw-Service__section {
  margin-top: 9.6rem;
  padding-bottom: 10.1rem;
}
.p-sw-Service__section .c-section__body {
  margin-top: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Service__section {
    margin-top: 8.078rem;
    padding-bottom: 9rem;
  }
  .p-sw-Service__section .c-section__body {
    margin-top: 8.8rem;
  }
  .p-sw-Service__section .c-section__body .c-container {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

.p-sw-Service__head__container {
  display: flex;
  align-items: flex-start;
}
.p-sw-Service__head__container .c-section__lede {
  font-size: 1.8rem;
  line-height: 2;
}
.p-sw-Service__head__container .c-section__linkarea {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 7.2rem;
}
@media not screen and (min-width: 768px) {
  .p-sw-Service__head__container {
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem 0;
  }
  .p-sw-Service__head__container .c-section__lede {
    order: 2;
  }
  .p-sw-Service__head__container .c-section__linkarea {
    padding-bottom: 0.85rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Service__head__container {
    padding-top: 0.4rem;
  }
  .p-sw-Service__head__container .c-section__title {
    max-width: 31.3rem;
    margin-top: -0.4rem;
    width: 100%;
  }
  .p-sw-Service__head__container .c-section__linkarea {
    width: 17rem;
    align-items: center;
  }
  .p-sw-Service__head__container .c-section__linkarea:before {
    content: "";
    display: block;
    transition: height 1000ms cubic-bezier(0.8, 0, 0.17, 1);
    width: 1pt;
    height: 100%;
    background: linear-gradient(to bottom, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-sw-Service__head__container .c-section__linkarea:before {
    top: 0;
    left: 0;
  }
}

.p-sw-Service__head__line {
  position: absolute;
  top: 0;
  left: 0;
}

.p-sw-Service__lists {
  --list-item-gap-x: 1pt;
  --list-item-gap-y: 5rem;
  --list-item-column: 4;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 0 var(--list-item-gap-x);
  gap: var(--list-item-gap-y) var(--list-item-gap-x);
  z-index: 3;
}
@media not screen and (min-width: 768px) {
  .p-sw-Service__lists {
    flex-wrap: wrap;
    --list-item-column: 1;
    --list-item-gap-y: 8.1rem;
  }
}

.p-sw-Service__list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - (var(--list-item-column) - 1) * 1pt) / var(--list-item-column));
}
@media not screen and (min-width: 768px) {
  .p-sw-Service__list-item {
    padding: 0.4rem 0 0.85rem;
  }
  .p-sw-Service__list-item:not(:last-child):after {
    content: "";
    display: block;
    transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
    width: 100%;
    height: 1pt;
    background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
    position: absolute;
    bottom: calc(-1 * var(--list-item-gap-y) / 2);
    width: 100%;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Service__list-item {
    padding: 3rem 0 3.8rem;
  }
  .p-sw-Service__list-item:nth-of-type(4n-3):before, .p-sw-Service__list-item:after {
    content: "";
    display: block;
    transition: height 1000ms cubic-bezier(0.8, 0, 0.17, 1);
    width: 1pt;
    height: 100%;
    background: linear-gradient(to bottom, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
    position: absolute;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
  }
  .p-sw-Service__list-item:nth-of-type(4n-3):before {
    left: 0;
    transform: translate(-100%, -50%);
  }
  .p-sw-Service__list-item:after {
    right: 0;
    transform: translate(100%, -50%);
  }
}

.p-sw-Service__list-line .-ja {
  font-weight: 500;
}

.p-sw-Service__list-figure {
  margin-top: 3rem;
}
.p-sw-Service__list-figure img {
  width: 66.6666666667%;
}
@media screen and (min-width: 768px) {
  .p-sw-Service__list-figure {
    margin-top: 3.8rem;
  }
}

.p-sw-Service__list-text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 3rem;
  margin-bottom: 4.85rem;
}
@media screen and (min-width: 768px) {
  .p-sw-Service__list-text {
    margin-bottom: 2.2rem;
    width: 79.8%;
  }
}

.p-sw-Service__list-link {
  margin-top: auto;
}

@media not screen and (min-width: 768px) {
  .js-inview .p-sw-Service__list-item:after {
    width: 0;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(1):after {
    transition-delay: 200ms;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(2):after {
    transition-delay: 400ms;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(3):after {
    transition-delay: 600ms;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(4):after {
    transition-delay: 800ms;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(5):after {
    transition-delay: 1200ms;
  }
}
@media screen and (min-width: 768px) {
  .js-inview .p-sw-Service__list-item:nth-of-type(4n-3):before, .js-inview .p-sw-Service__list-item:after {
    height: 0;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(1):after {
    transition-delay: 200ms;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(2):after {
    transition-delay: 400ms;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(3):after {
    transition-delay: 600ms;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(4):after {
    transition-delay: 800ms;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(5):before {
    transition-delay: 900ms;
  }
  .js-inview .p-sw-Service__list-item:nth-of-type(5):after {
    transition-delay: 1000ms;
  }
}
.js-inview .c-figure__inner {
  width: 0;
  height: 0;
  transition: width 800ms cubic-bezier(0.8, 0, 0.17, 1), height 800ms cubic-bezier(0.8, 0, 0.17, 1);
  transition-delay: 1000ms;
}

.js-inview--done .c-figure__inner {
  width: 100%;
  height: 100%;
}
@media not screen and (min-width: 768px) {
  .js-inview--done .p-sw-Service__list-item:after {
    width: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .js-inview--done .p-sw-Service__list-item:nth-of-type(4n-3):before,
  .js-inview--done .p-sw-Service__list-item:after {
    height: 100% !important;
  }
}
.js-inview--done .p-sw-Service__list-item > *:not(.p-sw-Service__list-line):not(.p-sw-Service__list-figure c-figure -service-symbol) {
  opacity: 1;
}

.p-sw-Service__section-line {
  position: absolute;
  bottom: 0;
  right: 10rem;
  left: 10rem;
  width: auto;
}

.p-sw-Service__section-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(32%);
  width: 15.05rem;
}
@media screen and (min-width: 768px) {
  .p-sw-Service__section-deco {
    transform: translateY(29%);
    width: 30.1rem;
  }
}

.p-sw__cookie {
  width: 100%;
  position: fixed;
  bottom: 0;
  background: rgba(153, 136, 80, 0.8);
  padding: 2rem;
  font-size: 1.4rem;
  align-items: center;
  z-index: 1500;
}
.p-sw__cookie .c-cookie__text {
  font-size: 1.4rem;
  line-height: 1.7;
}
.p-sw__cookie .c-cookie__button-group {
  gap: 2rem;
  width: 100%;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-sw__cookie .c-cookie__button-group {
    max-width: 26rem;
  }
}

.p-sw__cookie-button {
  font-size: 1.6rem;
  padding: 0.94rem 0.5rem;
  align-items: center;
  justify-content: center;
}
.p-sw__cookie-button.-color-white {
  color: #9e8850;
}
@media not screen and (min-width: 768px) {
  .p-sw__cookie-button {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-sw__cookie-button {
    max-width: 12rem;
    width: 100%;
  }
}

.p-article-Entries__row {
  --gutter-y: 10.1rem;
  --gutter-x: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-article-Entries__row {
    flex-direction: column;
    --gutter-y: 5.1rem;
  }
}

.p-article-Entries__post-lists {
  padding-bottom: 5.1rem;
}

@media screen and (min-width: 768px) {
  .p-article-Entries__post-list {
    gap: 4rem;
  }
  .p-article-Entries__post-list:after {
    bottom: -5.1rem;
  }
  .p-article-Entries__post-list .c-post-list__head {
    width: calc((100% - 4rem) / 11 * 4.16);
  }
}
@media screen and (min-width: 768px) {
  .p-article-Entries__post-list .c-post-list__body {
    gap: 2rem;
    padding-top: 3rem;
    width: calc((100% - 4rem) / 11 * 6.86);
  }
}
.p-article-Entries__post-list .c-post-list__link {
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}
.p-article-Entries__post-list .c-post-list__text {
  margin-top: 0;
}

.p-sw-Main.-career-top .p-sw-Main__head {
  --coefficient: 1;
  --head-height: 6.28;
  position: relative;
  background: url(../img/career-fv.jpg);
  background-size: cover;
  height: calc(var(--head-height) * var(--coefficient) * 10rem);
  overflow: hidden;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  overflow: hidden;
  width: 200%;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-lists {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  width: 100%;
  margin: 0;
  padding: 0;
  min-width: calc(332.931rem * var(--coefficient));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-lists:first-child {
  animation: loop 80s -40s linear infinite;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-lists + .p-sw-Main__top-bg-lists {
  animation: loop2 80s linear infinite;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg.-speed-slow .p-sw-Main__top-bg-lists:first-child {
  animation: loop 108s -54s linear infinite;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg.-speed-slow .p-sw-Main__top-bg-lists + .p-sw-Main__top-bg-lists {
  animation: loop2 108s linear infinite;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg.-speed-veryslow .p-sw-Main__top-bg-lists:first-child {
  animation: loop 130s -65s linear infinite;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg.-speed-veryslow .p-sw-Main__top-bg-lists + .p-sw-Main__top-bg-lists {
  animation: loop2 130s linear infinite;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg.-speed-fast .p-sw-Main__top-bg-lists:first-child {
  animation: loop 52s -26s linear infinite;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg.-speed-fast .p-sw-Main__top-bg-lists + .p-sw-Main__top-bg-lists {
  animation: loop2 52s linear infinite;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item {
  position: relative;
  display: inline-block;
  margin: 0;
  list-style: none;
  text-align: center;
  border-radius: calc(0.5rem * var(--coefficient));
  overflow: hidden;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num02 {
  margin-left: calc(29.6rem * var(--coefficient));
  width: calc(36rem * var(--coefficient));
  top: calc(52% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num04 {
  margin-left: calc(19rem * var(--coefficient));
  width: calc(17.1rem * var(--coefficient));
  top: calc(218% / var(--head-height));
  z-index: 1;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num07 {
  margin-left: calc(31.8rem * var(--coefficient));
  width: calc(33.872rem * var(--coefficient));
  top: calc(58% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num09 {
  margin-left: calc(5.328rem * var(--coefficient));
  width: calc(36rem * var(--coefficient));
  top: calc(356% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num13 {
  margin-left: calc(62.6rem * var(--coefficient));
  width: calc(17.1rem * var(--coefficient));
  top: calc(68% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num14 {
  margin-left: calc(-4.3rem * var(--coefficient));
  width: calc(33.872rem * var(--coefficient));
  top: calc(362% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num01 {
  width: calc(36rem * var(--coefficient));
  top: calc(356% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num03 {
  margin-left: calc(24rem * var(--coefficient));
  width: calc(46.273rem * var(--coefficient));
  top: calc(327% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num06 {
  margin-left: calc(9.427rem * var(--coefficient));
  width: calc(33.872rem * var(--coefficient));
  top: calc(362% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num11 {
  margin-left: calc(73.728rem * var(--coefficient));
  width: calc(46.273rem * var(--coefficient));
  top: calc(327% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num05 {
  margin-left: calc(98.4rem * var(--coefficient));
  width: calc(22.8rem * var(--coefficient));
  top: calc(40% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num08 {
  margin-left: calc(35.4rem * var(--coefficient));
  width: calc(21.3rem * var(--coefficient));
  top: calc(233% / var(--head-height));
  z-index: 1;
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num10 {
  margin-left: calc(13rem * var(--coefficient));
  width: calc(36rem * var(--coefficient));
  top: calc(52% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num15 {
  margin-left: calc(72.3rem * var(--coefficient));
  width: calc(33.872rem * var(--coefficient));
  top: calc(58% / var(--head-height));
}
.p-sw-Main.-career-top .p-sw-Main__head .p-sw-Main__top-bg-list-item.-num12 {
  margin-left: calc(237.7rem * var(--coefficient));
  width: calc(22.8rem * var(--coefficient));
  top: calc(40% / var(--head-height));
}
@media not screen and (min-width: 768px) {
  .p-sw-Main.-career-top .p-sw-Main__head {
    --coefficient: calc(3.2 / var(--head-height)) !important;
  }
  .p-sw-Main.-career-top .p-sw-Main .p-sw-Main__body {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.p-career-Intro__section {
  --section-padding-top: 7rem;
  padding-top: 0;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-career-Intro__section {
    --section-padding-top: 7rem;
    padding-bottom: 10rem;
    min-height: 104.28rem;
  }
}
.p-career-Intro__section .c-section__inner {
  flex-direction: row;
  max-width: 134rem;
  gap: 5rem;
  width: 100%;
  z-index: 1;
}
@media not screen and (min-width: 768px) {
  .p-career-Intro__section .c-section__inner {
    flex-direction: column;
  }
}
.p-career-Intro__section .c-section__head .c-container {
  display: flex;
  flex-direction: column;
}
.p-career-Intro__section .c-section__title {
  margin-bottom: 5.1rem;
}
.p-career-Intro__section .c-section__body .c-container {
  max-width: 56.2rem;
  margin-left: 0;
}
.p-career-Intro__section .c-section__lead {
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 2rem;
}
.p-career-Intro__section .c-section__text {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-career-Intro__section .c-section__head {
    flex: 407;
  }
  .p-career-Intro__section .c-section__body {
    flex: 783;
  }
  .p-career-Intro__section .c-section__lead {
    margin-bottom: 5rem;
  }
  .p-career-Intro__section .c-section__inner {
    padding-left: 5rem;
    padding-right: 5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-career-Intro__section-line {
  position: absolute;
  bottom: 0;
  right: 10rem;
  left: 10rem;
  width: auto;
}

.p-career-Intro__section-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(29%);
}

.p-career-Intro__list-link-group {
  margin-right: 3.6rem;
  margin-left: 2.3rem;
  display: flex;
  gap: 3rem 3.6rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-career-Intro__list-link-group {
    width: 34.4rem;
    margin-right: 0;
    gap: 1rem 2rem;
  }
}

.p-career-Intro__list-link-group + .p-career-Intro__list-link-group {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-career-Intro__list-link-group + .p-career-Intro__list-link-group {
    margin-top: 1rem;
  }
}

.p-career-Intro__list-link {
  width: calc((100% - 3.6rem) / 2);
  justify-content: flex-end;
  display: flex !important;
  line-height: 1.5;
  min-height: 4rem;
  align-items: center;
  text-align: right;
}
.p-career-Intro__list-link .c-text-link__inner {
  padding-bottom: 1px !important;
  margin-block: calc((1em - 1lh) / 2);
}
@media not screen and (min-width: 768px) {
  .p-career-Intro__list-link .c-text-link__icon {
    transform: translate(50%, -50%) rotate(90deg) !important;
  }
}
@media screen and (min-width: 768px) {
  .p-career-Intro__list-link {
    width: calc((100% - 2rem) / 2);
    min-width: 12rem;
  }
}

.p-career-Intro__img {
  --coefficient: 0.4;
}
@media not screen and (min-width: 768px) {
  .p-career-Intro__img {
    margin-top: 5rem;
  }
  .p-career-Intro__img.-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-career-Intro__img {
    position: absolute;
  }
  .p-career-Intro__img.-num01 {
    width: calc(33.3rem * var(--coefficient));
    right: calc(-5rem * var(--coefficient));
    transform: translateX(100%);
    top: calc(var(--section-padding-top) + 7.1rem);
  }
  .p-career-Intro__img.-num02 {
    max-width: calc(50.7rem * var(--coefficient));
    width: calc((100% - 15rem) / 1190 * 407 + 5rem);
    min-width: calc(5rem + 367px);
    left: 0;
    top: calc(var(--section-padding-top) + 41.6rem);
  }
  .p-career-Intro__img.-num03 {
    width: calc(27.1rem * var(--coefficient));
    right: 0;
    top: calc(var(--section-padding-top) + 60.3rem);
  }
  .p-career-Intro__img {
    --coefficient: 1;
  }
  .p-career-Intro__img.-sp {
    display: none;
  }
}

.p-career-Article__section .c-section__head {
  position: relative;
  padding: 0 2rem;
}
.p-career-Article__section .c-section__head .c-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 124rem;
  padding-right: 0;
  padding-left: 0;
  cursor: pointer;
}
.p-career-Article__section .c-section__head .c-container:before, .p-career-Article__section .c-section__head .c-container:after {
  content: "";
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: auto;
}
@media screen and (min-width: 768px) {
  .p-career-Article__section .c-section__head .c-container:before, .p-career-Article__section .c-section__head .c-container:after {
    right: 0;
    left: 0;
  }
}
.p-career-Article__section .c-section__head .c-container:before {
  top: 0;
  bottom: auto;
}
.p-career-Article__section .c-section__head .c-section__title {
  min-width: 21.5rem;
}
.p-career-Article__section .c-section__head .c-section__lead {
  font-size: 2rem;
}
@media not screen and (min-width: 768px) {
  .p-career-Article__section .c-section__head .c-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3.1rem;
  }
  .p-career-Article__section .c-section__head .c-section__lead {
    margin-left: 2.3rem;
  }
  .p-career-Article__section .c-section__head .c-section__title {
    width: calc(100% - 7rem);
  }
}
@media screen and (min-width: 768px) {
  .p-career-Article__section .c-section__head {
    padding: 0 5rem;
  }
  .p-career-Article__section .c-section__head .c-container {
    align-items: center;
    gap: 4.2rem;
    padding: 4.7rem 10rem 4.7rem 0;
  }
  .p-career-Article__section .c-section__head .c-section__title {
    min-width: 17.3rem;
  }
}
.p-career-Article__section .c-section__body,
.p-career-Article__section .c-section__foot {
  padding-right: 2rem;
  padding-left: 2rem;
}
.p-career-Article__section .c-section__foot {
  margin-top: 8rem;
}
.p-career-Article__section + .p-career-Article__section {
  margin-top: 10rem;
}
.p-career-Article__section + .p-career-Article__section .c-section__head .c-container {
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-career-Article__section .c-section__foot {
    margin-top: 3rem;
  }
  .p-career-Article__section + .p-career-Article__section {
    margin-top: 5rem;
  }
}
.p-career-Article__section .p-career-Article__toggle-icon {
  outline: 1px solid #DCDCDC;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 4.3rem;
  right: 0;
  transition: background-color 0.2s, outline-color 0.2s;
}
.p-career-Article__section .p-career-Article__toggle-icon:before, .p-career-Article__section .p-career-Article__toggle-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1px;
  background: #000000;
  transition: transform 0.25s ease 0s, background-color 0.2s;
}
.p-career-Article__section .p-career-Article__toggle-icon:before {
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .p-career-Article__section .p-career-Article__toggle-icon {
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
  }
}
.p-career-Article__section.is_active .p-career-Article__toggle-icon:before {
  transform: translate(-50%, -50%) rotate(0);
}

.p-career-Article__container:hover .p-career-Article__toggle-icon {
  outline-color: #1F3183;
  background: #1F3183;
}
.p-career-Article__container:hover .p-career-Article__toggle-icon:before, .p-career-Article__container:hover .p-career-Article__toggle-icon:after {
  background: #ffffff;
}

.p-career-Article__lists {
  display: flex;
  flex-direction: column;
}
@media not screen and (min-width: 768px) {
  .p-career-Article__lists {
    font-size: 1.6rem;
  }
}

.p-career-Article__list {
  display: flex;
  position: relative;
  padding: 2rem 0 2.1rem;
  gap: 1.5rem;
}
.p-career-Article__list:after {
  content: "";
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: auto;
}
@media screen and (min-width: 768px) {
  .p-career-Article__list:after {
    right: 0;
    left: 0;
  }
}
.p-career-Article__list .c-list__head {
  width: 5em;
}
.p-career-Article__list .c-list__body {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media not screen and (min-width: 768px) {
  .p-career-Article__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-career-Article__list {
    gap: 4rem;
    padding: 2.94rem 0 3.14rem;
  }
  .p-career-Article__list .c-list__head {
    width: 12.5rem;
  }
}

.p-career-Article__list-title {
  font-weight: 500;
}

.p-career-Article__row {
  --gutter-x: 4rem;
  --gutter-y: calc(1.6rem * 1.7);
  align-items: flex-start;
}
@media not screen and (min-width: 768px) {
  .p-career-Article__row {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-career-Article__line {
  margin: 2.72rem 0;
}

.p-career-Article__banner {
  margin-right: auto;
  margin-left: auto;
  outline: 2px solid #fff;
  outline-offset: -2px;
  transition: background-color 0.2s, color 0.2s;
}
.p-career-Article__banner:hover {
  background-color: #9e8850;
  color: #fff;
}

body.-about .p-sw-Main__head {
  position: relative;
  background: url(../img/about-fv.jpg);
  background-size: cover;
  height: 62.8rem;
  overflow: hidden;
}
body.-about .p-sw-Main__body {
  padding: 0 0 10rem;
}
@media not screen and (min-width: 768px) {
  body.-about .p-sw-Main__head {
    height: 32rem;
    background-image: url(../img/about-fv-sp.jpg);
  }
  body.-about .p-sw-Main__body {
    padding: 0 0 10rem;
  }
}
body.-about .c-section__title {
  position: relative;
  z-index: 3;
  background: #fff;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  body.-about .c-section__title {
    padding-right: 5rem;
  }
}
body.-about .c-section__title-page-name {
  font-size: 1.2rem;
  line-height: 1;
  color: #BDA27F;
  margin-bottom: 3rem;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  body.-about .c-section__title-page-name {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  body.-about .c-text-style.-h3-rich {
    --main-text-size: 3.6rem;
  }
  body.-about .c-text-style.-h3-rich .c-text-style__item.-ja {
    font-size: var(--main-text-size);
  }
}
body.-about .c-section.-horizen-border .c-section__head:before {
  content: "";
  display: block;
  width: calc(100% - 8rem);
  height: 1pt;
  background: #BDA27F;
  position: absolute;
  left: 8rem;
  top: 5.7rem;
}
@media screen and (min-width: 768px) {
  body.-about .c-section.-horizen-border .c-section__head:before {
    top: 6.2rem;
  }
}

.p-about-Intro__section {
  overflow: hidden;
  margin-top: -4.8rem;
}
@media screen and (min-width: 768px) {
  .p-about-Intro__section {
    margin-top: -23.8rem;
    padding-bottom: 7.5rem;
  }
}
.p-about-Intro__section .c-section__head,
.p-about-Intro__section .c-section__body {
  position: relative;
  width: 100%;
  padding-right: calc(50% - 62rem);
  padding-left: calc(50% - 62rem);
}
.p-about-Intro__section .c-section__head .c-container {
  position: relative;
  display: flex;
  width: 100%;
  align-items: flex-start;
}
@media not screen and (min-width: 768px) {
  .p-about-Intro__section .c-section__head {
    margin-bottom: 13.9rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-Intro__section .c-section__head {
    position: absolute;
  }
}
.p-about-Intro__section .c-section__head .c-section__figure {
  position: relative;
  margin-left: 0;
  flex: 1;
}
.p-about-Intro__section .c-section__head .c-section__figure-inner {
  background: #fff;
  z-index: 1;
  margin-left: auto;
}
.p-about-Intro__section .c-section__head .c-section__figure-inner:before {
  content: "";
  display: block;
  width: calc(100% - 10rem);
  height: 1pt;
  background: #BDA27F;
  position: absolute;
  left: 0;
  top: 13.4rem;
}
.p-about-Intro__section .c-section__head .c-section__figure-img {
  z-index: 2;
  position: relative;
}
.p-about-Intro__section .c-section__head .p-about-Intro__person-caption {
  margin-top: 2.85rem;
}
.p-about-Intro__section .c-section__head .p-about-Intro__person-caption .-business-position {
  font-size: 1.2rem;
  margin-bottom: 1.6rem;
}
.p-about-Intro__section .c-section__head .p-about-Intro__person-caption .-ja {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.p-about-Intro__section .c-section__head .p-about-Intro__person-caption .-en {
  font-size: 1.2rem;
}
@media not screen and (min-width: 768px) {
  .p-about-Intro__section .c-section__head .c-section__figure {
    width: calc((100% - 4rem) / 3.35 * 2);
    position: absolute;
    right: 2rem;
  }
  .p-about-Intro__section .c-section__head .p-about-Intro__person-caption {
    align-items: flex-end;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-Intro__section .c-section__head .c-section__figure {
    width: 100%;
  }
  .p-about-Intro__section .c-section__head .c-section__figure-inner,
  .p-about-Intro__section .c-section__head .p-about-Intro__person-caption {
    padding-left: 16.2513542795%;
    max-width: 600px;
    width: 65.0054171181%;
  }
  .p-about-Intro__section .c-section__head .c-section__figure-inner {
    padding-top: 5rem;
  }
  .p-about-Intro__section .c-section__head .p-about-Intro__person-caption {
    margin-left: auto;
  }
}
.p-about-Intro__section .c-section__title {
  background: transparent !important;
}
.p-about-Intro__section .c-section__body .c-section__text {
  font-size: 1.6rem;
  line-height: 2;
}
.p-about-Intro__section .c-section__body .c-container {
  width: 100%;
  padding: 0;
}
@media not screen and (min-width: 768px) {
  .p-about-Intro__section .c-section__title {
    padding-top: 9.8rem;
  }
  .p-about-Intro__section .c-section__body .c-section__text {
    font-size: 1.6rem;
    line-height: 2;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-Intro__section .c-section__title {
    margin-bottom: 5.1rem;
    padding-top: 7.2rem;
  }
  .p-about-Intro__section .c-section__body {
    margin-top: 31.7rem;
  }
  .p-about-Intro__section .c-section__body .c-container {
    position: relative;
    max-width: 46.7rem;
    width: 46.7%;
    margin-left: 7.3rem;
  }
}
.p-about-Intro__section .c-section__deco {
  position: absolute;
  display: block;
}
.p-about-Intro__section .c-section__deco img {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-about-Intro__section .c-section__deco.-num-1 {
    left: 0;
    bottom: -5rem;
    transform: translateY(100%);
    width: 63.8693333333%;
  }
  .p-about-Intro__section .c-section__deco.-num-2 {
    position: initial;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-Intro__section .c-section__deco.-num-1 {
    left: calc(50% + 229px);
    bottom: 39px;
    transform: translateY(100%);
  }
  .p-about-Intro__section .c-section__deco.-num-2 {
    left: calc(100% + 5rem);
    bottom: -4.7rem;
    width: 158.8865%;
    max-width: 74.2rem;
  }
}

@media not screen and (min-width: 768px) {
  body.-lang-en .p-about-Intro__section .c-section__head {
    margin-bottom: 17.5rem;
  }
}
@media not screen and (min-width: 768px) {
  body.-lang-en .p-about-Intro__section .c-section__deco.-num-1 {
    left: -4.5rem;
    bottom: -8.6rem;
  }
}
@media screen and (min-width: 768px) {
  body.-lang-en .p-about-Intro__section .c-section__deco.-num-1 {
    left: calc(50% + 280px);
    bottom: 27px;
  }
}

.p-about-Outline__section {
  margin-top: 5rem;
}
.p-about-Outline__section .c-section__head,
.p-about-Outline__section .c-section__body {
  position: relative;
  padding-right: calc(50% - 62rem);
  margin-left: auto;
  max-width: calc(50% + 62rem);
  width: 100%;
}
.p-about-Outline__section .c-section__head {
  margin-bottom: 2.6rem;
}
.p-about-Outline__section .c-section__head .c-container {
  position: relative;
  display: flex;
  width: 100%;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-about-Outline__section .c-section__head {
    margin-bottom: 8rem;
  }
}
.p-about-Outline__section .c-section__body .c-section__text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 3rem;
}
.p-about-Outline__section .c-section__body .c-container {
  width: 100%;
  display: flex;
  gap: 2.7rem;
}
@media not screen and (min-width: 768px) {
  .p-about-Outline__section .c-section__body .c-container {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-about-Outline__section .c-section__body .c-container {
    padding-left: 7.3rem;
  }
}
.p-about-Outline__section .c-section__text-group {
  width: 100%;
}
.p-about-Outline__section .c-section__dl {
  line-height: 1.5;
}
.p-about-Outline__section .c-section__dl dt {
  color: #BDA27F;
}
.p-about-Outline__section .c-section__dl dt + dd {
  margin-top: 0.6rem;
}
.p-about-Outline__section .c-section__dl dd + dt {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-about-Outline__section .c-section__dl {
    padding-top: 4.8rem;
  }
}
.p-about-Outline__section .c-section__figure {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1pt;
}
.p-about-Outline__section .c-section__figure > .c-section__figure-img:nth-of-type(1) {
  width: 100%;
}
.p-about-Outline__section .c-section__figure > .c-section__figure-img:nth-of-type(2), .p-about-Outline__section .c-section__figure > .c-section__figure-img:nth-of-type(3) {
  width: calc((100% - 1pt) / 2);
}
@media not screen and (min-width: 768px) {
  .p-about-Outline__section .c-section__body .c-container {
    flex-direction: column;
    gap: 5rem;
    padding: 0;
  }
  .p-about-Outline__section .c-section__body .c-section__text-group {
    margin-right: auto;
    margin-left: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-Outline__section .c-section__text-group {
    max-width: calc((100% - 27px) / 1090 * 515);
  }
  .p-about-Outline__section .c-section__figure {
    max-width: calc((100% - 2.7rem) / 1090 * 575);
  }
}

.p-about-Map__section {
  filter: sepia(30%) hue-rotate(2.4deg) saturate(79.4%);
}
.p-about-Map__section iframe {
  width: 100%;
  height: 40rem;
}
@media screen and (min-width: 768px) {
  .p-about-Map__section {
    margin-top: 10rem;
  }
  .p-about-Map__section iframe {
    height: 58rem;
  }
}

.p-about-Mission__section {
  position: relative;
  overflow: hidden;
}
.p-about-Mission__section .c-section__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 144rem;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-about-Mission__section .c-section__inner {
    padding-top: 10rem;
    min-height: 127rem;
    background: url(../img/about-mission-deco-main.svg) center top;
    background-size: cover;
  }
}
.p-about-Mission__section .c-section__head,
.p-about-Mission__section .c-section__body {
  width: 100%;
  max-width: 124rem;
  margin-right: auto;
  margin-left: auto;
}
.p-about-Mission__section .c-section__head .c-container,
.p-about-Mission__section .c-section__body .c-container {
  width: 100%;
  display: flex;
}
.p-about-Mission__section .c-section__head {
  margin-bottom: 5rem;
}
.p-about-Mission__section .c-section__head .c-container {
  align-items: flex-start;
  flex-direction: column;
}
.p-about-Mission__section .c-section__head .c-section__text {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-about-Mission__section .c-section__head {
    margin-bottom: 8.1rem;
  }
  .p-about-Mission__section .c-section__head .c-section__text {
    margin-left: 2.3rem;
  }
}
.p-about-Mission__section .c-section__body .c-section__text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 3rem;
}
.p-about-Mission__section .c-section__body .c-container {
  position: relative;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media not screen and (min-width: 768px) {
  .p-about-Mission__section .c-section__body .c-container {
    flex-direction: column;
    gap: 6.1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-Mission__section .c-section__body .c-container {
    padding-left: 7.3rem;
    max-width: 98.3rem;
    margin-right: 0;
  }
}
.p-about-Mission__section .p-about-Mission__deco-group {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 127rem;
}
.p-about-Mission__section .p-about-Mission__deco-group svg {
  max-width: 144rem;
  width: 100%;
  aspect-ratio: 144/127;
  max-height: 127rem;
}
.p-about-Mission__section .p-about-Mission__deco-group svg:first-child, .p-about-Mission__section .p-about-Mission__deco-group svg:last-child {
  max-width: none;
  width: calc((100% - 144rem) / 2);
  aspect-ratio: initial;
}
@media not screen and (min-width: 768px) {
  .p-about-Mission__section .p-about-Mission__deco-group {
    display: none;
  }
}
.p-about-Mission__section .p-about-Mission__panel {
  position: relative;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-about-Mission__section .p-about-Mission__panel + .p-about-Mission__panel:before {
    content: "";
    display: block;
    position: absolute;
    top: -3.1rem;
    width: 100%;
    height: 1pt;
    background: #BDA27F;
  }
}
@media screen and (min-width: 768px) {
  .p-about-Mission__section .p-about-Mission__panel {
    position: absolute;
    max-width: 33.3rem;
  }
  .p-about-Mission__section .p-about-Mission__panel.-mission {
    top: 5.8rem;
    left: 5rem;
  }
  .p-about-Mission__section .p-about-Mission__panel.-vision {
    top: 16.3rem;
    left: 55.8rem;
  }
  .p-about-Mission__section .p-about-Mission__panel.-value {
    top: 31.7rem;
    left: 5rem;
    max-width: 100%;
  }
}
.p-about-Mission__section .p-about-Mission__panel-title {
  font-size: 2.8rem;
  padding-left: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
  line-height: 1.2857142857;
  font-weight: 500;
}
.p-about-Mission__section .p-about-Mission__panel-title:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/icon-arrow-right.svg);
  background-size: contain;
  width: 1rem;
  height: 1.211rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-about-Mission__section .p-about-Mission__panel-lead {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 2rem;
}
.p-about-Mission__section .p-about-Mission__panel-text {
  margin-top: 1rem;
}
.p-about-Mission__section .p-about-Mission__lists {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-top: 3rem;
  gap: 3rem;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-about-Mission__section .p-about-Mission__lists {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-about-Mission__section .p-about-Mission__lists {
    margin-top: 5rem;
    flex-wrap: wrap;
    max-width: 82rem;
    gap: 4.7rem 20rem;
  }
  .p-about-Mission__section .p-about-Mission__lists:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 1pt;
    background: #BDA27F;
  }
}
.p-about-Mission__section .p-about-Mission__list-item {
  display: flex;
  flex-wrap: wrap;
  max-width: 31rem;
  width: 100%;
}
.p-about-Mission__section .p-about-Mission__list-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 1.8rem;
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.p-about-Mission__section .p-about-Mission__list-title span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  color: #1F3183;
  font-family: "Roboto", sans-serif;
  margin-bottom: 1.45rem;
  font-weight: 500;
}
.p-about-Mission__section .p-about-Mission__list-text {
  font-size: 1.4rem;
}

body.-lang-en .p-about-Mission__section .c-section__head {
  margin-bottom: 12.75rem;
}
@media screen and (min-width: 768px) {
  body.-lang-en .p-about-Mission__section .p-about-Mission__panel.-mission {
    top: 4.75rem;
  }
  body.-lang-en .p-about-Mission__section .p-about-Mission__panel.-vision {
    top: 16.75rem;
  }
  body.-lang-en .p-about-Mission__section .p-about-Mission__panel.-value {
    top: 31.7rem;
  }
}
body.-lang-en .p-about-Mission__section .p-about-Mission__panel:not(.-value) {
  max-width: 40rem;
}
body.-lang-en .p-about-Mission__section .p-about-Mission__panel-lead {
  font-size: 1.8rem;
  margin-top: 1.6rem;
}
body.-lang-en .p-about-Mission__section .c-section__text {
  font-size: 1.5rem;
}
body.-lang-en .p-about-Mission__section .p-about-Mission__list-title span {
  margin-bottom: 0;
}

.p-about-History__section {
  margin-top: 10rem;
}
@media screen and (min-width: 768px) {
  .p-about-History__section {
    margin-top: 12.5rem;
  }
}
.p-about-History__section .c-section__head,
.p-about-History__section .c-section__body {
  position: relative;
  padding-right: calc(50% - 62rem);
  margin-left: auto;
  max-width: calc(50% + 62rem);
  width: 100%;
}
.p-about-History__section .c-section__head {
  margin-bottom: 2.6rem;
}
.p-about-History__section .c-section__head .c-container {
  position: relative;
  display: flex;
  width: 100%;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-about-History__section .c-section__head {
    margin-bottom: 8rem;
  }
}
.p-about-History__section .c-section__body .c-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.p-about-History__timeline {
  width: 100%;
  position: relative;
  padding: 3rem 0 3rem 0.5rem;
}
.p-about-History__timeline:before {
  content: "";
  width: 1pt;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5rem;
  background-color: #BDA27F;
}
@media screen and (min-width: 768px) {
  .p-about-History__timeline {
    padding: 5rem 0 5rem;
  }
  .p-about-History__timeline:before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-about-History__timeline .c-timeline__list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-about-History__timeline .c-timeline__list-item:before, .p-about-History__timeline .c-timeline__list-item:after {
  content: "";
  display: block;
  position: absolute;
  background: #BDA27F;
}
.p-about-History__timeline .c-timeline__list-item:before {
  width: 3rem;
  height: 1pt;
  top: 1.4rem;
}
.p-about-History__timeline .c-timeline__list-item:after {
  width: 1.1rem;
  height: 1.1rem;
  top: 0.9rem;
  border-radius: 50%;
}
.p-about-History__timeline .c-timeline__list-item:nth-of-type(2n - 1) {
  padding-left: 4rem;
}
.p-about-History__timeline .c-timeline__list-item:nth-of-type(2n - 1):before {
  left: 0;
}
.p-about-History__timeline .c-timeline__list-item:nth-of-type(2n - 1):after {
  left: -0.55rem;
}
@media not screen and (min-width: 768px) {
  .p-about-History__timeline .c-timeline__list-item {
    padding-left: 4rem;
  }
  .p-about-History__timeline .c-timeline__list-item:before {
    left: 0;
  }
  .p-about-History__timeline .c-timeline__list-item:after {
    left: -0.55rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-History__timeline .c-timeline__list-item:nth-of-type(2n - 1) {
    margin-left: 50%;
  }
  .p-about-History__timeline .c-timeline__list-item:nth-of-type(2n) {
    text-align: right;
    padding-right: 4rem;
    margin-right: 50%;
  }
  .p-about-History__timeline .c-timeline__list-item:nth-of-type(2n):before {
    right: 0;
  }
  .p-about-History__timeline .c-timeline__list-item:nth-of-type(2n):after {
    right: -0.55rem;
  }
}
.p-about-History__timeline .c-timeline__list-item + .c-timeline__list-item {
  margin-top: 3rem;
}
.p-about-History__timeline .c-timeline__list-year {
  font-size: 2.8rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  line-height: 1;
}
.p-about-History__timeline .c-timeline__list-dl {
  font-size: 1.8rem;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.p-about-History__timeline .c-timeline__list-dl dt {
  color: #BDA27F;
  width: 6rem;
  position: relative;
  text-align: right;
  white-space: nowrap;
}
.p-about-History__timeline .c-timeline__list-dl dt:after {
  content: "";
  width: 1pt;
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  background-color: #000;
}
.p-about-History__timeline .c-timeline__list-dl dd {
  width: calc(100% - 6rem - 2rem);
}
.p-about-History__timeline .c-timeline__list-item:nth-of-type(2n - 1) dt {
  padding-right: 2.1rem;
}
.p-about-History__timeline .c-timeline__list-item:nth-of-type(2n - 1) dt:after {
  right: 0;
}
@media not screen and (min-width: 768px) {
  .p-about-History__timeline .c-timeline__list-item dt {
    padding-right: 2.1rem;
  }
  .p-about-History__timeline .c-timeline__list-item dt:after {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-about-History__timeline .c-timeline__list-item:nth-of-type(2n) .c-timeline__list-dl {
    flex-direction: row-reverse;
  }
  .p-about-History__timeline .c-timeline__list-item:nth-of-type(2n) dt:after {
    left: 0;
  }
}

.p-news-Entries__row {
  --gutter-y: 10.1rem;
  --gutter-x: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-news-Entries__row {
    flex-direction: column;
    --gutter-y: 5.1rem;
  }
}

.p-news-Entries__post-lists {
  padding-bottom: 5.1rem;
}

@media screen and (min-width: 768px) {
  .p-news-Entries__post-list:after {
    bottom: -5.1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-news-Entries__post-list .c-post-list__body {
    padding-top: 2rem;
  }
}
.p-news-Entries__post-list .c-post-list__text {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .p-sw-Main.-service-post .p-sw-Main__page-sub-title {
    margin-top: -5.6rem;
  }
}
@media not screen and (min-width: 768px) {
  body.-lang-en .p-sw-Main.-service-post .p-sw-Main__page-sub-title {
    margin-top: 5.3rem;
  }
  body.-lang-en .p-sw-Main.-service-post .p-sw-Main__page-sub-title {
    min-height: 7.92rem;
  }
}
@media screen and (min-width: 768px) {
  body.-lang-en .p-sw-Main.-service-post .p-sw-Main__page-sub-title {
    margin-top: -4.3rem;
  }
  body.-lang-en .p-sw-Main.-service-post .p-sw-Main__page-sub-title {
    min-height: 7.92rem;
  }
}

.p-service-post-Intro__section {
  font-size: 1.8rem;
  line-height: 2;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-service-post-Intro__section {
    padding-bottom: 12rem;
  }
}

.p-service-post-Intro__section-inner {
  display: flex;
}
@media not screen and (min-width: 768px) {
  .p-service-post-Intro__section-inner {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .p-service-post-Intro__section-inner {
    gap: 5rem;
    margin-top: 5.4rem;
    align-items: flex-start;
  }
}

.p-service-post-Intro__section-start {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-service-post-Intro__section-start {
    max-width: 24rem;
    margin: 3.69rem auto 5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-service-post-Intro__section-start {
    max-width: 30.2rem;
    width: calc((100% + 5rem) / 1190 * 352 - 5rem);
  }
}

@media screen and (min-width: 768px) {
  .p-service-post-Intro__section-end {
    padding-top: 0.9rem;
    width: calc((100% + 5rem) / 1190 * 838 - 5rem);
  }
}

.p-service-post-Feature__section {
  padding-bottom: 8rem;
  margin-top: 8rem;
}

.p-service-post-Feature__lists {
  display: flex;
  gap: 5rem 3rem;
  margin-top: 8rem;
}
@media not screen and (min-width: 768px) {
  .p-service-post-Feature__lists {
    flex-direction: column;
  }
}
.p-service-post-Feature__lists .c-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-service-post-Feature__lists .c-list {
    width: calc((100% - 6rem) / 3);
  }
}
.p-service-post-Feature__lists .c-list__order {
  font-family: "Roboto", sans-serif;
  color: #9e8850;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}
.p-service-post-Feature__lists .c-list__title {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 500;
}
.p-service-post-Feature__lists .c-list__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 2rem;
}

.p-service-post-Process__section {
  margin-top: 8rem;
  padding-bottom: 8rem;
}

.p-service-post-Process__lists {
  display: flex;
  flex-direction: column;
  margin-top: 8rem;
}
.p-service-post-Process__lists .c-list {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0 3rem;
}
.p-service-post-Process__lists .c-list:not(:last-child):before {
  content: "";
  font-size: 2.8rem;
  display: block;
  width: 1pt;
  background: #DCDCDC;
  position: absolute;
  left: 1.5196428571em;
  transform: translateX(-50%);
  top: 2rem;
  bottom: -0.1rem;
}
@media not screen and (min-width: 768px) {
  .p-service-post-Process__lists .c-list:not(:last-child):before {
    font-size: 2rem;
  }
}
.p-service-post-Process__lists .c-list__order {
  z-index: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1;
  display: block;
  aspect-ratio: 85.1/97.13;
  width: 100%;
  max-width: 3.0392857143em;
  background: url(../img/icon-process-order.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-service-post-Process__lists .c-list__order {
    font-size: 2rem;
  }
}
.p-service-post-Process__lists .c-list__body {
  padding-top: 3.5rem;
  padding-bottom: 4.1rem;
}
@media not screen and (min-width: 768px) {
  .p-service-post-Process__lists .c-list__body {
    padding-top: 2.1rem;
    padding-bottom: 2.7rem;
  }
}
.p-service-post-Process__lists .c-list__title {
  font-size: 1.8rem;
  line-height: 1.33333;
  font-weight: 500;
}
.p-service-post-Process__lists .c-list__text {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-top: 1.2rem;
}

.p-service-post-Price__section {
  margin-top: 8rem;
  padding-bottom: 8rem;
}
.p-service-post-Price__section .p-service-post-Price__center-title {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-service-post-Price__section .p-service-post-Price__center-title {
    margin-bottom: 8rem;
  }
}

.p-sw-Main.-team-post {
  overflow: hidden;
}
.p-sw-Main.-team-post .p-sw-Main__head {
  height: 32rem;
  background: #F4F4F4;
}
.p-sw-Main.-team-post .p-sw-Main__head .c-container {
  position: relative;
  height: 100%;
}
.p-sw-Main.-team-post .p-sw-Main__head-content {
  z-index: 1;
  position: relative;
  height: 100%;
}
@media not screen and (min-width: 768px) {
  .p-sw-Main.-team-post .p-sw-Main__page-sub-title {
    position: absolute;
    bottom: -5rem;
    transform: translateY(100%);
  }
}
@media screen and (min-width: 768px) {
  .p-sw-Main.-team-post .p-sw-Main__head {
    height: 62.8rem;
  }
  .p-sw-Main.-team-post .p-sw-Main__page-sub-title {
    margin-top: 13.5rem;
  }
}
.p-sw-Main.-team-post .p-sw-Main__mv {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  max-width: 85.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-sw-Main.-team-post .p-sw-Main__mv {
    right: 10rem;
  }
}
.p-sw-Main.-team-post .p-sw-Main__mv-figure {
  max-width: 62.8rem;
  aspect-ratio: 1/1;
  margin-bottom: 0;
  display: flex;
  background: #f4f4f4;
  margin-left: auto;
}
.p-sw-Main.-team-post .p-sw-Main__mv-figure-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(10.5263157895%, 32.8947368421%);
  width: 59.3746875%;
}
@media screen and (min-width: 768px) {
  .p-sw-Main.-team-post .p-sw-Main__mv-figure-deco {
    width: 60.5092356688%;
  }
}
.p-sw-Main.-team-post .p-sw-Main__body {
  padding-top: 23.8rem;
}
@media screen and (min-width: 768px) {
  .p-sw-Main.-team-post .p-sw-Main__body {
    padding-top: 15rem !important;
  }
}

body.-lang-en .p-sw-Main.-team-post .p-sw-Main__page-sub-title .c-text-style__item.-ja {
  font-family: "Roboto Condensed", sans-serif;
}

.p-team-Entry__lists {
  --list-item-gap-x: 2.7rem;
  --list-item-gap-y: 5rem;
  --list-item-column: 2;
  position: relative;
  display: flex;
  gap: var(--list-item-gap-y) var(--list-item-gap-x);
  max-width: 114rem;
  margin: 0 auto;
}
.p-team-Entry__lists + .p-team-Entry__lists {
  margin-top: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-team-Entry__lists {
    --list-item-gap-x: 0;
    --list-item-gap-y: 5rem;
    --list-item-column: 1;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-team-Entry__lists {
    --list-item-column: 1;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 900px) {
  .p-team-Entry__lists {
    --list-item-column: 2;
  }
}
@media screen and (min-width: 1280px) {
  .p-team-Entry__lists {
    --list-item-column: 3;
  }
}

.p-team-Entry__list-item {
  position: relative;
  padding: 0 0 4.9rem;
  width: calc((100% - var(--list-item-gap-x) * (var(--list-item-column) - 1)) / var(--list-item-column));
  display: flex;
  align-items: flex-start;
}
@media not screen and (min-width: 768px) {
  .p-team-Entry__list-item {
    padding-bottom: 5.9rem;
  }
  .p-team-Entry__list-item:not(:last-child):after {
    content: "";
    display: block;
    transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
    width: 100%;
    height: 1pt;
    background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
    position: absolute;
    bottom: 0;
  }
  .p-team-Entry__list-item:last-child {
    padding-bottom: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-team-Entry__list-item {
    padding-bottom: 7rem;
  }
}

.p-team-Entry__list-content {
  padding-top: 7.2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.p-team-Entry__list-text {
  font-size: 1.6rem;
  padding-left: 2.3rem;
}
.p-team-Entry__list-text.-business-position {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3.7rem;
}
.p-team-Entry__list-text.-h3-rich {
  margin-bottom: 5.1rem;
}

body.-lang-en .p-team-Entry__lists .p-team-Entry__list-text.-h3-rich .c-text-style__item {
  line-height: 1.1;
  font-family: "Roboto Condensed", sans-serif;
}
body.-lang-en .p-team-Entry__lists:not(.-large) .p-team-Entry__list-text.-h3-rich {
  margin-bottom: 4.5rem;
}
body.-lang-en .p-team-Entry__lists:not(.-large) .p-team-Entry__list-text.-h3-rich .c-text-style__item {
  font-size: 3rem;
}
@media not screen and (min-width: 768px) {
  body.-lang-en .p-team-Entry__lists:not(.-large) .p-team-Entry__list-text.-h3-rich {
    margin-bottom: 4.94rem;
  }
  body.-lang-en .p-team-Entry__lists:not(.-large) .p-team-Entry__list-text.-h3-rich .c-text-style__item {
    font-size: 2.6rem;
  }
}
body.-lang-en .p-team-Entry__lists.-large .p-team-Entry__list-text.-h3-rich {
  margin-bottom: 4.34rem;
}
body.-lang-en .p-team-Entry__lists.-large .p-team-Entry__list-text.-h3-rich .c-text-style__item {
  font-size: 4.6rem;
}

@media not screen and (min-width: 768px) {
  .p-team-Entry__list-content {
    padding-top: 4.7rem;
  }
  .p-team-Entry__list-text.-business-position {
    font-size: 1.6rem;
  }
}
.p-team-Entry__list-figure {
  position: relative;
  margin-left: -20%;
  flex: 1;
}

.p-team-Entry__list-figure-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(9.5238095238%, 65.6952380952%);
  width: 21rem;
}

.p-team-Entry__list-item .p-team-Entry__list-figure-deco use {
  transition: transform 600ms cubic-bezier(0.8, 0, 0.17, 1);
}
.p-team-Entry__list-item:hover .p-team-Entry__list-figure-deco use:nth-of-type(1) {
  transform: translate(-1rem, 1rem);
}
.p-team-Entry__list-item:hover .p-team-Entry__list-figure-deco use:nth-of-type(2) {
  transform: translate(1rem, -1rem);
}
.p-team-Entry__list-item:hover .p-team-Entry__list-figure-deco use:nth-of-type(3) {
  transform: translate(1rem, 1rem);
}

.p-team-Entry__list-figure-inner {
  aspect-ratio: 1/1;
  display: flex;
  background: #f4f4f4;
  margin-left: auto;
  margin-bottom: 0;
  width: 21rem;
}

.p-team-Entry__list-link {
  margin-left: 2.3rem;
}

@media not screen and (min-width: 768px) {
  .p-team-Entry__list-figure {
    margin-right: 2.3rem;
  }
  .p-team-Entry__list-figure-deco {
    width: 16.0588235294rem;
  }
  .p-team-Entry__list-figure-inner {
    width: 16rem;
  }
}
@media screen and (min-width: 768px) {
  .p-team-Entry__list-link {
    margin-top: auto;
  }
}
.p-team-Entry__lists.-large .p-team-Entry__list-figure-deco {
  transform: translate(16.4609053498%, 43.75%);
  width: 24.3rem;
}
.p-team-Entry__lists.-large .p-team-Entry__list-item {
  padding-bottom: 4.9rem;
}
.p-team-Entry__lists.-large .p-team-Entry__list-item:hover .p-team-Entry__list-figure-deco use:nth-of-type(1) {
  transform: translate(1rem, -1rem);
}
.p-team-Entry__lists.-large .p-team-Entry__list-item:hover .p-team-Entry__list-figure-deco use:nth-of-type(2) {
  transform: translate(-1rem, 1rem);
}
.p-team-Entry__lists.-large .p-team-Entry__list-item:hover .p-team-Entry__list-figure-deco use:nth-of-type(3) {
  transform: translate(1rem, 1rem);
}
@media not screen and (min-width: 768px) {
  .p-team-Entry__lists.-large .p-team-Entry__list-figure {
    width: calc(100% - 4.6rem);
    margin-right: auto;
    margin-left: auto;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-item {
    flex-direction: column-reverse;
    align-items: normal;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-content {
    padding-top: 4rem;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-figure {
    width: calc(100% - 4.6rem);
    margin-right: auto;
    margin-left: auto;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-figure-inner {
    width: auto;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-link {
    margin-left: auto;
    margin-right: 2.3rem;
    margin-left: auto;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-text.-business-position {
    font-size: 1.8rem;
    margin-bottom: 4.7rem;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-text.-h3-rich {
    margin-bottom: 2.8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-team-Entry__lists.-large {
    --list-item-gap-x: 7rem;
    --list-item-gap-y: 8rem;
    --list-item-column: 1;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-item {
    padding-bottom: 1.9rem;
    width: calc((100% - var(--list-item-gap-x) * (var(--list-item-column) - 1)) / var(--list-item-column));
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-content {
    padding-top: 9.8rem;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-text {
    font-size: 1.8rem;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-text.-business-position {
    margin-bottom: 4.7rem;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-text.-h3-rich {
    margin-bottom: 6.8rem;
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-figure-deco {
    transform: translate(8.2304526749%, 43.75%);
  }
  .p-team-Entry__lists.-large .p-team-Entry__list-figure-inner {
    width: 28rem;
    margin-right: 2rem;
  }
  .p-team-Entry__lists.-large + .p-team-Entry__lists {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-team-Entry__lists.-large {
    --list-item-column: 2;
  }
}

.p-team-Entry__biz-position__alias {
  display: none !important;
}

.p-team-post-Outline__list {
  position: relative;
  display: flex;
  gap: 2rem;
  line-height: 2;
}
@media not screen and (min-width: 768px) {
  .p-team-post-Outline__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-team-post-Outline__list {
    padding-right: 5rem;
    gap: 4rem;
  }
}
.p-team-post-Outline__list .c-list__head {
  flex: 51;
}
.p-team-post-Outline__list .c-list__body {
  flex: 64;
}
.p-team-post-Outline__list .c-list__text {
  line-height: 2;
}
.p-team-post-Outline__list:not(:last-child) {
  padding-bottom: 8.1rem;
  margin-bottom: 8rem;
}
@media not screen and (min-width: 768px) {
  .p-team-post-Outline__list:not(:last-child) {
    padding-bottom: 3.1rem;
    margin-bottom: 3rem;
  }
}
.p-team-post-Outline__list:not(:last-child):after {
  content: "";
  display: block;
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
}
.p-team-post-Outline__list:not(:last-child):after.-divider {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: auto;
}
@media screen and (min-width: 768px) {
  .p-team-post-Outline__list:not(:last-child):after.-divider {
    right: 0;
    left: 0;
  }
}
.p-team-post-Outline__list:not(:last-child):after {
  position: absolute;
  bottom: 0;
}
.p-team-post-Outline__list dl {
  display: flex;
  flex-wrap: wrap;
}
.p-team-post-Outline__list dl dt, .p-team-post-Outline__list dl dd {
  padding: 0.25em 0;
}
.p-team-post-Outline__list dl dt {
  width: 6em;
}
.p-team-post-Outline__list dl dd {
  width: calc(100% - 6em);
}

.p-team-post-Outline__list-title {
  font-weight: 500;
}

.p-team-post-Outline__list-title.c-text-style.-h3 {
  align-items: flex-start;
  line-height: 1;
}
.p-team-post-Outline__list-title.c-text-style.-h3 .c-text-style__item.-en {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #9e8850;
}
.p-team-post-Outline__list-title.c-text-style.-h3 .c-text-style__item.-ja {
  margin-top: 1rem;
}

.p-team-post-Outline__line.c-line {
  right: 0;
  left: 0;
}

body.-top .p-sw-Main__body {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-top-Fv__section {
  position: relative;
  overflow: hidden;
}
.p-top-Fv__section .c-section__body {
  z-index: 2;
  height: auto;
  aspect-ratio: 375/667;
}
@media screen and (min-width: 768px) {
  .p-top-Fv__section .c-section__body {
    height: 100vh;
    height: 100dvh;
    min-height: 76.8rem;
  }
}

.p-top-Fv__visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
@media not screen and (min-width: 768px) {
  .p-top-Fv__visual {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-top-Fv__visual {
    aspect-ratio: 1440/768;
    min-width: calc(var(--vw) * 100);
    min-height: clamp(76.8rem, 100vh, 100%);
    min-height: clamp(76.8rem, 100svh, 100%);
  }
}
.p-top-Fv__visual-svg {
  width: 100%;
  height: 100%;
}
.p-top-Fv__visual-svg path {
  stroke: #BDA27F;
  stroke-width: 0.1rem;
  animation: svg-fv-anime 3s ease-in;
}
.p-top-Fv__visual-svg path.stroke-white {
  stroke: #fff;
  animation: svg-fv-anime-strokewhite 3s ease-in;
}
.p-top-Fv__visual-svg path.fill-path {
  fill: #BDA27F;
  animation: svg-fv-fillpath-anime 3s ease-in;
}
.p-top-Fv__visual-svg path.fill-white {
  fill: #fff;
  animation: svg-fv-fillwhite-anime 3s ease-in;
}
.p-top-Fv__visual-svg-line {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
}
.p-top-Fv__visual-svg-line path {
  stroke: #BDA27F;
  stroke-width: 0.1rem;
  animation: svg-fv-anime 3s ease-in;
}
.p-top-Fv__visual-svg-line path.stroke-white {
  stroke: #fff;
  animation: svg-fv-anime-strokewhite 3s ease-in;
}
.p-top-Fv__visual-svg-line path.fill-path {
  fill: #BDA27F;
  animation: svg-fv-fillpath-anime 3s ease-in;
}
.p-top-Fv__visual-svg-line path.fill-white {
  fill: #fff;
  animation: svg-fv-fillwhite-anime 3s ease-in;
}
@keyframes svg-fv-anime {
  0% {
    stroke-dasharray: 1440px;
    stroke-dashoffset: 1440px;
  }
  90% {
    stroke-dashoffset: 0;
  }
}
@keyframes svg-fv-anime-strokewhite {
  0% {
    stroke: #BDA27F;
    stroke-dasharray: 1440px;
    stroke-dashoffset: 1440px;
  }
  90% {
    stroke: #BDA27F;
    stroke-dashoffset: 0;
  }
  100% {
    stroke: #fff;
  }
}
@keyframes svg-fv-fillpath-anime {
  0% {
    fill: transparent;
    stroke-dasharray: 1440px;
    stroke-dashoffset: 1440px;
  }
  90% {
    fill: transparent;
    stroke-dashoffset: 0;
  }
  100% {
    fill: #BDA27F;
  }
}
@keyframes svg-fv-fillwhite-anime {
  0% {
    fill: white;
    stroke-dasharray: 1440px;
    stroke-dashoffset: 1440px;
  }
  90% {
    stroke-dashoffset: 0;
  }
}
.p-top-Fv__text {
  font-family: "Roboto", sans-serif;
  font-size: calc(var(--vw) * 22 / 3.75);
  font-weight: 700;
  line-height: 1;
  width: max-content;
  position: absolute;
  top: calc(50% + 0.4rem);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: fv-text-sp 3s cubic-bezier(0.8, 0, 0.17, 1);
}
.p-top-Fv__text span {
  font-size: calc(var(--vw) * 12 / 3.75);
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-Fv__text {
    font-size: calc(var(--vw) * 40 / 14.4);
    top: calc(50% + 0.5rem);
    left: calc(50% + 7rem);
    transform: translate(0, -50%);
    animation: fv-text-pc 3s cubic-bezier(0.8, 0, 0.17, 1);
  }
  .p-top-Fv__text span {
    font-size: calc(var(--vw) * 20 / 14.4);
    margin-top: 1.3rem;
  }
}
@keyframes fv-text-sp {
  0% {
    opacity: 0;
    left: calc(50% - 3rem);
  }
  80% {
    opacity: 0;
    left: calc(50% - 3rem);
  }
  100% {
    opacity: 1;
    left: 50%;
  }
}
@keyframes fv-text-pc {
  0% {
    opacity: 0;
    left: calc(50% + 4rem);
  }
  80% {
    opacity: 0;
    left: calc(50% + 4rem);
  }
  100% {
    opacity: 1;
    left: calc(50% + 7rem);
  }
}
.p-top-Fv__scroll {
  display: block;
  width: 1em;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding-bottom: 6.6964285714svh;
  position: absolute;
  left: 5rem;
  right: auto;
  bottom: 0;
  margin: 0 auto;
  z-index: 1000;
  writing-mode: vertical-rl;
}
@media not screen and (min-width: 768px) {
  .p-top-Fv__scroll {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-top-Fv__scroll {
    padding-bottom: 5rem;
  }
}
@media (any-hover: hover) {
  .p-top-Fv__scroll:hover {
    color: #1F3183;
    opacity: 1;
  }
  .p-top-Fv__scroll:hover .p-top-Fv__scroll-line span {
    background: linear-gradient(to bottom, #1F3183 100%, rgba(0, 0, 0, 0) 0%);
  }
}
.p-top-Fv__scroll-line {
  width: 1pt;
  height: 5.5803571429svh;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-Fv__scroll-line {
    height: 4rem;
  }
}
.p-top-Fv__scroll-line span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, #000000 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 0 -5.5803571429svh;
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
  background-position: 0 0;
}
@media screen and (min-width: 768px) {
  .p-top-Fv__scroll-line span {
    background-position: 0 -4rem;
    animation-name: scrolldown-md;
  }
}

.-default-set01 {
  opacity: 0;
  visibility: hidden;
}

.-default-set02 {
  clip-path: polygon(70% 0, 100% 0, 100% 50%, 125% 62%, 90% -20%);
}

.-default-set03 {
  display: block;
  opacity: 0;
}

.-default-set04 {
  clip-path: polygon(0 40%, 0 0, 100% 0, 100% -80%, -111% 100%);
}

.-default-set04-sp {
  clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
}

@keyframes scrolldown {
  0% {
    background-position: 0 -5.5803571429svh;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 5.5803571429svh;
  }
}
@keyframes scrolldown-md {
  0% {
    background-position: 0 -4rem;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 4rem;
  }
}
@keyframes stroke-hover {
  0% {
    stroke-dashoffset: -105.6725575685px;
  }
  0.01% {
    stroke-dashoffset: 105.6725575685px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke-hover-out {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -105.6725575685px;
  }
}
.p-top-About__section {
  margin-bottom: 8.85rem;
}
.p-top-About__section .c-section__head, .p-top-About__section .c-section__body {
  z-index: 1;
}
.p-top-About__section .c-section__head {
  margin-bottom: -9rem;
}
.p-top-About__section .c-section__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
}
.p-top-About__section .c-section__main {
  max-width: 43.4rem;
  margin-right: auto;
  margin-left: auto;
}
.p-top-About__section .c-section__linkarea {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
  align-items: flex-end;
}
@media not screen and (min-width: 768px) {
  .p-top-About__section .c-section__linkarea {
    margin-top: 4.85rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-About__section .c-section__linkarea {
    position: absolute;
    right: 3.6rem;
    bottom: 0;
  }
}
.p-top-About__section .c-section__main.js-aboutanim-text,
.p-top-About__section .c-section__linkarea.js-aboutanim-text {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(3rem); /* 下に3remの位置*/
}

.p-top-About__section .c-section__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-top-About__section .c-section__content .c-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-top-About__section .c-section__content .c-container {
    padding: 0 8.216rem 0 8.126rem;
  }
  .p-top-About__section .c-section__content .p-top-About__title {
    font-size: 1.365rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-About__section .c-section__content {
    padding: 0.4166666rem 0;
  }
  .p-top-About__section .c-section__content .c-container {
    height: 100%;
  }
}
.p-top-About__section .p-top-About__inner {
  position: sticky;
  top: var(--header-height);
  left: 0;
  z-index: 0;
}
.p-top-About__section .p-top-About__mv {
  --mask-point: calc(138vw / 14.4);
  --mv-padding-bottom: 9.7vw;
  position: relative;
  padding-top: 4.6rem;
  padding-bottom: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-About__section .p-top-About__mv {
    padding-top: 10rem;
    padding-bottom: calc(var(--mv-padding-bottom) + 10rem);
  }
}
.p-top-About__section .p-top-About__mv .c-section__main,
.p-top-About__section .p-top-About__mv .c-section__linkarea {
  color: #fff;
}
.p-top-About__section .p-top-About__mv {
  -webkit-mask-image: url("../img/about-arrow.svg"), linear-gradient(to top, transparent, transparent var(--mask-point), #000 var(--mask-point));
          mask-image: url("../img/about-arrow.svg"), linear-gradient(to top, transparent, transparent var(--mask-point), #000 var(--mask-point));
  -webkit-mask-repeat: no-repeat, no-repeat;
          mask-repeat: no-repeat, no-repeat;
  -webkit-mask-position: center bottom, center;
          mask-position: center bottom, center;
  -webkit-mask-size: 100% auto, 100% 100%;
          mask-size: 100% auto, 100% 100%;
}
@media not screen and (min-width: 768px) {
  .p-top-About__section .p-top-About__mv {
    min-height: 28.6rem;
    display: flex;
    align-items: center;
    padding-bottom: 6rem;
  }
  .p-top-About__section .p-top-About__mv .c-section__head,
  .p-top-About__section .p-top-About__mv .p-top-About__text,
  .p-top-About__section .p-top-About__mv .c-section__linkarea {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .p-top-About__section .p-top-About__mv {
    height: calc(100vh - var(--header-height) + var(--mv-padding-bottom));
    min-height: 85.6rem;
  }
}
.p-top-About__section .p-top-About__bg {
  position: absolute;
  top: 18%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 1px;
  overflow: hidden;
  transform: translate(-50%, -18%);
}
@media not screen and (min-width: 768px) {
  .p-top-About__section .p-top-About__bg {
    aspect-ratio: 375/286;
    bottom: auto;
  }
}
.p-top-About__section .p-top-About__bg-item {
  z-index: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.6);
  transform-origin: center;
}
.p-top-About__section .p-top-About__bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.p-top-About__section .c-section__spacer {
  height: 120lvh;
}
@media screen and (min-width: 768px) {
  .p-top-About__section .c-section__spacer {
    height: 60lvh;
  }
}
@media not screen and (min-width: 768px) {
  .p-top-About__section .p-top-About__display-text {
    max-width: 75.161vw;
    width: 100%;
  }
}
.p-top-About__section .p-top-About__title {
  font-size: 1.82rem;
  line-height: 1.66666;
  font-weight: 500;
  color: inherit;
  opacity: inherit;
  margin-top: 2.65rem;
}
@media screen and (min-width: 768px) {
  .p-top-About__section .p-top-About__title {
    font-size: 2.8rem;
    margin-top: 4rem;
  }
}
.p-top-About__section .p-top-About__text {
  font-size: 1.8rem;
  line-height: 2;
  color: inherit;
  opacity: inherit;
  margin-top: 3rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-top-About__section .p-top-About__text {
    margin-top: 5rem;
  }
}
.p-top-AboutAchievements__prompt,
.p-top-AboutAchievements__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}

.p-top-AboutAchievements__prompt {
  font-size: 54px;
  font-weight: 200;
}

.p-top-AboutAchievements__arrow {
  position: absolute;
  top: 4rem;
  font-size: 1.8rem;
  animation: scrolldown 1.2s ease-out backwards infinite;
}

.p-top-AboutAchievements__lists {
  width: 100%;
  max-width: 80rem;
  margin: 6.2rem auto 0;
  display: flex;
  justify-content: flex-start;
  gap: 10rem;
  container-type: inline-size;
  resize: horizontal;
}
@media not screen and (min-width: 768px) {
  .p-top-AboutAchievements__lists {
    flex-direction: column;
    align-items: center;
  }
}

.p-top-AboutAchievements__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.1rem;
}

.p-top-AboutAchievements__list-item:nth-of-type(1) {
  min-width: 19rem;
}

.p-top-AboutAchievements__list-item:nth-of-type(2) {
  min-width: 22.5rem;
}

.p-top-AboutAchievements__list-item:nth-of-type(3) {
  min-width: 13.5rem;
}

.p-top-AboutAchievements__counter {
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
}
@media not screen and (min-width: 768px) {
  .p-top-AboutAchievements__counter {
    transform: translateX(1.5em);
  }
}
@media screen and (min-width: 768px) {
  .p-top-AboutAchievements__counter {
    transform: translateX(1em);
  }
}

.p-top-AboutAchievements__lists.-en .p-top-AboutAchievements__list-title {
  letter-spacing: normal;
}

.p-top-AboutAchievements__number {
  font-family: "Barlow Semi Condensed", system-ui;
  font-style: normal;
  font-size: 6rem;
  font-weight: 700;
  color: #1F3183;
}

.p-top-AboutAchievements__unit {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-left: 8px;
}

.p-top-AboutAchievements__list-title {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-align: center;
}

@keyframes scrolldown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(22px);
  }
}
.p-top-AboutAchievements__illust {
  margin-top: 8rem;
}
.p-top-AboutAchievements__illust img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-AboutAchievements__illust {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 10.6rem;
    position: relative;
    margin-top: 9.6rem;
  }
  .p-top-AboutAchievements__illust svg {
    width: 105.3rem;
    max-width: initial;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-top-AboutAchievements__illust:before, .p-top-AboutAchievements__illust:after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    background: #BDA27F;
    height: 0.1rem;
  }
  .p-top-AboutAchievements__illust:before {
    top: 0;
    background: linear-gradient(to right, #BDA27F, #BDA27F calc(50% - 29.8rem), transparent calc(50% - 29.8rem));
  }
  .p-top-AboutAchievements__illust:after {
    bottom: 0;
    background: linear-gradient(to right, transparent, transparent calc(50% + 52.5rem), #BDA27F calc(50% + 52.5rem));
  }
}

.p-top-News__section .c-section__inner {
  flex-direction: row;
  max-width: 134rem;
  gap: 5rem;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-right: auto;
  margin-left: auto;
}
.p-top-News__section .c-section__body .c-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media not screen and (min-width: 768px) {
  .p-top-News__section {
    padding-top: 8.025rem;
    padding-bottom: 8.932rem;
  }
  .p-top-News__section .c-section__inner {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-top-News__section {
    padding-top: 10rem;
    padding-bottom: 5.95rem;
  }
  .p-top-News__section .c-section__head, .p-top-News__section .c-section__body {
    flex: 1;
  }
  .p-top-News__section .c-section__inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.p-top-News__section-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
  height: 8.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-News__section-deco {
    height: 17rem;
  }
}

.p-top-News__post-lists {
  width: 100%;
}

.p-top-News__list-link {
  margin-top: 3.85rem;
}

.p-top-News__section-line {
  position: absolute;
  bottom: 0;
  right: 10rem;
  left: 10rem;
  width: auto;
}

.p-top-Article__section {
  padding-top: 10rem;
  padding-bottom: 8.932rem;
}
.p-top-Article__section .c-section__inner {
  flex-direction: row;
  max-width: 134rem;
  gap: 5rem;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-right: auto;
  margin-left: auto;
}
.p-top-Article__section .c-section__body .c-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.p-top-Article__section .c-section__lead {
  align-self: flex-start;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media not screen and (min-width: 768px) {
  .p-top-Article__section .c-section__lead {
    display: none;
  }
  .p-top-Article__section .c-section__inner {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-top-Article__section {
    padding-bottom: 5.95rem;
  }
  .p-top-Article__section .c-section__head, .p-top-Article__section .c-section__body {
    flex: 1;
  }
  .p-top-Article__section .c-section__inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.p-top-Article__section-line {
  position: absolute;
  bottom: 0;
  right: 10rem;
  left: 10rem;
  width: auto;
}
@media not screen and (min-width: 768px) {
  .p-top-Article__section-line {
    display: none;
  }
}

.p-top-Article__section-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(29%);
}

.p-top-Article__list-link {
  margin-top: 3.85rem;
}

.p-top-Article__post-lists {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-top-Article__post-list .c-post-list__text {
    font-size: inherit;
  }
}
@media screen and (min-width: 768px) {
  .p-top-Article__post-list .c-post-list__body {
    gap: 1rem;
  }
}

.p-top-BannerArea__section {
  z-index: 1;
}

.p-top-BannerArea__banners {
  display: flex;
}

.p-top-BannerArea__banner {
  aspect-ratio: 595/238;
}

.p-top-BannerArea__section-deco {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media not screen and (min-width: 768px) {
  .p-top-BannerArea__section {
    padding-bottom: 8rem;
  }
  .p-top-BannerArea__banners {
    flex-direction: column;
    gap: 2rem;
  }
  .p-top-BannerArea__section-deco {
    transform: translateY(32.5581395349%);
    height: 17.2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-BannerArea__section {
    padding-top: 10rem;
    padding-bottom: 20rem;
  }
  .p-top-BannerArea__section .c-container.-max-width-md {
    max-width: 130rem;
  }
  .p-top-BannerArea__banners {
    gap: 5rem;
  }
  .p-top-BannerArea__banner {
    flex: 1;
  }
  .p-top-BannerArea__section-deco {
    transform: translateY(20.9302325581%);
    height: 34.4rem;
  }
}
.p-top-Career__section {
  --deco-bg-height: 16.651rem;
  background: #F0F0F0;
}
.p-top-Career__section .c-section__lead {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 3rem;
}
.p-top-Career__section .c-section__head,
.p-top-Career__section .c-section__body {
  z-index: 3;
}
@media not screen and (min-width: 768px) {
  .p-top-Career__section {
    padding-top: 8rem;
    padding-bottom: calc(49.175rem + var(--deco-bg-height));
    margin-bottom: calc(-1 * var(--deco-bg-height));
    background: linear-gradient(to top, transparent var(--deco-bg-height), #F0F0F0 var(--deco-bg-height));
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .p-top-Career__section {
    padding-top: 10rem;
    padding-bottom: 10.85rem;
  }
  .p-top-Career__section .c-section__lead {
    margin-top: 8rem;
  }
}

.p-top-Career__list-link {
  margin-top: 3.85rem;
}

.p-top-Career__figure {
  position: absolute;
  bottom: 0;
  z-index: 2;
  max-width: none;
}
@media not screen and (min-width: 768px) {
  .p-top-Career__figure {
    width: 139%;
    right: -6%;
    bottom: var(--deco-bg-height);
  }
}
@media screen and (min-width: 768px) {
  .p-top-Career__figure {
    height: 100%;
    right: 0;
    top: 0;
  }
}

.p-top-Career__deco {
  position: absolute;
  z-index: 1;
  max-width: none;
}
@media not screen and (min-width: 768px) {
  .p-top-Career__deco {
    right: 0;
    bottom: 0;
    height: 18.751rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-Career__deco {
    transform: translateY(100%);
    right: -6.5rem;
    bottom: 4.4rem;
    height: 37.5rem;
  }
}

.p-top-Career__section.-theme-en,
.p-top-Career__section.-theme-zh {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  overflow: initial;
}
@media not screen and (min-width: 768px) {
  .p-top-Career__section.-theme-en .p-top-Career__deco,
  .p-top-Career__section.-theme-zh .p-top-Career__deco {
    top: -2rem;
    bottom: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-top-Career__section.-theme-en .p-top-Career__deco,
  .p-top-Career__section.-theme-zh .p-top-Career__deco {
    bottom: 3.3rem;
  }
}

.p-top-Group__section {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.p-top-Group__section .c-section__lead {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 5rem;
}
.p-top-Group__section .c-section__head,
.p-top-Group__section .c-section__body {
  z-index: 3;
}
.p-top-Group__section .c-section__body .c-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-Group__section {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
  .p-top-Group__section .c-section__lead {
    text-align: center;
    margin-top: 4.1rem;
  }
}
.p-top-Group__section .p-top-Group__row {
  max-width: 90rem;
  --gutter-x: 8rem;
  --gutter-y: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-top-Group__section .p-top-Group__row {
    padding-right: 1.07rem;
    padding-left: 1.07rem;
    --gutter-x: 2.5rem;
    --gutter-y: 5rem;
  }
}

.p-top-Group__list-link {
  margin-top: 3.85rem;
}

.p-top-Group__figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 2;
}

.p-top-Group__button {
  margin-top: 5rem;
  transition: background-color 0.4s;
}
.p-top-Group__button:hover {
  opacity: 1;
  background: #9e8850;
}
@media not screen and (min-width: 768px) {
  .p-top-Group__button {
    width: 100%;
  }
  .p-top-Group__button .c-button__inner {
    width: 100%;
    justify-content: space-between;
    font-size: 1.6rem;
    padding: 1.54rem 0.993rem 1.54rem 1.5rem;
  }
}

.p-top-Group__row {
  margin-top: 6rem;
}

.p-top-Group__deco {
  position: absolute;
  right: 0;
  bottom: 4.4rem;
  z-index: 1;
  transform: translateY(100%);
}

.p-top-Group__logotype {
  max-width: 24rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media not screen and (min-width: 768px) {
  .p-top-Group__logotype {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-Group__logotype {
    max-width: 32.066rem;
  }
}

.p-top-Contact__section {
  padding-top: 10rem;
  background-image: url(../img/contact-bg.jpg);
  background-position: center top;
  background-size: cover;
}
.p-top-Contact__section .c-section__head, .p-top-Contact__section .c-section__body {
  z-index: 1;
}
.p-top-Contact__section .c-section__head {
  margin-bottom: 17.9rem;
}
.p-top-Contact__section .c-section__cta {
  display: flex;
  gap: 1px;
  border-top: 1pt solid #fff;
  position: relative;
}
.p-top-Contact__section .c-section__cta:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 1pt;
  background: #fff;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-top-Contact__section .c-section__cta-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.5);
  padding: 9.4rem 1rem 9.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 300ms cubic-bezier(0.8, 0, 0.17, 1);
  cursor: pointer;
}
.p-top-Contact__section .c-section__cta-item .c-section__cta-item-text {
  font-size: 4rem;
  font-weight: 500;
}
.p-top-Contact__section .c-section__cta-item-title {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
}
.p-top-Contact__section .c-section__cta-item-text {
  font-size: 4rem;
  font-weight: 500;
}
.p-top-Contact__section .c-section__cta-item {
  text-decoration: none;
}
.p-top-Contact__section .c-section__cta-item.-tel .c-section__cta-item-text {
  font-family: "Barlow Semi Condensed", system-ui;
}
.p-top-Contact__section .c-section__cta-item.-form .c-section__cta-item-text {
  font-family: "Roboto", sans-serif;
  padding-left: 0.75em;
  -webkit-text-decoration: #000 underline 0.2rem;
          text-decoration: #000 underline 0.2rem;
  text-underline-offset: 0.4rem;
}
.p-top-Contact__section .c-section__cta-item.-form .c-section__cta-item-icon {
  font-size: 2.05rem;
  margin-left: 1rem;
  margin-bottom: 0.125em;
}
.p-top-Contact__section .c-section__cta-item:hover {
  background: rgba(255, 255, 255, 0.8);
}
.p-top-Contact__section .c-section__cta-item.-form:hover .c-section__cta-item-icon:before {
  transform: translate(100%, 0);
}
.p-top-Contact__section .c-section__cta-item.-form:hover .c-section__cta-item-icon:after {
  transform: translate(0, 0);
}

.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3.75em;
}

.cf7__list dt {
  width: 100%;
  line-height: 1;
}

.cf7__list dd {
  width: 100%;
}

.cf7__list dt + dd {
  margin-top: 1.375em;
}

.cf7__list dd + dt,
.cf7__list dd + dd {
  margin-top: 3.125em !important;
}

@media not screen and (min-width: 768px) {
  .cf7__list {
    font-size: 1.4rem;
  }
}
/* 必須・任意 */
.cf7__required,
.cf7__optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1pt;
}

.cf7__required {
  background: #BE1D1D;
}

.cf7__optional {
  background: #878D8E;
}

/* input・textarea */
.cf7__list dd input:not([type=checkbox]):not([type=radio]),
.cf7__list dd select,
.cf7__list dd textarea {
  width: 100%;
  padding: 0.7125em 1.25em;
  background: #F0F0F0;
  border-style: none;
  display: block;
}

.cf7__list dd input[type=radio] {
  background: #F0F0F0;
  border-style: none;
}
.cf7__list dd input[type=radio]:checked:before {
  background: #1F3183;
}

input:-internal-autofill-selected {
  background: #F0F0F0;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F0F0F0 inset !important;
  -webkit-text-fill-color: #000 !important;
}

input:-webkit-autofill:focus {
  caret-color: #000 !important;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-style: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-style: none;
}
input:where(:focus-visible), select:where(:focus-visible), textarea:where(:focus-visible) {
  outline: none;
  box-shadow: none;
  outline-offset: 0;
}

/* ドロップダウンメニュー */
.cf7__list dd .wpcf7-select {
  position: relative;
  width: 100%;
  -webkit-appearance: none;
          appearance: none;
  background: url(../img/select-caret.svg), #f0f0f0;
  background-repeat: no-repeat;
  background-position: right 1.25em center;
}

/* セレクトボックスの矢印デザイン変更 */
/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0 !important;
}

.cf7__list dd .wpcf7-list-item:nth-child(n+2) {
  margin-top: 1.125em;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* チェックボックス・ラジオボタン */
input[type=checkbox],
input[type=radio] {
  position: relative;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.625em;
  border-style: none;
  vertical-align: -0.3125em;
  background: #F0F0F0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* チェックボックス */
input[type=checkbox]:checked {
  border: 1pt solid #F0F0F0;
  background: #F0F0F0;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 0.1875em;
  left: 0.375em;
  transform: rotate(50deg);
  width: 0.375em;
  height: 0.625em;
  border-right: 0.125em solid #1F3183;
  border-bottom: 0.125em solid #1F3183;
  content: "";
}

/* ラジオボタン */
input[type=radio] {
  border-radius: 50%;
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5625em;
  height: 0.5625em;
  border-radius: 50%;
  background: #000;
  content: "";
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type=text]::placeholder,
.cf7__list dd input[type=tel]::placeholder,
.cf7__list dd input[type=email]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #cccccc;
}

/* Microsoft Edge */
.cf7__list dd input[type=text]::-ms-input-placeholder,
.cf7__list dd input[type=tel]::-ms-input-placeholder,
.cf7__list dd input[type=email]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #cccccc;
}

/* Internet Explorer */
.cf7__list dd input[type=text]:-ms-input-placeholder,
.cf7__list dd input[type=tel]:-ms-input-placeholder,
.cf7__list dd input[type=email]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #cccccc;
}

/* 送信ボタン */
/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
}

.form-item-agreement [data-name=agreement] {
  display: inline-block;
}

/* validation */
.screen-reader-response,
.wpcf7-not-valid-tip,
.wpcf7-response-output {
  color: #ff0000 !important;
  margin-top: 0.416666em !important;
  font-size: 12px !important;
  line-height: 1.66666 !important;
}

.wpcf7-not-valid-tip {
  margin-bottom: -2.08333em;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0.416666em 0 0 !important;
  border-style: none !important;
  padding: 0 !important;
  background: transparent !important;
  font-weight: 400 !important;
  line-height: 1.66666 !important;
}

/* jQuery-Validation-Engineを使用するため、デフォルト仕様をoff */
span.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none !important;
}

.formError {
  order: 10;
  opacity: 1 !important;
  color: #ff0000 !important;
  margin-top: 0.416666em !important;
  font-size: 12px !important;
  line-height: 1.66666 !important;
  margin-bottom: -2.08333em;
  width: 100%;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.complete_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.cf7 {
  opacity: 0;
  display: none;
  animation: menuFadeOut 0.4s ease;
}

[data-contact=input] .cf7.input_area,
[data-contact=confirm] .cf7.confirm_area,
[data-contact=complete] .complete_area {
  opacity: 1;
  display: block;
  animation: menuFadeIn 0.4s ease;
}

[data-contact=complete] .c-section__lead ~ .c-section__text {
  display: none;
}

body.-not-found .p-sw-Main__body {
  padding: 16.9rem 0 16.8rem;
}
@media screen and (min-width: 768px) {
  body.-not-found .p-sw-Main__body {
    padding: 26.9rem 0 21.8rem;
  }
}

.p-404-Main__section {
  font-feature-settings: initial;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}
.p-404-Main__section .c-section__title {
  position: relative;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #9e8850;
  font-size: 6.4rem;
  padding-bottom: 3.1rem;
}
.p-404-Main__section .c-section__title:after {
  content: "";
  display: block;
  transition: width 1000ms cubic-bezier(0.8, 0, 0.17, 1);
  width: 100%;
  height: 1pt;
  background: linear-gradient(to right, #000, #000 0.5rem, #dcdcdc 0.5rem, #dcdcdc calc(100% - 0.5rem), #000000 calc(100% - 0.5rem));
  position: absolute;
  bottom: 0;
}
.p-404-Main__section .c-section__title {
  margin-bottom: 3.55rem;
}
.p-404-Main__section .c-section__text.-en {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-size: 3.7rem;
  margin-bottom: 2.75rem;
}
.p-404-Main__section .c-section__text.-ja {
  font-weight: 700;
  font-size: 1.5rem;
}

.u-anim-underline {
  position: relative;
  background-color: #000;
  padding: 16px;
  border-radius: 6px;
  line-height: 1.75;
  font-size: 16px;
  margin-bottom: 16px;
}

.u-anim-underline__slice {
  -webkit-box-decoration-break: slice;
          box-decoration-break: slice;
  transition: background-size 1.2s ease-out;
  background-image: linear-gradient(#000, #000);
  background-size: 0 1pt;
  background-position: bottom right;
  background-repeat: no-repeat;
  padding-bottom: 5px;
  transition: background-size 0.3s ease-out;
}

.u-background-color-black {
  background-color: #000 !important;
}

.u-background-color-white {
  background-color: #fff !important;
}

@media screen and (min-width: 768px) {
  .u-background-color-black-md {
    background-color: #000 !important;
  }
  .u-background-color-white-md {
    background-color: #fff !important;
  }
}
@media screen and (min-width: 900px) {
  .u-background-color-black-md-x {
    background-color: #000 !important;
  }
  .u-background-color-white-md-x {
    background-color: #fff !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-background-color-black-lg {
    background-color: #000 !important;
  }
  .u-background-color-white-lg {
    background-color: #fff !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-background-color-black-xl {
    background-color: #000 !important;
  }
  .u-background-color-white-xl {
    background-color: #fff !important;
  }
}
.u-border-black {
  border: 0.1rem solid #000 !important;
}

.u-border-color-black {
  border-color: #000 !important;
}

.u-border-white {
  border: 0.1rem solid #fff !important;
}

.u-border-color-white {
  border-color: #fff !important;
}

@media screen and (min-width: 768px) {
  .u-border-black-md {
    border: 0.1rem solid #000 !important;
  }
  .u-border-color-black-md {
    border-color: #000 !important;
  }
  .u-border-white-md {
    border: 0.1rem solid #fff !important;
  }
  .u-border-color-white-md {
    border-color: #fff !important;
  }
}
@media screen and (min-width: 900px) {
  .u-border-black-md-x {
    border: 0.1rem solid #000 !important;
  }
  .u-border-color-black-md-x {
    border-color: #000 !important;
  }
  .u-border-white-md-x {
    border: 0.1rem solid #fff !important;
  }
  .u-border-color-white-md-x {
    border-color: #fff !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-border-black-lg {
    border: 0.1rem solid #000 !important;
  }
  .u-border-color-black-lg {
    border-color: #000 !important;
  }
  .u-border-white-lg {
    border: 0.1rem solid #fff !important;
  }
  .u-border-color-white-lg {
    border-color: #fff !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-border-black-xl {
    border: 0.1rem solid #000 !important;
  }
  .u-border-color-black-xl {
    border-color: #000 !important;
  }
  .u-border-white-xl {
    border: 0.1rem solid #fff !important;
  }
  .u-border-color-white-xl {
    border-color: #fff !important;
  }
}
.u-color-black {
  color: #000 !important;
}

.u-color-white {
  color: #fff !important;
}

@media screen and (min-width: 768px) {
  .u-color-black-md {
    color: #000 !important;
  }
  .u-color-white-md {
    color: #fff !important;
  }
}
@media screen and (min-width: 900px) {
  .u-color-black-md-x {
    color: #000 !important;
  }
  .u-color-white-md-x {
    color: #fff !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-color-black-lg {
    color: #000 !important;
  }
  .u-color-white-lg {
    color: #fff !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-color-black-xl {
    color: #000 !important;
  }
  .u-color-white-xl {
    color: #fff !important;
  }
}
.u-display-none {
  display: none !important;
}

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

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

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

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

@media screen and (min-width: 768px) {
  .u-display-none-md {
    display: none !important;
  }
  .u-display-block-md {
    display: block !important;
  }
  .u-display-inline-block-md {
    display: inline-block !important;
  }
  .u-display-flex-md {
    display: flex !important;
  }
  .u-display-inline-flex-md {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 900px) {
  .u-display-none-md-x {
    display: none !important;
  }
  .u-display-block-md-x {
    display: block !important;
  }
  .u-display-inline-block-md-x {
    display: inline-block !important;
  }
  .u-display-flex-md-x {
    display: flex !important;
  }
  .u-display-inline-flex-md-x {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-display-none-lg {
    display: none !important;
  }
  .u-display-block-lg {
    display: block !important;
  }
  .u-display-inline-block-lg {
    display: inline-block !important;
  }
  .u-display-flex-lg {
    display: flex !important;
  }
  .u-display-inline-flex-lg {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-display-none-xl {
    display: none !important;
  }
  .u-display-block-xl {
    display: block !important;
  }
  .u-display-inline-block-xl {
    display: inline-block !important;
  }
  .u-display-flex-xl {
    display: flex !important;
  }
  .u-display-inline-flex-xl {
    display: inline-flex !important;
  }
}
.u-font-size-10 {
  font-size: 1rem !important;
}

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

.u-font-size-12 {
  font-size: 1.2rem !important;
}

.u-font-size-13 {
  font-size: 1.3rem !important;
}

.u-font-size-14 {
  font-size: 1.4rem !important;
}

.u-font-size-15 {
  font-size: 1.5rem !important;
}

.u-font-size-16 {
  font-size: 1.6rem !important;
}

.u-font-size-17 {
  font-size: 1.7rem !important;
}

.u-font-size-18 {
  font-size: 1.8rem !important;
}

.u-font-size-19 {
  font-size: 1.9rem !important;
}

.u-font-size-20 {
  font-size: 2rem !important;
}

.u-font-size-21 {
  font-size: 2.1rem !important;
}

.u-font-size-22 {
  font-size: 2.2rem !important;
}

.u-font-size-23 {
  font-size: 2.3rem !important;
}

.u-font-size-24 {
  font-size: 2.4rem !important;
}

.u-font-size-25 {
  font-size: 2.5rem !important;
}

.u-font-size-26 {
  font-size: 2.6rem !important;
}

.u-font-size-27 {
  font-size: 2.7rem !important;
}

.u-font-size-28 {
  font-size: 2.8rem !important;
}

.u-font-size-29 {
  font-size: 2.9rem !important;
}

.u-font-size-30 {
  font-size: 3rem !important;
}

.u-font-size-xs {
  font-size: 0.8em !important;
}

.u-font-size-sm {
  font-size: 0.9em !important;
}

.u-font-size-md {
  font-size: 1em !important;
}

.u-font-size-lg {
  font-size: 1.1em !important;
}

.u-font-size-xl {
  font-size: 1.2em !important;
}

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

.u-font-weight-bold {
  font-weight: 500 !important;
}

@media screen and (min-width: 768px) {
  .u-font-size-10-md {
    font-size: 1rem !important;
  }
  .u-font-size-11-md {
    font-size: 1.1rem !important;
  }
  .u-font-size-12-md {
    font-size: 1.2rem !important;
  }
  .u-font-size-13-md {
    font-size: 1.3rem !important;
  }
  .u-font-size-14-md {
    font-size: 1.4rem !important;
  }
  .u-font-size-15-md {
    font-size: 1.5rem !important;
  }
  .u-font-size-16-md {
    font-size: 1.6rem !important;
  }
  .u-font-size-17-md {
    font-size: 1.7rem !important;
  }
  .u-font-size-18-md {
    font-size: 1.8rem !important;
  }
  .u-font-size-19-md {
    font-size: 1.9rem !important;
  }
  .u-font-size-20-md {
    font-size: 2rem !important;
  }
  .u-font-size-21-md {
    font-size: 2.1rem !important;
  }
  .u-font-size-22-md {
    font-size: 2.2rem !important;
  }
  .u-font-size-23-md {
    font-size: 2.3rem !important;
  }
  .u-font-size-24-md {
    font-size: 2.4rem !important;
  }
  .u-font-size-25-md {
    font-size: 2.5rem !important;
  }
  .u-font-size-26-md {
    font-size: 2.6rem !important;
  }
  .u-font-size-27-md {
    font-size: 2.7rem !important;
  }
  .u-font-size-28-md {
    font-size: 2.8rem !important;
  }
  .u-font-size-29-md {
    font-size: 2.9rem !important;
  }
  .u-font-size-30-md {
    font-size: 3rem !important;
  }
  .u-font-size-xs-md {
    font-size: 0.8em !important;
  }
  .u-font-size-sm-md {
    font-size: 0.9em !important;
  }
  .u-font-size-md-md {
    font-size: 1em !important;
  }
  .u-font-size-lg-md {
    font-size: 1.1em !important;
  }
  .u-font-size-xl-md {
    font-size: 1.2em !important;
  }
  .u-font-weight-normal-md {
    font-weight: 400 !important;
  }
  .u-font-weight-bold-md {
    font-weight: 500 !important;
  }
}
@media screen and (min-width: 900px) {
  .u-font-size-10-md-x {
    font-size: 1rem !important;
  }
  .u-font-size-11-md-x {
    font-size: 1.1rem !important;
  }
  .u-font-size-12-md-x {
    font-size: 1.2rem !important;
  }
  .u-font-size-13-md-x {
    font-size: 1.3rem !important;
  }
  .u-font-size-14-md-x {
    font-size: 1.4rem !important;
  }
  .u-font-size-15-md-x {
    font-size: 1.5rem !important;
  }
  .u-font-size-16-md-x {
    font-size: 1.6rem !important;
  }
  .u-font-size-17-md-x {
    font-size: 1.7rem !important;
  }
  .u-font-size-18-md-x {
    font-size: 1.8rem !important;
  }
  .u-font-size-19-md-x {
    font-size: 1.9rem !important;
  }
  .u-font-size-20-md-x {
    font-size: 2rem !important;
  }
  .u-font-size-21-md-x {
    font-size: 2.1rem !important;
  }
  .u-font-size-22-md-x {
    font-size: 2.2rem !important;
  }
  .u-font-size-23-md-x {
    font-size: 2.3rem !important;
  }
  .u-font-size-24-md-x {
    font-size: 2.4rem !important;
  }
  .u-font-size-25-md-x {
    font-size: 2.5rem !important;
  }
  .u-font-size-26-md-x {
    font-size: 2.6rem !important;
  }
  .u-font-size-27-md-x {
    font-size: 2.7rem !important;
  }
  .u-font-size-28-md-x {
    font-size: 2.8rem !important;
  }
  .u-font-size-29-md-x {
    font-size: 2.9rem !important;
  }
  .u-font-size-30-md-x {
    font-size: 3rem !important;
  }
  .u-font-size-xs-md-x {
    font-size: 0.8em !important;
  }
  .u-font-size-sm-md-x {
    font-size: 0.9em !important;
  }
  .u-font-size-md-md-x {
    font-size: 1em !important;
  }
  .u-font-size-lg-md-x {
    font-size: 1.1em !important;
  }
  .u-font-size-xl-md-x {
    font-size: 1.2em !important;
  }
  .u-font-weight-normal-md-x {
    font-weight: 400 !important;
  }
  .u-font-weight-bold-md-x {
    font-weight: 500 !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-font-size-10-lg {
    font-size: 1rem !important;
  }
  .u-font-size-11-lg {
    font-size: 1.1rem !important;
  }
  .u-font-size-12-lg {
    font-size: 1.2rem !important;
  }
  .u-font-size-13-lg {
    font-size: 1.3rem !important;
  }
  .u-font-size-14-lg {
    font-size: 1.4rem !important;
  }
  .u-font-size-15-lg {
    font-size: 1.5rem !important;
  }
  .u-font-size-16-lg {
    font-size: 1.6rem !important;
  }
  .u-font-size-17-lg {
    font-size: 1.7rem !important;
  }
  .u-font-size-18-lg {
    font-size: 1.8rem !important;
  }
  .u-font-size-19-lg {
    font-size: 1.9rem !important;
  }
  .u-font-size-20-lg {
    font-size: 2rem !important;
  }
  .u-font-size-21-lg {
    font-size: 2.1rem !important;
  }
  .u-font-size-22-lg {
    font-size: 2.2rem !important;
  }
  .u-font-size-23-lg {
    font-size: 2.3rem !important;
  }
  .u-font-size-24-lg {
    font-size: 2.4rem !important;
  }
  .u-font-size-25-lg {
    font-size: 2.5rem !important;
  }
  .u-font-size-26-lg {
    font-size: 2.6rem !important;
  }
  .u-font-size-27-lg {
    font-size: 2.7rem !important;
  }
  .u-font-size-28-lg {
    font-size: 2.8rem !important;
  }
  .u-font-size-29-lg {
    font-size: 2.9rem !important;
  }
  .u-font-size-30-lg {
    font-size: 3rem !important;
  }
  .u-font-size-xs-lg {
    font-size: 0.8em !important;
  }
  .u-font-size-sm-lg {
    font-size: 0.9em !important;
  }
  .u-font-size-md-lg {
    font-size: 1em !important;
  }
  .u-font-size-lg-lg {
    font-size: 1.1em !important;
  }
  .u-font-size-xl-lg {
    font-size: 1.2em !important;
  }
  .u-font-weight-normal-lg {
    font-weight: 400 !important;
  }
  .u-font-weight-bold-lg {
    font-weight: 500 !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-font-size-10-xl {
    font-size: 1rem !important;
  }
  .u-font-size-11-xl {
    font-size: 1.1rem !important;
  }
  .u-font-size-12-xl {
    font-size: 1.2rem !important;
  }
  .u-font-size-13-xl {
    font-size: 1.3rem !important;
  }
  .u-font-size-14-xl {
    font-size: 1.4rem !important;
  }
  .u-font-size-15-xl {
    font-size: 1.5rem !important;
  }
  .u-font-size-16-xl {
    font-size: 1.6rem !important;
  }
  .u-font-size-17-xl {
    font-size: 1.7rem !important;
  }
  .u-font-size-18-xl {
    font-size: 1.8rem !important;
  }
  .u-font-size-19-xl {
    font-size: 1.9rem !important;
  }
  .u-font-size-20-xl {
    font-size: 2rem !important;
  }
  .u-font-size-21-xl {
    font-size: 2.1rem !important;
  }
  .u-font-size-22-xl {
    font-size: 2.2rem !important;
  }
  .u-font-size-23-xl {
    font-size: 2.3rem !important;
  }
  .u-font-size-24-xl {
    font-size: 2.4rem !important;
  }
  .u-font-size-25-xl {
    font-size: 2.5rem !important;
  }
  .u-font-size-26-xl {
    font-size: 2.6rem !important;
  }
  .u-font-size-27-xl {
    font-size: 2.7rem !important;
  }
  .u-font-size-28-xl {
    font-size: 2.8rem !important;
  }
  .u-font-size-29-xl {
    font-size: 2.9rem !important;
  }
  .u-font-size-30-xl {
    font-size: 3rem !important;
  }
  .u-font-size-xs-xl {
    font-size: 0.8em !important;
  }
  .u-font-size-sm-xl {
    font-size: 0.9em !important;
  }
  .u-font-size-md-xl {
    font-size: 1em !important;
  }
  .u-font-size-lg-xl {
    font-size: 1.1em !important;
  }
  .u-font-size-xl-xl {
    font-size: 1.2em !important;
  }
  .u-font-weight-normal-xl {
    font-weight: 400 !important;
  }
  .u-font-weight-bold-xl {
    font-weight: 500 !important;
  }
}
.u-justify-content-flex-start {
  justify-content: flex-start !important;
}

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

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

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

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

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

@media screen and (min-width: 768px) {
  .u-justify-content-flex-start-md {
    justify-content: flex-start !important;
  }
  .u-justify-content-flex-end-md {
    justify-content: flex-end !important;
  }
  .u-justify-content-center-md {
    justify-content: center !important;
  }
  .u-justify-content-space-between-md {
    justify-content: space-between !important;
  }
  .u-justify-content-space-around-md {
    justify-content: space-around !important;
  }
  .u-justify-content-space-evenly-md {
    justify-content: space-evenly !important;
  }
}
@media screen and (min-width: 900px) {
  .u-justify-content-flex-start-md-x {
    justify-content: flex-start !important;
  }
  .u-justify-content-flex-end-md-x {
    justify-content: flex-end !important;
  }
  .u-justify-content-center-md-x {
    justify-content: center !important;
  }
  .u-justify-content-space-between-md-x {
    justify-content: space-between !important;
  }
  .u-justify-content-space-around-md-x {
    justify-content: space-around !important;
  }
  .u-justify-content-space-evenly-md-x {
    justify-content: space-evenly !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-justify-content-flex-start-lg {
    justify-content: flex-start !important;
  }
  .u-justify-content-flex-end-lg {
    justify-content: flex-end !important;
  }
  .u-justify-content-center-lg {
    justify-content: center !important;
  }
  .u-justify-content-space-between-lg {
    justify-content: space-between !important;
  }
  .u-justify-content-space-around-lg {
    justify-content: space-around !important;
  }
  .u-justify-content-space-evenly-lg {
    justify-content: space-evenly !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-justify-content-flex-start-xl {
    justify-content: flex-start !important;
  }
  .u-justify-content-flex-end-xl {
    justify-content: flex-end !important;
  }
  .u-justify-content-center-xl {
    justify-content: center !important;
  }
  .u-justify-content-space-between-xl {
    justify-content: space-between !important;
  }
  .u-justify-content-space-around-xl {
    justify-content: space-around !important;
  }
  .u-justify-content-space-evenly-xl {
    justify-content: space-evenly !important;
  }
}
.u-mt-auto,
.u-my-auto {
  margin-top: auto !important;
}

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

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

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

.u-m-auto {
  margin: auto !important;
}

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

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

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

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

.u-m-0 {
  margin: 0rem !important;
}

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

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

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

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

.u-m-5 {
  margin: 0.5rem !important;
}

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

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

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

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

.u-m-10 {
  margin: 1rem !important;
}

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

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

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

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

.u-m-15 {
  margin: 1.5rem !important;
}

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

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

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

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

.u-m-20 {
  margin: 2rem !important;
}

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

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

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

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

.u-m-25 {
  margin: 2.5rem !important;
}

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

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

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

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

.u-m-30 {
  margin: 3rem !important;
}

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

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

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

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

.u-m-35 {
  margin: 3.5rem !important;
}

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

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

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

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

.u-m-40 {
  margin: 4rem !important;
}

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

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

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

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

.u-m-45 {
  margin: 4.5rem !important;
}

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

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

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

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

.u-m-50 {
  margin: 5rem !important;
}

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

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

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

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

.u-m-55 {
  margin: 5.5rem !important;
}

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

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

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

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

.u-m-60 {
  margin: 6rem !important;
}

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

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

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

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

.u-m-65 {
  margin: 6.5rem !important;
}

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

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

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

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

.u-m-70 {
  margin: 7rem !important;
}

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

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

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

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

.u-m-75 {
  margin: 7.5rem !important;
}

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

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

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

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

.u-m-80 {
  margin: 8rem !important;
}

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

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

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

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

.u-m-85 {
  margin: 8.5rem !important;
}

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

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

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

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

.u-m-90 {
  margin: 9rem !important;
}

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

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

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

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

.u-m-95 {
  margin: 9.5rem !important;
}

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

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

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

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

.u-m-100 {
  margin: 10rem !important;
}

@media screen and (min-width: 768px) {
  .u-mt-auto-md,
  .u-my-auto-md {
    margin-top: auto !important;
  }
  .u-mb-auto-md,
  .u-my-auto-md {
    margin-bottom: auto !important;
  }
  .u-ml-auto-md,
  .u-mx-auto-md {
    margin-left: auto !important;
  }
  .u-mr-auto-md,
  .u-mx-auto-md {
    margin-right: auto !important;
  }
  .u-m-auto-md {
    margin: auto !important;
  }
  .u-mt-0-md,
  .u-my-0-md {
    margin-top: 0rem !important;
  }
  .u-mb-0-md,
  .u-my-0-md {
    margin-bottom: 0rem !important;
  }
  .u-ml-0-md,
  .u-mx-0-md {
    margin-left: 0rem !important;
  }
  .u-mr-0-md,
  .u-mx-0-md {
    margin-right: 0rem !important;
  }
  .u-m-0-md {
    margin: 0rem !important;
  }
  .u-mt-5-md,
  .u-my-5-md {
    margin-top: 0.5rem !important;
  }
  .u-mb-5-md,
  .u-my-5-md {
    margin-bottom: 0.5rem !important;
  }
  .u-ml-5-md,
  .u-mx-5-md {
    margin-left: 0.5rem !important;
  }
  .u-mr-5-md,
  .u-mx-5-md {
    margin-right: 0.5rem !important;
  }
  .u-m-5-md {
    margin: 0.5rem !important;
  }
  .u-mt-10-md,
  .u-my-10-md {
    margin-top: 1rem !important;
  }
  .u-mb-10-md,
  .u-my-10-md {
    margin-bottom: 1rem !important;
  }
  .u-ml-10-md,
  .u-mx-10-md {
    margin-left: 1rem !important;
  }
  .u-mr-10-md,
  .u-mx-10-md {
    margin-right: 1rem !important;
  }
  .u-m-10-md {
    margin: 1rem !important;
  }
  .u-mt-15-md,
  .u-my-15-md {
    margin-top: 1.5rem !important;
  }
  .u-mb-15-md,
  .u-my-15-md {
    margin-bottom: 1.5rem !important;
  }
  .u-ml-15-md,
  .u-mx-15-md {
    margin-left: 1.5rem !important;
  }
  .u-mr-15-md,
  .u-mx-15-md {
    margin-right: 1.5rem !important;
  }
  .u-m-15-md {
    margin: 1.5rem !important;
  }
  .u-mt-20-md,
  .u-my-20-md {
    margin-top: 2rem !important;
  }
  .u-mb-20-md,
  .u-my-20-md {
    margin-bottom: 2rem !important;
  }
  .u-ml-20-md,
  .u-mx-20-md {
    margin-left: 2rem !important;
  }
  .u-mr-20-md,
  .u-mx-20-md {
    margin-right: 2rem !important;
  }
  .u-m-20-md {
    margin: 2rem !important;
  }
  .u-mt-25-md,
  .u-my-25-md {
    margin-top: 2.5rem !important;
  }
  .u-mb-25-md,
  .u-my-25-md {
    margin-bottom: 2.5rem !important;
  }
  .u-ml-25-md,
  .u-mx-25-md {
    margin-left: 2.5rem !important;
  }
  .u-mr-25-md,
  .u-mx-25-md {
    margin-right: 2.5rem !important;
  }
  .u-m-25-md {
    margin: 2.5rem !important;
  }
  .u-mt-30-md,
  .u-my-30-md {
    margin-top: 3rem !important;
  }
  .u-mb-30-md,
  .u-my-30-md {
    margin-bottom: 3rem !important;
  }
  .u-ml-30-md,
  .u-mx-30-md {
    margin-left: 3rem !important;
  }
  .u-mr-30-md,
  .u-mx-30-md {
    margin-right: 3rem !important;
  }
  .u-m-30-md {
    margin: 3rem !important;
  }
  .u-mt-35-md,
  .u-my-35-md {
    margin-top: 3.5rem !important;
  }
  .u-mb-35-md,
  .u-my-35-md {
    margin-bottom: 3.5rem !important;
  }
  .u-ml-35-md,
  .u-mx-35-md {
    margin-left: 3.5rem !important;
  }
  .u-mr-35-md,
  .u-mx-35-md {
    margin-right: 3.5rem !important;
  }
  .u-m-35-md {
    margin: 3.5rem !important;
  }
  .u-mt-40-md,
  .u-my-40-md {
    margin-top: 4rem !important;
  }
  .u-mb-40-md,
  .u-my-40-md {
    margin-bottom: 4rem !important;
  }
  .u-ml-40-md,
  .u-mx-40-md {
    margin-left: 4rem !important;
  }
  .u-mr-40-md,
  .u-mx-40-md {
    margin-right: 4rem !important;
  }
  .u-m-40-md {
    margin: 4rem !important;
  }
  .u-mt-45-md,
  .u-my-45-md {
    margin-top: 4.5rem !important;
  }
  .u-mb-45-md,
  .u-my-45-md {
    margin-bottom: 4.5rem !important;
  }
  .u-ml-45-md,
  .u-mx-45-md {
    margin-left: 4.5rem !important;
  }
  .u-mr-45-md,
  .u-mx-45-md {
    margin-right: 4.5rem !important;
  }
  .u-m-45-md {
    margin: 4.5rem !important;
  }
  .u-mt-50-md,
  .u-my-50-md {
    margin-top: 5rem !important;
  }
  .u-mb-50-md,
  .u-my-50-md {
    margin-bottom: 5rem !important;
  }
  .u-ml-50-md,
  .u-mx-50-md {
    margin-left: 5rem !important;
  }
  .u-mr-50-md,
  .u-mx-50-md {
    margin-right: 5rem !important;
  }
  .u-m-50-md {
    margin: 5rem !important;
  }
  .u-mt-55-md,
  .u-my-55-md {
    margin-top: 5.5rem !important;
  }
  .u-mb-55-md,
  .u-my-55-md {
    margin-bottom: 5.5rem !important;
  }
  .u-ml-55-md,
  .u-mx-55-md {
    margin-left: 5.5rem !important;
  }
  .u-mr-55-md,
  .u-mx-55-md {
    margin-right: 5.5rem !important;
  }
  .u-m-55-md {
    margin: 5.5rem !important;
  }
  .u-mt-60-md,
  .u-my-60-md {
    margin-top: 6rem !important;
  }
  .u-mb-60-md,
  .u-my-60-md {
    margin-bottom: 6rem !important;
  }
  .u-ml-60-md,
  .u-mx-60-md {
    margin-left: 6rem !important;
  }
  .u-mr-60-md,
  .u-mx-60-md {
    margin-right: 6rem !important;
  }
  .u-m-60-md {
    margin: 6rem !important;
  }
  .u-mt-65-md,
  .u-my-65-md {
    margin-top: 6.5rem !important;
  }
  .u-mb-65-md,
  .u-my-65-md {
    margin-bottom: 6.5rem !important;
  }
  .u-ml-65-md,
  .u-mx-65-md {
    margin-left: 6.5rem !important;
  }
  .u-mr-65-md,
  .u-mx-65-md {
    margin-right: 6.5rem !important;
  }
  .u-m-65-md {
    margin: 6.5rem !important;
  }
  .u-mt-70-md,
  .u-my-70-md {
    margin-top: 7rem !important;
  }
  .u-mb-70-md,
  .u-my-70-md {
    margin-bottom: 7rem !important;
  }
  .u-ml-70-md,
  .u-mx-70-md {
    margin-left: 7rem !important;
  }
  .u-mr-70-md,
  .u-mx-70-md {
    margin-right: 7rem !important;
  }
  .u-m-70-md {
    margin: 7rem !important;
  }
  .u-mt-75-md,
  .u-my-75-md {
    margin-top: 7.5rem !important;
  }
  .u-mb-75-md,
  .u-my-75-md {
    margin-bottom: 7.5rem !important;
  }
  .u-ml-75-md,
  .u-mx-75-md {
    margin-left: 7.5rem !important;
  }
  .u-mr-75-md,
  .u-mx-75-md {
    margin-right: 7.5rem !important;
  }
  .u-m-75-md {
    margin: 7.5rem !important;
  }
  .u-mt-80-md,
  .u-my-80-md {
    margin-top: 8rem !important;
  }
  .u-mb-80-md,
  .u-my-80-md {
    margin-bottom: 8rem !important;
  }
  .u-ml-80-md,
  .u-mx-80-md {
    margin-left: 8rem !important;
  }
  .u-mr-80-md,
  .u-mx-80-md {
    margin-right: 8rem !important;
  }
  .u-m-80-md {
    margin: 8rem !important;
  }
  .u-mt-85-md,
  .u-my-85-md {
    margin-top: 8.5rem !important;
  }
  .u-mb-85-md,
  .u-my-85-md {
    margin-bottom: 8.5rem !important;
  }
  .u-ml-85-md,
  .u-mx-85-md {
    margin-left: 8.5rem !important;
  }
  .u-mr-85-md,
  .u-mx-85-md {
    margin-right: 8.5rem !important;
  }
  .u-m-85-md {
    margin: 8.5rem !important;
  }
  .u-mt-90-md,
  .u-my-90-md {
    margin-top: 9rem !important;
  }
  .u-mb-90-md,
  .u-my-90-md {
    margin-bottom: 9rem !important;
  }
  .u-ml-90-md,
  .u-mx-90-md {
    margin-left: 9rem !important;
  }
  .u-mr-90-md,
  .u-mx-90-md {
    margin-right: 9rem !important;
  }
  .u-m-90-md {
    margin: 9rem !important;
  }
  .u-mt-95-md,
  .u-my-95-md {
    margin-top: 9.5rem !important;
  }
  .u-mb-95-md,
  .u-my-95-md {
    margin-bottom: 9.5rem !important;
  }
  .u-ml-95-md,
  .u-mx-95-md {
    margin-left: 9.5rem !important;
  }
  .u-mr-95-md,
  .u-mx-95-md {
    margin-right: 9.5rem !important;
  }
  .u-m-95-md {
    margin: 9.5rem !important;
  }
  .u-mt-100-md,
  .u-my-100-md {
    margin-top: 10rem !important;
  }
  .u-mb-100-md,
  .u-my-100-md {
    margin-bottom: 10rem !important;
  }
  .u-ml-100-md,
  .u-mx-100-md {
    margin-left: 10rem !important;
  }
  .u-mr-100-md,
  .u-mx-100-md {
    margin-right: 10rem !important;
  }
  .u-m-100-md {
    margin: 10rem !important;
  }
}
@media screen and (min-width: 900px) {
  .u-mt-auto-md-x,
  .u-my-auto-md-x {
    margin-top: auto !important;
  }
  .u-mb-auto-md-x,
  .u-my-auto-md-x {
    margin-bottom: auto !important;
  }
  .u-ml-auto-md-x,
  .u-mx-auto-md-x {
    margin-left: auto !important;
  }
  .u-mr-auto-md-x,
  .u-mx-auto-md-x {
    margin-right: auto !important;
  }
  .u-m-auto-md-x {
    margin: auto !important;
  }
  .u-mt-0-md-x,
  .u-my-0-md-x {
    margin-top: 0rem !important;
  }
  .u-mb-0-md-x,
  .u-my-0-md-x {
    margin-bottom: 0rem !important;
  }
  .u-ml-0-md-x,
  .u-mx-0-md-x {
    margin-left: 0rem !important;
  }
  .u-mr-0-md-x,
  .u-mx-0-md-x {
    margin-right: 0rem !important;
  }
  .u-m-0-md-x {
    margin: 0rem !important;
  }
  .u-mt-5-md-x,
  .u-my-5-md-x {
    margin-top: 0.5rem !important;
  }
  .u-mb-5-md-x,
  .u-my-5-md-x {
    margin-bottom: 0.5rem !important;
  }
  .u-ml-5-md-x,
  .u-mx-5-md-x {
    margin-left: 0.5rem !important;
  }
  .u-mr-5-md-x,
  .u-mx-5-md-x {
    margin-right: 0.5rem !important;
  }
  .u-m-5-md-x {
    margin: 0.5rem !important;
  }
  .u-mt-10-md-x,
  .u-my-10-md-x {
    margin-top: 1rem !important;
  }
  .u-mb-10-md-x,
  .u-my-10-md-x {
    margin-bottom: 1rem !important;
  }
  .u-ml-10-md-x,
  .u-mx-10-md-x {
    margin-left: 1rem !important;
  }
  .u-mr-10-md-x,
  .u-mx-10-md-x {
    margin-right: 1rem !important;
  }
  .u-m-10-md-x {
    margin: 1rem !important;
  }
  .u-mt-15-md-x,
  .u-my-15-md-x {
    margin-top: 1.5rem !important;
  }
  .u-mb-15-md-x,
  .u-my-15-md-x {
    margin-bottom: 1.5rem !important;
  }
  .u-ml-15-md-x,
  .u-mx-15-md-x {
    margin-left: 1.5rem !important;
  }
  .u-mr-15-md-x,
  .u-mx-15-md-x {
    margin-right: 1.5rem !important;
  }
  .u-m-15-md-x {
    margin: 1.5rem !important;
  }
  .u-mt-20-md-x,
  .u-my-20-md-x {
    margin-top: 2rem !important;
  }
  .u-mb-20-md-x,
  .u-my-20-md-x {
    margin-bottom: 2rem !important;
  }
  .u-ml-20-md-x,
  .u-mx-20-md-x {
    margin-left: 2rem !important;
  }
  .u-mr-20-md-x,
  .u-mx-20-md-x {
    margin-right: 2rem !important;
  }
  .u-m-20-md-x {
    margin: 2rem !important;
  }
  .u-mt-25-md-x,
  .u-my-25-md-x {
    margin-top: 2.5rem !important;
  }
  .u-mb-25-md-x,
  .u-my-25-md-x {
    margin-bottom: 2.5rem !important;
  }
  .u-ml-25-md-x,
  .u-mx-25-md-x {
    margin-left: 2.5rem !important;
  }
  .u-mr-25-md-x,
  .u-mx-25-md-x {
    margin-right: 2.5rem !important;
  }
  .u-m-25-md-x {
    margin: 2.5rem !important;
  }
  .u-mt-30-md-x,
  .u-my-30-md-x {
    margin-top: 3rem !important;
  }
  .u-mb-30-md-x,
  .u-my-30-md-x {
    margin-bottom: 3rem !important;
  }
  .u-ml-30-md-x,
  .u-mx-30-md-x {
    margin-left: 3rem !important;
  }
  .u-mr-30-md-x,
  .u-mx-30-md-x {
    margin-right: 3rem !important;
  }
  .u-m-30-md-x {
    margin: 3rem !important;
  }
  .u-mt-35-md-x,
  .u-my-35-md-x {
    margin-top: 3.5rem !important;
  }
  .u-mb-35-md-x,
  .u-my-35-md-x {
    margin-bottom: 3.5rem !important;
  }
  .u-ml-35-md-x,
  .u-mx-35-md-x {
    margin-left: 3.5rem !important;
  }
  .u-mr-35-md-x,
  .u-mx-35-md-x {
    margin-right: 3.5rem !important;
  }
  .u-m-35-md-x {
    margin: 3.5rem !important;
  }
  .u-mt-40-md-x,
  .u-my-40-md-x {
    margin-top: 4rem !important;
  }
  .u-mb-40-md-x,
  .u-my-40-md-x {
    margin-bottom: 4rem !important;
  }
  .u-ml-40-md-x,
  .u-mx-40-md-x {
    margin-left: 4rem !important;
  }
  .u-mr-40-md-x,
  .u-mx-40-md-x {
    margin-right: 4rem !important;
  }
  .u-m-40-md-x {
    margin: 4rem !important;
  }
  .u-mt-45-md-x,
  .u-my-45-md-x {
    margin-top: 4.5rem !important;
  }
  .u-mb-45-md-x,
  .u-my-45-md-x {
    margin-bottom: 4.5rem !important;
  }
  .u-ml-45-md-x,
  .u-mx-45-md-x {
    margin-left: 4.5rem !important;
  }
  .u-mr-45-md-x,
  .u-mx-45-md-x {
    margin-right: 4.5rem !important;
  }
  .u-m-45-md-x {
    margin: 4.5rem !important;
  }
  .u-mt-50-md-x,
  .u-my-50-md-x {
    margin-top: 5rem !important;
  }
  .u-mb-50-md-x,
  .u-my-50-md-x {
    margin-bottom: 5rem !important;
  }
  .u-ml-50-md-x,
  .u-mx-50-md-x {
    margin-left: 5rem !important;
  }
  .u-mr-50-md-x,
  .u-mx-50-md-x {
    margin-right: 5rem !important;
  }
  .u-m-50-md-x {
    margin: 5rem !important;
  }
  .u-mt-55-md-x,
  .u-my-55-md-x {
    margin-top: 5.5rem !important;
  }
  .u-mb-55-md-x,
  .u-my-55-md-x {
    margin-bottom: 5.5rem !important;
  }
  .u-ml-55-md-x,
  .u-mx-55-md-x {
    margin-left: 5.5rem !important;
  }
  .u-mr-55-md-x,
  .u-mx-55-md-x {
    margin-right: 5.5rem !important;
  }
  .u-m-55-md-x {
    margin: 5.5rem !important;
  }
  .u-mt-60-md-x,
  .u-my-60-md-x {
    margin-top: 6rem !important;
  }
  .u-mb-60-md-x,
  .u-my-60-md-x {
    margin-bottom: 6rem !important;
  }
  .u-ml-60-md-x,
  .u-mx-60-md-x {
    margin-left: 6rem !important;
  }
  .u-mr-60-md-x,
  .u-mx-60-md-x {
    margin-right: 6rem !important;
  }
  .u-m-60-md-x {
    margin: 6rem !important;
  }
  .u-mt-65-md-x,
  .u-my-65-md-x {
    margin-top: 6.5rem !important;
  }
  .u-mb-65-md-x,
  .u-my-65-md-x {
    margin-bottom: 6.5rem !important;
  }
  .u-ml-65-md-x,
  .u-mx-65-md-x {
    margin-left: 6.5rem !important;
  }
  .u-mr-65-md-x,
  .u-mx-65-md-x {
    margin-right: 6.5rem !important;
  }
  .u-m-65-md-x {
    margin: 6.5rem !important;
  }
  .u-mt-70-md-x,
  .u-my-70-md-x {
    margin-top: 7rem !important;
  }
  .u-mb-70-md-x,
  .u-my-70-md-x {
    margin-bottom: 7rem !important;
  }
  .u-ml-70-md-x,
  .u-mx-70-md-x {
    margin-left: 7rem !important;
  }
  .u-mr-70-md-x,
  .u-mx-70-md-x {
    margin-right: 7rem !important;
  }
  .u-m-70-md-x {
    margin: 7rem !important;
  }
  .u-mt-75-md-x,
  .u-my-75-md-x {
    margin-top: 7.5rem !important;
  }
  .u-mb-75-md-x,
  .u-my-75-md-x {
    margin-bottom: 7.5rem !important;
  }
  .u-ml-75-md-x,
  .u-mx-75-md-x {
    margin-left: 7.5rem !important;
  }
  .u-mr-75-md-x,
  .u-mx-75-md-x {
    margin-right: 7.5rem !important;
  }
  .u-m-75-md-x {
    margin: 7.5rem !important;
  }
  .u-mt-80-md-x,
  .u-my-80-md-x {
    margin-top: 8rem !important;
  }
  .u-mb-80-md-x,
  .u-my-80-md-x {
    margin-bottom: 8rem !important;
  }
  .u-ml-80-md-x,
  .u-mx-80-md-x {
    margin-left: 8rem !important;
  }
  .u-mr-80-md-x,
  .u-mx-80-md-x {
    margin-right: 8rem !important;
  }
  .u-m-80-md-x {
    margin: 8rem !important;
  }
  .u-mt-85-md-x,
  .u-my-85-md-x {
    margin-top: 8.5rem !important;
  }
  .u-mb-85-md-x,
  .u-my-85-md-x {
    margin-bottom: 8.5rem !important;
  }
  .u-ml-85-md-x,
  .u-mx-85-md-x {
    margin-left: 8.5rem !important;
  }
  .u-mr-85-md-x,
  .u-mx-85-md-x {
    margin-right: 8.5rem !important;
  }
  .u-m-85-md-x {
    margin: 8.5rem !important;
  }
  .u-mt-90-md-x,
  .u-my-90-md-x {
    margin-top: 9rem !important;
  }
  .u-mb-90-md-x,
  .u-my-90-md-x {
    margin-bottom: 9rem !important;
  }
  .u-ml-90-md-x,
  .u-mx-90-md-x {
    margin-left: 9rem !important;
  }
  .u-mr-90-md-x,
  .u-mx-90-md-x {
    margin-right: 9rem !important;
  }
  .u-m-90-md-x {
    margin: 9rem !important;
  }
  .u-mt-95-md-x,
  .u-my-95-md-x {
    margin-top: 9.5rem !important;
  }
  .u-mb-95-md-x,
  .u-my-95-md-x {
    margin-bottom: 9.5rem !important;
  }
  .u-ml-95-md-x,
  .u-mx-95-md-x {
    margin-left: 9.5rem !important;
  }
  .u-mr-95-md-x,
  .u-mx-95-md-x {
    margin-right: 9.5rem !important;
  }
  .u-m-95-md-x {
    margin: 9.5rem !important;
  }
  .u-mt-100-md-x,
  .u-my-100-md-x {
    margin-top: 10rem !important;
  }
  .u-mb-100-md-x,
  .u-my-100-md-x {
    margin-bottom: 10rem !important;
  }
  .u-ml-100-md-x,
  .u-mx-100-md-x {
    margin-left: 10rem !important;
  }
  .u-mr-100-md-x,
  .u-mx-100-md-x {
    margin-right: 10rem !important;
  }
  .u-m-100-md-x {
    margin: 10rem !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-mt-auto-lg,
  .u-my-auto-lg {
    margin-top: auto !important;
  }
  .u-mb-auto-lg,
  .u-my-auto-lg {
    margin-bottom: auto !important;
  }
  .u-ml-auto-lg,
  .u-mx-auto-lg {
    margin-left: auto !important;
  }
  .u-mr-auto-lg,
  .u-mx-auto-lg {
    margin-right: auto !important;
  }
  .u-m-auto-lg {
    margin: auto !important;
  }
  .u-mt-0-lg,
  .u-my-0-lg {
    margin-top: 0rem !important;
  }
  .u-mb-0-lg,
  .u-my-0-lg {
    margin-bottom: 0rem !important;
  }
  .u-ml-0-lg,
  .u-mx-0-lg {
    margin-left: 0rem !important;
  }
  .u-mr-0-lg,
  .u-mx-0-lg {
    margin-right: 0rem !important;
  }
  .u-m-0-lg {
    margin: 0rem !important;
  }
  .u-mt-5-lg,
  .u-my-5-lg {
    margin-top: 0.5rem !important;
  }
  .u-mb-5-lg,
  .u-my-5-lg {
    margin-bottom: 0.5rem !important;
  }
  .u-ml-5-lg,
  .u-mx-5-lg {
    margin-left: 0.5rem !important;
  }
  .u-mr-5-lg,
  .u-mx-5-lg {
    margin-right: 0.5rem !important;
  }
  .u-m-5-lg {
    margin: 0.5rem !important;
  }
  .u-mt-10-lg,
  .u-my-10-lg {
    margin-top: 1rem !important;
  }
  .u-mb-10-lg,
  .u-my-10-lg {
    margin-bottom: 1rem !important;
  }
  .u-ml-10-lg,
  .u-mx-10-lg {
    margin-left: 1rem !important;
  }
  .u-mr-10-lg,
  .u-mx-10-lg {
    margin-right: 1rem !important;
  }
  .u-m-10-lg {
    margin: 1rem !important;
  }
  .u-mt-15-lg,
  .u-my-15-lg {
    margin-top: 1.5rem !important;
  }
  .u-mb-15-lg,
  .u-my-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .u-ml-15-lg,
  .u-mx-15-lg {
    margin-left: 1.5rem !important;
  }
  .u-mr-15-lg,
  .u-mx-15-lg {
    margin-right: 1.5rem !important;
  }
  .u-m-15-lg {
    margin: 1.5rem !important;
  }
  .u-mt-20-lg,
  .u-my-20-lg {
    margin-top: 2rem !important;
  }
  .u-mb-20-lg,
  .u-my-20-lg {
    margin-bottom: 2rem !important;
  }
  .u-ml-20-lg,
  .u-mx-20-lg {
    margin-left: 2rem !important;
  }
  .u-mr-20-lg,
  .u-mx-20-lg {
    margin-right: 2rem !important;
  }
  .u-m-20-lg {
    margin: 2rem !important;
  }
  .u-mt-25-lg,
  .u-my-25-lg {
    margin-top: 2.5rem !important;
  }
  .u-mb-25-lg,
  .u-my-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .u-ml-25-lg,
  .u-mx-25-lg {
    margin-left: 2.5rem !important;
  }
  .u-mr-25-lg,
  .u-mx-25-lg {
    margin-right: 2.5rem !important;
  }
  .u-m-25-lg {
    margin: 2.5rem !important;
  }
  .u-mt-30-lg,
  .u-my-30-lg {
    margin-top: 3rem !important;
  }
  .u-mb-30-lg,
  .u-my-30-lg {
    margin-bottom: 3rem !important;
  }
  .u-ml-30-lg,
  .u-mx-30-lg {
    margin-left: 3rem !important;
  }
  .u-mr-30-lg,
  .u-mx-30-lg {
    margin-right: 3rem !important;
  }
  .u-m-30-lg {
    margin: 3rem !important;
  }
  .u-mt-35-lg,
  .u-my-35-lg {
    margin-top: 3.5rem !important;
  }
  .u-mb-35-lg,
  .u-my-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .u-ml-35-lg,
  .u-mx-35-lg {
    margin-left: 3.5rem !important;
  }
  .u-mr-35-lg,
  .u-mx-35-lg {
    margin-right: 3.5rem !important;
  }
  .u-m-35-lg {
    margin: 3.5rem !important;
  }
  .u-mt-40-lg,
  .u-my-40-lg {
    margin-top: 4rem !important;
  }
  .u-mb-40-lg,
  .u-my-40-lg {
    margin-bottom: 4rem !important;
  }
  .u-ml-40-lg,
  .u-mx-40-lg {
    margin-left: 4rem !important;
  }
  .u-mr-40-lg,
  .u-mx-40-lg {
    margin-right: 4rem !important;
  }
  .u-m-40-lg {
    margin: 4rem !important;
  }
  .u-mt-45-lg,
  .u-my-45-lg {
    margin-top: 4.5rem !important;
  }
  .u-mb-45-lg,
  .u-my-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .u-ml-45-lg,
  .u-mx-45-lg {
    margin-left: 4.5rem !important;
  }
  .u-mr-45-lg,
  .u-mx-45-lg {
    margin-right: 4.5rem !important;
  }
  .u-m-45-lg {
    margin: 4.5rem !important;
  }
  .u-mt-50-lg,
  .u-my-50-lg {
    margin-top: 5rem !important;
  }
  .u-mb-50-lg,
  .u-my-50-lg {
    margin-bottom: 5rem !important;
  }
  .u-ml-50-lg,
  .u-mx-50-lg {
    margin-left: 5rem !important;
  }
  .u-mr-50-lg,
  .u-mx-50-lg {
    margin-right: 5rem !important;
  }
  .u-m-50-lg {
    margin: 5rem !important;
  }
  .u-mt-55-lg,
  .u-my-55-lg {
    margin-top: 5.5rem !important;
  }
  .u-mb-55-lg,
  .u-my-55-lg {
    margin-bottom: 5.5rem !important;
  }
  .u-ml-55-lg,
  .u-mx-55-lg {
    margin-left: 5.5rem !important;
  }
  .u-mr-55-lg,
  .u-mx-55-lg {
    margin-right: 5.5rem !important;
  }
  .u-m-55-lg {
    margin: 5.5rem !important;
  }
  .u-mt-60-lg,
  .u-my-60-lg {
    margin-top: 6rem !important;
  }
  .u-mb-60-lg,
  .u-my-60-lg {
    margin-bottom: 6rem !important;
  }
  .u-ml-60-lg,
  .u-mx-60-lg {
    margin-left: 6rem !important;
  }
  .u-mr-60-lg,
  .u-mx-60-lg {
    margin-right: 6rem !important;
  }
  .u-m-60-lg {
    margin: 6rem !important;
  }
  .u-mt-65-lg,
  .u-my-65-lg {
    margin-top: 6.5rem !important;
  }
  .u-mb-65-lg,
  .u-my-65-lg {
    margin-bottom: 6.5rem !important;
  }
  .u-ml-65-lg,
  .u-mx-65-lg {
    margin-left: 6.5rem !important;
  }
  .u-mr-65-lg,
  .u-mx-65-lg {
    margin-right: 6.5rem !important;
  }
  .u-m-65-lg {
    margin: 6.5rem !important;
  }
  .u-mt-70-lg,
  .u-my-70-lg {
    margin-top: 7rem !important;
  }
  .u-mb-70-lg,
  .u-my-70-lg {
    margin-bottom: 7rem !important;
  }
  .u-ml-70-lg,
  .u-mx-70-lg {
    margin-left: 7rem !important;
  }
  .u-mr-70-lg,
  .u-mx-70-lg {
    margin-right: 7rem !important;
  }
  .u-m-70-lg {
    margin: 7rem !important;
  }
  .u-mt-75-lg,
  .u-my-75-lg {
    margin-top: 7.5rem !important;
  }
  .u-mb-75-lg,
  .u-my-75-lg {
    margin-bottom: 7.5rem !important;
  }
  .u-ml-75-lg,
  .u-mx-75-lg {
    margin-left: 7.5rem !important;
  }
  .u-mr-75-lg,
  .u-mx-75-lg {
    margin-right: 7.5rem !important;
  }
  .u-m-75-lg {
    margin: 7.5rem !important;
  }
  .u-mt-80-lg,
  .u-my-80-lg {
    margin-top: 8rem !important;
  }
  .u-mb-80-lg,
  .u-my-80-lg {
    margin-bottom: 8rem !important;
  }
  .u-ml-80-lg,
  .u-mx-80-lg {
    margin-left: 8rem !important;
  }
  .u-mr-80-lg,
  .u-mx-80-lg {
    margin-right: 8rem !important;
  }
  .u-m-80-lg {
    margin: 8rem !important;
  }
  .u-mt-85-lg,
  .u-my-85-lg {
    margin-top: 8.5rem !important;
  }
  .u-mb-85-lg,
  .u-my-85-lg {
    margin-bottom: 8.5rem !important;
  }
  .u-ml-85-lg,
  .u-mx-85-lg {
    margin-left: 8.5rem !important;
  }
  .u-mr-85-lg,
  .u-mx-85-lg {
    margin-right: 8.5rem !important;
  }
  .u-m-85-lg {
    margin: 8.5rem !important;
  }
  .u-mt-90-lg,
  .u-my-90-lg {
    margin-top: 9rem !important;
  }
  .u-mb-90-lg,
  .u-my-90-lg {
    margin-bottom: 9rem !important;
  }
  .u-ml-90-lg,
  .u-mx-90-lg {
    margin-left: 9rem !important;
  }
  .u-mr-90-lg,
  .u-mx-90-lg {
    margin-right: 9rem !important;
  }
  .u-m-90-lg {
    margin: 9rem !important;
  }
  .u-mt-95-lg,
  .u-my-95-lg {
    margin-top: 9.5rem !important;
  }
  .u-mb-95-lg,
  .u-my-95-lg {
    margin-bottom: 9.5rem !important;
  }
  .u-ml-95-lg,
  .u-mx-95-lg {
    margin-left: 9.5rem !important;
  }
  .u-mr-95-lg,
  .u-mx-95-lg {
    margin-right: 9.5rem !important;
  }
  .u-m-95-lg {
    margin: 9.5rem !important;
  }
  .u-mt-100-lg,
  .u-my-100-lg {
    margin-top: 10rem !important;
  }
  .u-mb-100-lg,
  .u-my-100-lg {
    margin-bottom: 10rem !important;
  }
  .u-ml-100-lg,
  .u-mx-100-lg {
    margin-left: 10rem !important;
  }
  .u-mr-100-lg,
  .u-mx-100-lg {
    margin-right: 10rem !important;
  }
  .u-m-100-lg {
    margin: 10rem !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-mt-auto-xl,
  .u-my-auto-xl {
    margin-top: auto !important;
  }
  .u-mb-auto-xl,
  .u-my-auto-xl {
    margin-bottom: auto !important;
  }
  .u-ml-auto-xl,
  .u-mx-auto-xl {
    margin-left: auto !important;
  }
  .u-mr-auto-xl,
  .u-mx-auto-xl {
    margin-right: auto !important;
  }
  .u-m-auto-xl {
    margin: auto !important;
  }
  .u-mt-0-xl,
  .u-my-0-xl {
    margin-top: 0rem !important;
  }
  .u-mb-0-xl,
  .u-my-0-xl {
    margin-bottom: 0rem !important;
  }
  .u-ml-0-xl,
  .u-mx-0-xl {
    margin-left: 0rem !important;
  }
  .u-mr-0-xl,
  .u-mx-0-xl {
    margin-right: 0rem !important;
  }
  .u-m-0-xl {
    margin: 0rem !important;
  }
  .u-mt-5-xl,
  .u-my-5-xl {
    margin-top: 0.5rem !important;
  }
  .u-mb-5-xl,
  .u-my-5-xl {
    margin-bottom: 0.5rem !important;
  }
  .u-ml-5-xl,
  .u-mx-5-xl {
    margin-left: 0.5rem !important;
  }
  .u-mr-5-xl,
  .u-mx-5-xl {
    margin-right: 0.5rem !important;
  }
  .u-m-5-xl {
    margin: 0.5rem !important;
  }
  .u-mt-10-xl,
  .u-my-10-xl {
    margin-top: 1rem !important;
  }
  .u-mb-10-xl,
  .u-my-10-xl {
    margin-bottom: 1rem !important;
  }
  .u-ml-10-xl,
  .u-mx-10-xl {
    margin-left: 1rem !important;
  }
  .u-mr-10-xl,
  .u-mx-10-xl {
    margin-right: 1rem !important;
  }
  .u-m-10-xl {
    margin: 1rem !important;
  }
  .u-mt-15-xl,
  .u-my-15-xl {
    margin-top: 1.5rem !important;
  }
  .u-mb-15-xl,
  .u-my-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .u-ml-15-xl,
  .u-mx-15-xl {
    margin-left: 1.5rem !important;
  }
  .u-mr-15-xl,
  .u-mx-15-xl {
    margin-right: 1.5rem !important;
  }
  .u-m-15-xl {
    margin: 1.5rem !important;
  }
  .u-mt-20-xl,
  .u-my-20-xl {
    margin-top: 2rem !important;
  }
  .u-mb-20-xl,
  .u-my-20-xl {
    margin-bottom: 2rem !important;
  }
  .u-ml-20-xl,
  .u-mx-20-xl {
    margin-left: 2rem !important;
  }
  .u-mr-20-xl,
  .u-mx-20-xl {
    margin-right: 2rem !important;
  }
  .u-m-20-xl {
    margin: 2rem !important;
  }
  .u-mt-25-xl,
  .u-my-25-xl {
    margin-top: 2.5rem !important;
  }
  .u-mb-25-xl,
  .u-my-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .u-ml-25-xl,
  .u-mx-25-xl {
    margin-left: 2.5rem !important;
  }
  .u-mr-25-xl,
  .u-mx-25-xl {
    margin-right: 2.5rem !important;
  }
  .u-m-25-xl {
    margin: 2.5rem !important;
  }
  .u-mt-30-xl,
  .u-my-30-xl {
    margin-top: 3rem !important;
  }
  .u-mb-30-xl,
  .u-my-30-xl {
    margin-bottom: 3rem !important;
  }
  .u-ml-30-xl,
  .u-mx-30-xl {
    margin-left: 3rem !important;
  }
  .u-mr-30-xl,
  .u-mx-30-xl {
    margin-right: 3rem !important;
  }
  .u-m-30-xl {
    margin: 3rem !important;
  }
  .u-mt-35-xl,
  .u-my-35-xl {
    margin-top: 3.5rem !important;
  }
  .u-mb-35-xl,
  .u-my-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .u-ml-35-xl,
  .u-mx-35-xl {
    margin-left: 3.5rem !important;
  }
  .u-mr-35-xl,
  .u-mx-35-xl {
    margin-right: 3.5rem !important;
  }
  .u-m-35-xl {
    margin: 3.5rem !important;
  }
  .u-mt-40-xl,
  .u-my-40-xl {
    margin-top: 4rem !important;
  }
  .u-mb-40-xl,
  .u-my-40-xl {
    margin-bottom: 4rem !important;
  }
  .u-ml-40-xl,
  .u-mx-40-xl {
    margin-left: 4rem !important;
  }
  .u-mr-40-xl,
  .u-mx-40-xl {
    margin-right: 4rem !important;
  }
  .u-m-40-xl {
    margin: 4rem !important;
  }
  .u-mt-45-xl,
  .u-my-45-xl {
    margin-top: 4.5rem !important;
  }
  .u-mb-45-xl,
  .u-my-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .u-ml-45-xl,
  .u-mx-45-xl {
    margin-left: 4.5rem !important;
  }
  .u-mr-45-xl,
  .u-mx-45-xl {
    margin-right: 4.5rem !important;
  }
  .u-m-45-xl {
    margin: 4.5rem !important;
  }
  .u-mt-50-xl,
  .u-my-50-xl {
    margin-top: 5rem !important;
  }
  .u-mb-50-xl,
  .u-my-50-xl {
    margin-bottom: 5rem !important;
  }
  .u-ml-50-xl,
  .u-mx-50-xl {
    margin-left: 5rem !important;
  }
  .u-mr-50-xl,
  .u-mx-50-xl {
    margin-right: 5rem !important;
  }
  .u-m-50-xl {
    margin: 5rem !important;
  }
  .u-mt-55-xl,
  .u-my-55-xl {
    margin-top: 5.5rem !important;
  }
  .u-mb-55-xl,
  .u-my-55-xl {
    margin-bottom: 5.5rem !important;
  }
  .u-ml-55-xl,
  .u-mx-55-xl {
    margin-left: 5.5rem !important;
  }
  .u-mr-55-xl,
  .u-mx-55-xl {
    margin-right: 5.5rem !important;
  }
  .u-m-55-xl {
    margin: 5.5rem !important;
  }
  .u-mt-60-xl,
  .u-my-60-xl {
    margin-top: 6rem !important;
  }
  .u-mb-60-xl,
  .u-my-60-xl {
    margin-bottom: 6rem !important;
  }
  .u-ml-60-xl,
  .u-mx-60-xl {
    margin-left: 6rem !important;
  }
  .u-mr-60-xl,
  .u-mx-60-xl {
    margin-right: 6rem !important;
  }
  .u-m-60-xl {
    margin: 6rem !important;
  }
  .u-mt-65-xl,
  .u-my-65-xl {
    margin-top: 6.5rem !important;
  }
  .u-mb-65-xl,
  .u-my-65-xl {
    margin-bottom: 6.5rem !important;
  }
  .u-ml-65-xl,
  .u-mx-65-xl {
    margin-left: 6.5rem !important;
  }
  .u-mr-65-xl,
  .u-mx-65-xl {
    margin-right: 6.5rem !important;
  }
  .u-m-65-xl {
    margin: 6.5rem !important;
  }
  .u-mt-70-xl,
  .u-my-70-xl {
    margin-top: 7rem !important;
  }
  .u-mb-70-xl,
  .u-my-70-xl {
    margin-bottom: 7rem !important;
  }
  .u-ml-70-xl,
  .u-mx-70-xl {
    margin-left: 7rem !important;
  }
  .u-mr-70-xl,
  .u-mx-70-xl {
    margin-right: 7rem !important;
  }
  .u-m-70-xl {
    margin: 7rem !important;
  }
  .u-mt-75-xl,
  .u-my-75-xl {
    margin-top: 7.5rem !important;
  }
  .u-mb-75-xl,
  .u-my-75-xl {
    margin-bottom: 7.5rem !important;
  }
  .u-ml-75-xl,
  .u-mx-75-xl {
    margin-left: 7.5rem !important;
  }
  .u-mr-75-xl,
  .u-mx-75-xl {
    margin-right: 7.5rem !important;
  }
  .u-m-75-xl {
    margin: 7.5rem !important;
  }
  .u-mt-80-xl,
  .u-my-80-xl {
    margin-top: 8rem !important;
  }
  .u-mb-80-xl,
  .u-my-80-xl {
    margin-bottom: 8rem !important;
  }
  .u-ml-80-xl,
  .u-mx-80-xl {
    margin-left: 8rem !important;
  }
  .u-mr-80-xl,
  .u-mx-80-xl {
    margin-right: 8rem !important;
  }
  .u-m-80-xl {
    margin: 8rem !important;
  }
  .u-mt-85-xl,
  .u-my-85-xl {
    margin-top: 8.5rem !important;
  }
  .u-mb-85-xl,
  .u-my-85-xl {
    margin-bottom: 8.5rem !important;
  }
  .u-ml-85-xl,
  .u-mx-85-xl {
    margin-left: 8.5rem !important;
  }
  .u-mr-85-xl,
  .u-mx-85-xl {
    margin-right: 8.5rem !important;
  }
  .u-m-85-xl {
    margin: 8.5rem !important;
  }
  .u-mt-90-xl,
  .u-my-90-xl {
    margin-top: 9rem !important;
  }
  .u-mb-90-xl,
  .u-my-90-xl {
    margin-bottom: 9rem !important;
  }
  .u-ml-90-xl,
  .u-mx-90-xl {
    margin-left: 9rem !important;
  }
  .u-mr-90-xl,
  .u-mx-90-xl {
    margin-right: 9rem !important;
  }
  .u-m-90-xl {
    margin: 9rem !important;
  }
  .u-mt-95-xl,
  .u-my-95-xl {
    margin-top: 9.5rem !important;
  }
  .u-mb-95-xl,
  .u-my-95-xl {
    margin-bottom: 9.5rem !important;
  }
  .u-ml-95-xl,
  .u-mx-95-xl {
    margin-left: 9.5rem !important;
  }
  .u-mr-95-xl,
  .u-mx-95-xl {
    margin-right: 9.5rem !important;
  }
  .u-m-95-xl {
    margin: 9.5rem !important;
  }
  .u-mt-100-xl,
  .u-my-100-xl {
    margin-top: 10rem !important;
  }
  .u-mb-100-xl,
  .u-my-100-xl {
    margin-bottom: 10rem !important;
  }
  .u-ml-100-xl,
  .u-mx-100-xl {
    margin-left: 10rem !important;
  }
  .u-mr-100-xl,
  .u-mx-100-xl {
    margin-right: 10rem !important;
  }
  .u-m-100-xl {
    margin: 10rem !important;
  }
}
.u-pt-0,
.u-py-0 {
  padding-top: 0rem !important;
}

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

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

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

.u-p-0 {
  padding: 0rem !important;
}

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

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

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

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

.u-p-5 {
  padding: 0.5rem !important;
}

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

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

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

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

.u-p-10 {
  padding: 1rem !important;
}

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

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

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

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

.u-p-15 {
  padding: 1.5rem !important;
}

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

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

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

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

.u-p-20 {
  padding: 2rem !important;
}

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

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

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

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

.u-p-25 {
  padding: 2.5rem !important;
}

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

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

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

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

.u-p-30 {
  padding: 3rem !important;
}

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

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

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

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

.u-p-35 {
  padding: 3.5rem !important;
}

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

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

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

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

.u-p-40 {
  padding: 4rem !important;
}

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

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

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

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

.u-p-45 {
  padding: 4.5rem !important;
}

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

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

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

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

.u-p-50 {
  padding: 5rem !important;
}

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

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

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

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

.u-p-55 {
  padding: 5.5rem !important;
}

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

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

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

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

.u-p-60 {
  padding: 6rem !important;
}

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

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

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

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

.u-p-65 {
  padding: 6.5rem !important;
}

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

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

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

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

.u-p-70 {
  padding: 7rem !important;
}

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

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

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

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

.u-p-75 {
  padding: 7.5rem !important;
}

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

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

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

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

.u-p-80 {
  padding: 8rem !important;
}

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

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

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

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

.u-p-85 {
  padding: 8.5rem !important;
}

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

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

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

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

.u-p-90 {
  padding: 9rem !important;
}

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

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

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

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

.u-p-95 {
  padding: 9.5rem !important;
}

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

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

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

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

.u-p-100 {
  padding: 10rem !important;
}

@media screen and (min-width: 768px) {
  .u-pt-0-md,
  .u-py-0-md {
    padding-top: 0rem !important;
  }
  .u-pb-0-md,
  .u-py-0-md {
    padding-bottom: 0rem !important;
  }
  .u-pl-0-md,
  .u-px-0-md {
    padding-left: 0rem !important;
  }
  .u-pr-0-md,
  .u-px-0-md {
    padding-right: 0rem !important;
  }
  .u-p-0-md {
    padding: 0rem !important;
  }
  .u-pt-5-md,
  .u-py-5-md {
    padding-top: 0.5rem !important;
  }
  .u-pb-5-md,
  .u-py-5-md {
    padding-bottom: 0.5rem !important;
  }
  .u-pl-5-md,
  .u-px-5-md {
    padding-left: 0.5rem !important;
  }
  .u-pr-5-md,
  .u-px-5-md {
    padding-right: 0.5rem !important;
  }
  .u-p-5-md {
    padding: 0.5rem !important;
  }
  .u-pt-10-md,
  .u-py-10-md {
    padding-top: 1rem !important;
  }
  .u-pb-10-md,
  .u-py-10-md {
    padding-bottom: 1rem !important;
  }
  .u-pl-10-md,
  .u-px-10-md {
    padding-left: 1rem !important;
  }
  .u-pr-10-md,
  .u-px-10-md {
    padding-right: 1rem !important;
  }
  .u-p-10-md {
    padding: 1rem !important;
  }
  .u-pt-15-md,
  .u-py-15-md {
    padding-top: 1.5rem !important;
  }
  .u-pb-15-md,
  .u-py-15-md {
    padding-bottom: 1.5rem !important;
  }
  .u-pl-15-md,
  .u-px-15-md {
    padding-left: 1.5rem !important;
  }
  .u-pr-15-md,
  .u-px-15-md {
    padding-right: 1.5rem !important;
  }
  .u-p-15-md {
    padding: 1.5rem !important;
  }
  .u-pt-20-md,
  .u-py-20-md {
    padding-top: 2rem !important;
  }
  .u-pb-20-md,
  .u-py-20-md {
    padding-bottom: 2rem !important;
  }
  .u-pl-20-md,
  .u-px-20-md {
    padding-left: 2rem !important;
  }
  .u-pr-20-md,
  .u-px-20-md {
    padding-right: 2rem !important;
  }
  .u-p-20-md {
    padding: 2rem !important;
  }
  .u-pt-25-md,
  .u-py-25-md {
    padding-top: 2.5rem !important;
  }
  .u-pb-25-md,
  .u-py-25-md {
    padding-bottom: 2.5rem !important;
  }
  .u-pl-25-md,
  .u-px-25-md {
    padding-left: 2.5rem !important;
  }
  .u-pr-25-md,
  .u-px-25-md {
    padding-right: 2.5rem !important;
  }
  .u-p-25-md {
    padding: 2.5rem !important;
  }
  .u-pt-30-md,
  .u-py-30-md {
    padding-top: 3rem !important;
  }
  .u-pb-30-md,
  .u-py-30-md {
    padding-bottom: 3rem !important;
  }
  .u-pl-30-md,
  .u-px-30-md {
    padding-left: 3rem !important;
  }
  .u-pr-30-md,
  .u-px-30-md {
    padding-right: 3rem !important;
  }
  .u-p-30-md {
    padding: 3rem !important;
  }
  .u-pt-35-md,
  .u-py-35-md {
    padding-top: 3.5rem !important;
  }
  .u-pb-35-md,
  .u-py-35-md {
    padding-bottom: 3.5rem !important;
  }
  .u-pl-35-md,
  .u-px-35-md {
    padding-left: 3.5rem !important;
  }
  .u-pr-35-md,
  .u-px-35-md {
    padding-right: 3.5rem !important;
  }
  .u-p-35-md {
    padding: 3.5rem !important;
  }
  .u-pt-40-md,
  .u-py-40-md {
    padding-top: 4rem !important;
  }
  .u-pb-40-md,
  .u-py-40-md {
    padding-bottom: 4rem !important;
  }
  .u-pl-40-md,
  .u-px-40-md {
    padding-left: 4rem !important;
  }
  .u-pr-40-md,
  .u-px-40-md {
    padding-right: 4rem !important;
  }
  .u-p-40-md {
    padding: 4rem !important;
  }
  .u-pt-45-md,
  .u-py-45-md {
    padding-top: 4.5rem !important;
  }
  .u-pb-45-md,
  .u-py-45-md {
    padding-bottom: 4.5rem !important;
  }
  .u-pl-45-md,
  .u-px-45-md {
    padding-left: 4.5rem !important;
  }
  .u-pr-45-md,
  .u-px-45-md {
    padding-right: 4.5rem !important;
  }
  .u-p-45-md {
    padding: 4.5rem !important;
  }
  .u-pt-50-md,
  .u-py-50-md {
    padding-top: 5rem !important;
  }
  .u-pb-50-md,
  .u-py-50-md {
    padding-bottom: 5rem !important;
  }
  .u-pl-50-md,
  .u-px-50-md {
    padding-left: 5rem !important;
  }
  .u-pr-50-md,
  .u-px-50-md {
    padding-right: 5rem !important;
  }
  .u-p-50-md {
    padding: 5rem !important;
  }
  .u-pt-55-md,
  .u-py-55-md {
    padding-top: 5.5rem !important;
  }
  .u-pb-55-md,
  .u-py-55-md {
    padding-bottom: 5.5rem !important;
  }
  .u-pl-55-md,
  .u-px-55-md {
    padding-left: 5.5rem !important;
  }
  .u-pr-55-md,
  .u-px-55-md {
    padding-right: 5.5rem !important;
  }
  .u-p-55-md {
    padding: 5.5rem !important;
  }
  .u-pt-60-md,
  .u-py-60-md {
    padding-top: 6rem !important;
  }
  .u-pb-60-md,
  .u-py-60-md {
    padding-bottom: 6rem !important;
  }
  .u-pl-60-md,
  .u-px-60-md {
    padding-left: 6rem !important;
  }
  .u-pr-60-md,
  .u-px-60-md {
    padding-right: 6rem !important;
  }
  .u-p-60-md {
    padding: 6rem !important;
  }
  .u-pt-65-md,
  .u-py-65-md {
    padding-top: 6.5rem !important;
  }
  .u-pb-65-md,
  .u-py-65-md {
    padding-bottom: 6.5rem !important;
  }
  .u-pl-65-md,
  .u-px-65-md {
    padding-left: 6.5rem !important;
  }
  .u-pr-65-md,
  .u-px-65-md {
    padding-right: 6.5rem !important;
  }
  .u-p-65-md {
    padding: 6.5rem !important;
  }
  .u-pt-70-md,
  .u-py-70-md {
    padding-top: 7rem !important;
  }
  .u-pb-70-md,
  .u-py-70-md {
    padding-bottom: 7rem !important;
  }
  .u-pl-70-md,
  .u-px-70-md {
    padding-left: 7rem !important;
  }
  .u-pr-70-md,
  .u-px-70-md {
    padding-right: 7rem !important;
  }
  .u-p-70-md {
    padding: 7rem !important;
  }
  .u-pt-75-md,
  .u-py-75-md {
    padding-top: 7.5rem !important;
  }
  .u-pb-75-md,
  .u-py-75-md {
    padding-bottom: 7.5rem !important;
  }
  .u-pl-75-md,
  .u-px-75-md {
    padding-left: 7.5rem !important;
  }
  .u-pr-75-md,
  .u-px-75-md {
    padding-right: 7.5rem !important;
  }
  .u-p-75-md {
    padding: 7.5rem !important;
  }
  .u-pt-80-md,
  .u-py-80-md {
    padding-top: 8rem !important;
  }
  .u-pb-80-md,
  .u-py-80-md {
    padding-bottom: 8rem !important;
  }
  .u-pl-80-md,
  .u-px-80-md {
    padding-left: 8rem !important;
  }
  .u-pr-80-md,
  .u-px-80-md {
    padding-right: 8rem !important;
  }
  .u-p-80-md {
    padding: 8rem !important;
  }
  .u-pt-85-md,
  .u-py-85-md {
    padding-top: 8.5rem !important;
  }
  .u-pb-85-md,
  .u-py-85-md {
    padding-bottom: 8.5rem !important;
  }
  .u-pl-85-md,
  .u-px-85-md {
    padding-left: 8.5rem !important;
  }
  .u-pr-85-md,
  .u-px-85-md {
    padding-right: 8.5rem !important;
  }
  .u-p-85-md {
    padding: 8.5rem !important;
  }
  .u-pt-90-md,
  .u-py-90-md {
    padding-top: 9rem !important;
  }
  .u-pb-90-md,
  .u-py-90-md {
    padding-bottom: 9rem !important;
  }
  .u-pl-90-md,
  .u-px-90-md {
    padding-left: 9rem !important;
  }
  .u-pr-90-md,
  .u-px-90-md {
    padding-right: 9rem !important;
  }
  .u-p-90-md {
    padding: 9rem !important;
  }
  .u-pt-95-md,
  .u-py-95-md {
    padding-top: 9.5rem !important;
  }
  .u-pb-95-md,
  .u-py-95-md {
    padding-bottom: 9.5rem !important;
  }
  .u-pl-95-md,
  .u-px-95-md {
    padding-left: 9.5rem !important;
  }
  .u-pr-95-md,
  .u-px-95-md {
    padding-right: 9.5rem !important;
  }
  .u-p-95-md {
    padding: 9.5rem !important;
  }
  .u-pt-100-md,
  .u-py-100-md {
    padding-top: 10rem !important;
  }
  .u-pb-100-md,
  .u-py-100-md {
    padding-bottom: 10rem !important;
  }
  .u-pl-100-md,
  .u-px-100-md {
    padding-left: 10rem !important;
  }
  .u-pr-100-md,
  .u-px-100-md {
    padding-right: 10rem !important;
  }
  .u-p-100-md {
    padding: 10rem !important;
  }
}
@media screen and (min-width: 900px) {
  .u-pt-0-md-x,
  .u-py-0-md-x {
    padding-top: 0rem !important;
  }
  .u-pb-0-md-x,
  .u-py-0-md-x {
    padding-bottom: 0rem !important;
  }
  .u-pl-0-md-x,
  .u-px-0-md-x {
    padding-left: 0rem !important;
  }
  .u-pr-0-md-x,
  .u-px-0-md-x {
    padding-right: 0rem !important;
  }
  .u-p-0-md-x {
    padding: 0rem !important;
  }
  .u-pt-5-md-x,
  .u-py-5-md-x {
    padding-top: 0.5rem !important;
  }
  .u-pb-5-md-x,
  .u-py-5-md-x {
    padding-bottom: 0.5rem !important;
  }
  .u-pl-5-md-x,
  .u-px-5-md-x {
    padding-left: 0.5rem !important;
  }
  .u-pr-5-md-x,
  .u-px-5-md-x {
    padding-right: 0.5rem !important;
  }
  .u-p-5-md-x {
    padding: 0.5rem !important;
  }
  .u-pt-10-md-x,
  .u-py-10-md-x {
    padding-top: 1rem !important;
  }
  .u-pb-10-md-x,
  .u-py-10-md-x {
    padding-bottom: 1rem !important;
  }
  .u-pl-10-md-x,
  .u-px-10-md-x {
    padding-left: 1rem !important;
  }
  .u-pr-10-md-x,
  .u-px-10-md-x {
    padding-right: 1rem !important;
  }
  .u-p-10-md-x {
    padding: 1rem !important;
  }
  .u-pt-15-md-x,
  .u-py-15-md-x {
    padding-top: 1.5rem !important;
  }
  .u-pb-15-md-x,
  .u-py-15-md-x {
    padding-bottom: 1.5rem !important;
  }
  .u-pl-15-md-x,
  .u-px-15-md-x {
    padding-left: 1.5rem !important;
  }
  .u-pr-15-md-x,
  .u-px-15-md-x {
    padding-right: 1.5rem !important;
  }
  .u-p-15-md-x {
    padding: 1.5rem !important;
  }
  .u-pt-20-md-x,
  .u-py-20-md-x {
    padding-top: 2rem !important;
  }
  .u-pb-20-md-x,
  .u-py-20-md-x {
    padding-bottom: 2rem !important;
  }
  .u-pl-20-md-x,
  .u-px-20-md-x {
    padding-left: 2rem !important;
  }
  .u-pr-20-md-x,
  .u-px-20-md-x {
    padding-right: 2rem !important;
  }
  .u-p-20-md-x {
    padding: 2rem !important;
  }
  .u-pt-25-md-x,
  .u-py-25-md-x {
    padding-top: 2.5rem !important;
  }
  .u-pb-25-md-x,
  .u-py-25-md-x {
    padding-bottom: 2.5rem !important;
  }
  .u-pl-25-md-x,
  .u-px-25-md-x {
    padding-left: 2.5rem !important;
  }
  .u-pr-25-md-x,
  .u-px-25-md-x {
    padding-right: 2.5rem !important;
  }
  .u-p-25-md-x {
    padding: 2.5rem !important;
  }
  .u-pt-30-md-x,
  .u-py-30-md-x {
    padding-top: 3rem !important;
  }
  .u-pb-30-md-x,
  .u-py-30-md-x {
    padding-bottom: 3rem !important;
  }
  .u-pl-30-md-x,
  .u-px-30-md-x {
    padding-left: 3rem !important;
  }
  .u-pr-30-md-x,
  .u-px-30-md-x {
    padding-right: 3rem !important;
  }
  .u-p-30-md-x {
    padding: 3rem !important;
  }
  .u-pt-35-md-x,
  .u-py-35-md-x {
    padding-top: 3.5rem !important;
  }
  .u-pb-35-md-x,
  .u-py-35-md-x {
    padding-bottom: 3.5rem !important;
  }
  .u-pl-35-md-x,
  .u-px-35-md-x {
    padding-left: 3.5rem !important;
  }
  .u-pr-35-md-x,
  .u-px-35-md-x {
    padding-right: 3.5rem !important;
  }
  .u-p-35-md-x {
    padding: 3.5rem !important;
  }
  .u-pt-40-md-x,
  .u-py-40-md-x {
    padding-top: 4rem !important;
  }
  .u-pb-40-md-x,
  .u-py-40-md-x {
    padding-bottom: 4rem !important;
  }
  .u-pl-40-md-x,
  .u-px-40-md-x {
    padding-left: 4rem !important;
  }
  .u-pr-40-md-x,
  .u-px-40-md-x {
    padding-right: 4rem !important;
  }
  .u-p-40-md-x {
    padding: 4rem !important;
  }
  .u-pt-45-md-x,
  .u-py-45-md-x {
    padding-top: 4.5rem !important;
  }
  .u-pb-45-md-x,
  .u-py-45-md-x {
    padding-bottom: 4.5rem !important;
  }
  .u-pl-45-md-x,
  .u-px-45-md-x {
    padding-left: 4.5rem !important;
  }
  .u-pr-45-md-x,
  .u-px-45-md-x {
    padding-right: 4.5rem !important;
  }
  .u-p-45-md-x {
    padding: 4.5rem !important;
  }
  .u-pt-50-md-x,
  .u-py-50-md-x {
    padding-top: 5rem !important;
  }
  .u-pb-50-md-x,
  .u-py-50-md-x {
    padding-bottom: 5rem !important;
  }
  .u-pl-50-md-x,
  .u-px-50-md-x {
    padding-left: 5rem !important;
  }
  .u-pr-50-md-x,
  .u-px-50-md-x {
    padding-right: 5rem !important;
  }
  .u-p-50-md-x {
    padding: 5rem !important;
  }
  .u-pt-55-md-x,
  .u-py-55-md-x {
    padding-top: 5.5rem !important;
  }
  .u-pb-55-md-x,
  .u-py-55-md-x {
    padding-bottom: 5.5rem !important;
  }
  .u-pl-55-md-x,
  .u-px-55-md-x {
    padding-left: 5.5rem !important;
  }
  .u-pr-55-md-x,
  .u-px-55-md-x {
    padding-right: 5.5rem !important;
  }
  .u-p-55-md-x {
    padding: 5.5rem !important;
  }
  .u-pt-60-md-x,
  .u-py-60-md-x {
    padding-top: 6rem !important;
  }
  .u-pb-60-md-x,
  .u-py-60-md-x {
    padding-bottom: 6rem !important;
  }
  .u-pl-60-md-x,
  .u-px-60-md-x {
    padding-left: 6rem !important;
  }
  .u-pr-60-md-x,
  .u-px-60-md-x {
    padding-right: 6rem !important;
  }
  .u-p-60-md-x {
    padding: 6rem !important;
  }
  .u-pt-65-md-x,
  .u-py-65-md-x {
    padding-top: 6.5rem !important;
  }
  .u-pb-65-md-x,
  .u-py-65-md-x {
    padding-bottom: 6.5rem !important;
  }
  .u-pl-65-md-x,
  .u-px-65-md-x {
    padding-left: 6.5rem !important;
  }
  .u-pr-65-md-x,
  .u-px-65-md-x {
    padding-right: 6.5rem !important;
  }
  .u-p-65-md-x {
    padding: 6.5rem !important;
  }
  .u-pt-70-md-x,
  .u-py-70-md-x {
    padding-top: 7rem !important;
  }
  .u-pb-70-md-x,
  .u-py-70-md-x {
    padding-bottom: 7rem !important;
  }
  .u-pl-70-md-x,
  .u-px-70-md-x {
    padding-left: 7rem !important;
  }
  .u-pr-70-md-x,
  .u-px-70-md-x {
    padding-right: 7rem !important;
  }
  .u-p-70-md-x {
    padding: 7rem !important;
  }
  .u-pt-75-md-x,
  .u-py-75-md-x {
    padding-top: 7.5rem !important;
  }
  .u-pb-75-md-x,
  .u-py-75-md-x {
    padding-bottom: 7.5rem !important;
  }
  .u-pl-75-md-x,
  .u-px-75-md-x {
    padding-left: 7.5rem !important;
  }
  .u-pr-75-md-x,
  .u-px-75-md-x {
    padding-right: 7.5rem !important;
  }
  .u-p-75-md-x {
    padding: 7.5rem !important;
  }
  .u-pt-80-md-x,
  .u-py-80-md-x {
    padding-top: 8rem !important;
  }
  .u-pb-80-md-x,
  .u-py-80-md-x {
    padding-bottom: 8rem !important;
  }
  .u-pl-80-md-x,
  .u-px-80-md-x {
    padding-left: 8rem !important;
  }
  .u-pr-80-md-x,
  .u-px-80-md-x {
    padding-right: 8rem !important;
  }
  .u-p-80-md-x {
    padding: 8rem !important;
  }
  .u-pt-85-md-x,
  .u-py-85-md-x {
    padding-top: 8.5rem !important;
  }
  .u-pb-85-md-x,
  .u-py-85-md-x {
    padding-bottom: 8.5rem !important;
  }
  .u-pl-85-md-x,
  .u-px-85-md-x {
    padding-left: 8.5rem !important;
  }
  .u-pr-85-md-x,
  .u-px-85-md-x {
    padding-right: 8.5rem !important;
  }
  .u-p-85-md-x {
    padding: 8.5rem !important;
  }
  .u-pt-90-md-x,
  .u-py-90-md-x {
    padding-top: 9rem !important;
  }
  .u-pb-90-md-x,
  .u-py-90-md-x {
    padding-bottom: 9rem !important;
  }
  .u-pl-90-md-x,
  .u-px-90-md-x {
    padding-left: 9rem !important;
  }
  .u-pr-90-md-x,
  .u-px-90-md-x {
    padding-right: 9rem !important;
  }
  .u-p-90-md-x {
    padding: 9rem !important;
  }
  .u-pt-95-md-x,
  .u-py-95-md-x {
    padding-top: 9.5rem !important;
  }
  .u-pb-95-md-x,
  .u-py-95-md-x {
    padding-bottom: 9.5rem !important;
  }
  .u-pl-95-md-x,
  .u-px-95-md-x {
    padding-left: 9.5rem !important;
  }
  .u-pr-95-md-x,
  .u-px-95-md-x {
    padding-right: 9.5rem !important;
  }
  .u-p-95-md-x {
    padding: 9.5rem !important;
  }
  .u-pt-100-md-x,
  .u-py-100-md-x {
    padding-top: 10rem !important;
  }
  .u-pb-100-md-x,
  .u-py-100-md-x {
    padding-bottom: 10rem !important;
  }
  .u-pl-100-md-x,
  .u-px-100-md-x {
    padding-left: 10rem !important;
  }
  .u-pr-100-md-x,
  .u-px-100-md-x {
    padding-right: 10rem !important;
  }
  .u-p-100-md-x {
    padding: 10rem !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-pt-0-lg,
  .u-py-0-lg {
    padding-top: 0rem !important;
  }
  .u-pb-0-lg,
  .u-py-0-lg {
    padding-bottom: 0rem !important;
  }
  .u-pl-0-lg,
  .u-px-0-lg {
    padding-left: 0rem !important;
  }
  .u-pr-0-lg,
  .u-px-0-lg {
    padding-right: 0rem !important;
  }
  .u-p-0-lg {
    padding: 0rem !important;
  }
  .u-pt-5-lg,
  .u-py-5-lg {
    padding-top: 0.5rem !important;
  }
  .u-pb-5-lg,
  .u-py-5-lg {
    padding-bottom: 0.5rem !important;
  }
  .u-pl-5-lg,
  .u-px-5-lg {
    padding-left: 0.5rem !important;
  }
  .u-pr-5-lg,
  .u-px-5-lg {
    padding-right: 0.5rem !important;
  }
  .u-p-5-lg {
    padding: 0.5rem !important;
  }
  .u-pt-10-lg,
  .u-py-10-lg {
    padding-top: 1rem !important;
  }
  .u-pb-10-lg,
  .u-py-10-lg {
    padding-bottom: 1rem !important;
  }
  .u-pl-10-lg,
  .u-px-10-lg {
    padding-left: 1rem !important;
  }
  .u-pr-10-lg,
  .u-px-10-lg {
    padding-right: 1rem !important;
  }
  .u-p-10-lg {
    padding: 1rem !important;
  }
  .u-pt-15-lg,
  .u-py-15-lg {
    padding-top: 1.5rem !important;
  }
  .u-pb-15-lg,
  .u-py-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .u-pl-15-lg,
  .u-px-15-lg {
    padding-left: 1.5rem !important;
  }
  .u-pr-15-lg,
  .u-px-15-lg {
    padding-right: 1.5rem !important;
  }
  .u-p-15-lg {
    padding: 1.5rem !important;
  }
  .u-pt-20-lg,
  .u-py-20-lg {
    padding-top: 2rem !important;
  }
  .u-pb-20-lg,
  .u-py-20-lg {
    padding-bottom: 2rem !important;
  }
  .u-pl-20-lg,
  .u-px-20-lg {
    padding-left: 2rem !important;
  }
  .u-pr-20-lg,
  .u-px-20-lg {
    padding-right: 2rem !important;
  }
  .u-p-20-lg {
    padding: 2rem !important;
  }
  .u-pt-25-lg,
  .u-py-25-lg {
    padding-top: 2.5rem !important;
  }
  .u-pb-25-lg,
  .u-py-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .u-pl-25-lg,
  .u-px-25-lg {
    padding-left: 2.5rem !important;
  }
  .u-pr-25-lg,
  .u-px-25-lg {
    padding-right: 2.5rem !important;
  }
  .u-p-25-lg {
    padding: 2.5rem !important;
  }
  .u-pt-30-lg,
  .u-py-30-lg {
    padding-top: 3rem !important;
  }
  .u-pb-30-lg,
  .u-py-30-lg {
    padding-bottom: 3rem !important;
  }
  .u-pl-30-lg,
  .u-px-30-lg {
    padding-left: 3rem !important;
  }
  .u-pr-30-lg,
  .u-px-30-lg {
    padding-right: 3rem !important;
  }
  .u-p-30-lg {
    padding: 3rem !important;
  }
  .u-pt-35-lg,
  .u-py-35-lg {
    padding-top: 3.5rem !important;
  }
  .u-pb-35-lg,
  .u-py-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .u-pl-35-lg,
  .u-px-35-lg {
    padding-left: 3.5rem !important;
  }
  .u-pr-35-lg,
  .u-px-35-lg {
    padding-right: 3.5rem !important;
  }
  .u-p-35-lg {
    padding: 3.5rem !important;
  }
  .u-pt-40-lg,
  .u-py-40-lg {
    padding-top: 4rem !important;
  }
  .u-pb-40-lg,
  .u-py-40-lg {
    padding-bottom: 4rem !important;
  }
  .u-pl-40-lg,
  .u-px-40-lg {
    padding-left: 4rem !important;
  }
  .u-pr-40-lg,
  .u-px-40-lg {
    padding-right: 4rem !important;
  }
  .u-p-40-lg {
    padding: 4rem !important;
  }
  .u-pt-45-lg,
  .u-py-45-lg {
    padding-top: 4.5rem !important;
  }
  .u-pb-45-lg,
  .u-py-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .u-pl-45-lg,
  .u-px-45-lg {
    padding-left: 4.5rem !important;
  }
  .u-pr-45-lg,
  .u-px-45-lg {
    padding-right: 4.5rem !important;
  }
  .u-p-45-lg {
    padding: 4.5rem !important;
  }
  .u-pt-50-lg,
  .u-py-50-lg {
    padding-top: 5rem !important;
  }
  .u-pb-50-lg,
  .u-py-50-lg {
    padding-bottom: 5rem !important;
  }
  .u-pl-50-lg,
  .u-px-50-lg {
    padding-left: 5rem !important;
  }
  .u-pr-50-lg,
  .u-px-50-lg {
    padding-right: 5rem !important;
  }
  .u-p-50-lg {
    padding: 5rem !important;
  }
  .u-pt-55-lg,
  .u-py-55-lg {
    padding-top: 5.5rem !important;
  }
  .u-pb-55-lg,
  .u-py-55-lg {
    padding-bottom: 5.5rem !important;
  }
  .u-pl-55-lg,
  .u-px-55-lg {
    padding-left: 5.5rem !important;
  }
  .u-pr-55-lg,
  .u-px-55-lg {
    padding-right: 5.5rem !important;
  }
  .u-p-55-lg {
    padding: 5.5rem !important;
  }
  .u-pt-60-lg,
  .u-py-60-lg {
    padding-top: 6rem !important;
  }
  .u-pb-60-lg,
  .u-py-60-lg {
    padding-bottom: 6rem !important;
  }
  .u-pl-60-lg,
  .u-px-60-lg {
    padding-left: 6rem !important;
  }
  .u-pr-60-lg,
  .u-px-60-lg {
    padding-right: 6rem !important;
  }
  .u-p-60-lg {
    padding: 6rem !important;
  }
  .u-pt-65-lg,
  .u-py-65-lg {
    padding-top: 6.5rem !important;
  }
  .u-pb-65-lg,
  .u-py-65-lg {
    padding-bottom: 6.5rem !important;
  }
  .u-pl-65-lg,
  .u-px-65-lg {
    padding-left: 6.5rem !important;
  }
  .u-pr-65-lg,
  .u-px-65-lg {
    padding-right: 6.5rem !important;
  }
  .u-p-65-lg {
    padding: 6.5rem !important;
  }
  .u-pt-70-lg,
  .u-py-70-lg {
    padding-top: 7rem !important;
  }
  .u-pb-70-lg,
  .u-py-70-lg {
    padding-bottom: 7rem !important;
  }
  .u-pl-70-lg,
  .u-px-70-lg {
    padding-left: 7rem !important;
  }
  .u-pr-70-lg,
  .u-px-70-lg {
    padding-right: 7rem !important;
  }
  .u-p-70-lg {
    padding: 7rem !important;
  }
  .u-pt-75-lg,
  .u-py-75-lg {
    padding-top: 7.5rem !important;
  }
  .u-pb-75-lg,
  .u-py-75-lg {
    padding-bottom: 7.5rem !important;
  }
  .u-pl-75-lg,
  .u-px-75-lg {
    padding-left: 7.5rem !important;
  }
  .u-pr-75-lg,
  .u-px-75-lg {
    padding-right: 7.5rem !important;
  }
  .u-p-75-lg {
    padding: 7.5rem !important;
  }
  .u-pt-80-lg,
  .u-py-80-lg {
    padding-top: 8rem !important;
  }
  .u-pb-80-lg,
  .u-py-80-lg {
    padding-bottom: 8rem !important;
  }
  .u-pl-80-lg,
  .u-px-80-lg {
    padding-left: 8rem !important;
  }
  .u-pr-80-lg,
  .u-px-80-lg {
    padding-right: 8rem !important;
  }
  .u-p-80-lg {
    padding: 8rem !important;
  }
  .u-pt-85-lg,
  .u-py-85-lg {
    padding-top: 8.5rem !important;
  }
  .u-pb-85-lg,
  .u-py-85-lg {
    padding-bottom: 8.5rem !important;
  }
  .u-pl-85-lg,
  .u-px-85-lg {
    padding-left: 8.5rem !important;
  }
  .u-pr-85-lg,
  .u-px-85-lg {
    padding-right: 8.5rem !important;
  }
  .u-p-85-lg {
    padding: 8.5rem !important;
  }
  .u-pt-90-lg,
  .u-py-90-lg {
    padding-top: 9rem !important;
  }
  .u-pb-90-lg,
  .u-py-90-lg {
    padding-bottom: 9rem !important;
  }
  .u-pl-90-lg,
  .u-px-90-lg {
    padding-left: 9rem !important;
  }
  .u-pr-90-lg,
  .u-px-90-lg {
    padding-right: 9rem !important;
  }
  .u-p-90-lg {
    padding: 9rem !important;
  }
  .u-pt-95-lg,
  .u-py-95-lg {
    padding-top: 9.5rem !important;
  }
  .u-pb-95-lg,
  .u-py-95-lg {
    padding-bottom: 9.5rem !important;
  }
  .u-pl-95-lg,
  .u-px-95-lg {
    padding-left: 9.5rem !important;
  }
  .u-pr-95-lg,
  .u-px-95-lg {
    padding-right: 9.5rem !important;
  }
  .u-p-95-lg {
    padding: 9.5rem !important;
  }
  .u-pt-100-lg,
  .u-py-100-lg {
    padding-top: 10rem !important;
  }
  .u-pb-100-lg,
  .u-py-100-lg {
    padding-bottom: 10rem !important;
  }
  .u-pl-100-lg,
  .u-px-100-lg {
    padding-left: 10rem !important;
  }
  .u-pr-100-lg,
  .u-px-100-lg {
    padding-right: 10rem !important;
  }
  .u-p-100-lg {
    padding: 10rem !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-pt-0-xl,
  .u-py-0-xl {
    padding-top: 0rem !important;
  }
  .u-pb-0-xl,
  .u-py-0-xl {
    padding-bottom: 0rem !important;
  }
  .u-pl-0-xl,
  .u-px-0-xl {
    padding-left: 0rem !important;
  }
  .u-pr-0-xl,
  .u-px-0-xl {
    padding-right: 0rem !important;
  }
  .u-p-0-xl {
    padding: 0rem !important;
  }
  .u-pt-5-xl,
  .u-py-5-xl {
    padding-top: 0.5rem !important;
  }
  .u-pb-5-xl,
  .u-py-5-xl {
    padding-bottom: 0.5rem !important;
  }
  .u-pl-5-xl,
  .u-px-5-xl {
    padding-left: 0.5rem !important;
  }
  .u-pr-5-xl,
  .u-px-5-xl {
    padding-right: 0.5rem !important;
  }
  .u-p-5-xl {
    padding: 0.5rem !important;
  }
  .u-pt-10-xl,
  .u-py-10-xl {
    padding-top: 1rem !important;
  }
  .u-pb-10-xl,
  .u-py-10-xl {
    padding-bottom: 1rem !important;
  }
  .u-pl-10-xl,
  .u-px-10-xl {
    padding-left: 1rem !important;
  }
  .u-pr-10-xl,
  .u-px-10-xl {
    padding-right: 1rem !important;
  }
  .u-p-10-xl {
    padding: 1rem !important;
  }
  .u-pt-15-xl,
  .u-py-15-xl {
    padding-top: 1.5rem !important;
  }
  .u-pb-15-xl,
  .u-py-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .u-pl-15-xl,
  .u-px-15-xl {
    padding-left: 1.5rem !important;
  }
  .u-pr-15-xl,
  .u-px-15-xl {
    padding-right: 1.5rem !important;
  }
  .u-p-15-xl {
    padding: 1.5rem !important;
  }
  .u-pt-20-xl,
  .u-py-20-xl {
    padding-top: 2rem !important;
  }
  .u-pb-20-xl,
  .u-py-20-xl {
    padding-bottom: 2rem !important;
  }
  .u-pl-20-xl,
  .u-px-20-xl {
    padding-left: 2rem !important;
  }
  .u-pr-20-xl,
  .u-px-20-xl {
    padding-right: 2rem !important;
  }
  .u-p-20-xl {
    padding: 2rem !important;
  }
  .u-pt-25-xl,
  .u-py-25-xl {
    padding-top: 2.5rem !important;
  }
  .u-pb-25-xl,
  .u-py-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .u-pl-25-xl,
  .u-px-25-xl {
    padding-left: 2.5rem !important;
  }
  .u-pr-25-xl,
  .u-px-25-xl {
    padding-right: 2.5rem !important;
  }
  .u-p-25-xl {
    padding: 2.5rem !important;
  }
  .u-pt-30-xl,
  .u-py-30-xl {
    padding-top: 3rem !important;
  }
  .u-pb-30-xl,
  .u-py-30-xl {
    padding-bottom: 3rem !important;
  }
  .u-pl-30-xl,
  .u-px-30-xl {
    padding-left: 3rem !important;
  }
  .u-pr-30-xl,
  .u-px-30-xl {
    padding-right: 3rem !important;
  }
  .u-p-30-xl {
    padding: 3rem !important;
  }
  .u-pt-35-xl,
  .u-py-35-xl {
    padding-top: 3.5rem !important;
  }
  .u-pb-35-xl,
  .u-py-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .u-pl-35-xl,
  .u-px-35-xl {
    padding-left: 3.5rem !important;
  }
  .u-pr-35-xl,
  .u-px-35-xl {
    padding-right: 3.5rem !important;
  }
  .u-p-35-xl {
    padding: 3.5rem !important;
  }
  .u-pt-40-xl,
  .u-py-40-xl {
    padding-top: 4rem !important;
  }
  .u-pb-40-xl,
  .u-py-40-xl {
    padding-bottom: 4rem !important;
  }
  .u-pl-40-xl,
  .u-px-40-xl {
    padding-left: 4rem !important;
  }
  .u-pr-40-xl,
  .u-px-40-xl {
    padding-right: 4rem !important;
  }
  .u-p-40-xl {
    padding: 4rem !important;
  }
  .u-pt-45-xl,
  .u-py-45-xl {
    padding-top: 4.5rem !important;
  }
  .u-pb-45-xl,
  .u-py-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .u-pl-45-xl,
  .u-px-45-xl {
    padding-left: 4.5rem !important;
  }
  .u-pr-45-xl,
  .u-px-45-xl {
    padding-right: 4.5rem !important;
  }
  .u-p-45-xl {
    padding: 4.5rem !important;
  }
  .u-pt-50-xl,
  .u-py-50-xl {
    padding-top: 5rem !important;
  }
  .u-pb-50-xl,
  .u-py-50-xl {
    padding-bottom: 5rem !important;
  }
  .u-pl-50-xl,
  .u-px-50-xl {
    padding-left: 5rem !important;
  }
  .u-pr-50-xl,
  .u-px-50-xl {
    padding-right: 5rem !important;
  }
  .u-p-50-xl {
    padding: 5rem !important;
  }
  .u-pt-55-xl,
  .u-py-55-xl {
    padding-top: 5.5rem !important;
  }
  .u-pb-55-xl,
  .u-py-55-xl {
    padding-bottom: 5.5rem !important;
  }
  .u-pl-55-xl,
  .u-px-55-xl {
    padding-left: 5.5rem !important;
  }
  .u-pr-55-xl,
  .u-px-55-xl {
    padding-right: 5.5rem !important;
  }
  .u-p-55-xl {
    padding: 5.5rem !important;
  }
  .u-pt-60-xl,
  .u-py-60-xl {
    padding-top: 6rem !important;
  }
  .u-pb-60-xl,
  .u-py-60-xl {
    padding-bottom: 6rem !important;
  }
  .u-pl-60-xl,
  .u-px-60-xl {
    padding-left: 6rem !important;
  }
  .u-pr-60-xl,
  .u-px-60-xl {
    padding-right: 6rem !important;
  }
  .u-p-60-xl {
    padding: 6rem !important;
  }
  .u-pt-65-xl,
  .u-py-65-xl {
    padding-top: 6.5rem !important;
  }
  .u-pb-65-xl,
  .u-py-65-xl {
    padding-bottom: 6.5rem !important;
  }
  .u-pl-65-xl,
  .u-px-65-xl {
    padding-left: 6.5rem !important;
  }
  .u-pr-65-xl,
  .u-px-65-xl {
    padding-right: 6.5rem !important;
  }
  .u-p-65-xl {
    padding: 6.5rem !important;
  }
  .u-pt-70-xl,
  .u-py-70-xl {
    padding-top: 7rem !important;
  }
  .u-pb-70-xl,
  .u-py-70-xl {
    padding-bottom: 7rem !important;
  }
  .u-pl-70-xl,
  .u-px-70-xl {
    padding-left: 7rem !important;
  }
  .u-pr-70-xl,
  .u-px-70-xl {
    padding-right: 7rem !important;
  }
  .u-p-70-xl {
    padding: 7rem !important;
  }
  .u-pt-75-xl,
  .u-py-75-xl {
    padding-top: 7.5rem !important;
  }
  .u-pb-75-xl,
  .u-py-75-xl {
    padding-bottom: 7.5rem !important;
  }
  .u-pl-75-xl,
  .u-px-75-xl {
    padding-left: 7.5rem !important;
  }
  .u-pr-75-xl,
  .u-px-75-xl {
    padding-right: 7.5rem !important;
  }
  .u-p-75-xl {
    padding: 7.5rem !important;
  }
  .u-pt-80-xl,
  .u-py-80-xl {
    padding-top: 8rem !important;
  }
  .u-pb-80-xl,
  .u-py-80-xl {
    padding-bottom: 8rem !important;
  }
  .u-pl-80-xl,
  .u-px-80-xl {
    padding-left: 8rem !important;
  }
  .u-pr-80-xl,
  .u-px-80-xl {
    padding-right: 8rem !important;
  }
  .u-p-80-xl {
    padding: 8rem !important;
  }
  .u-pt-85-xl,
  .u-py-85-xl {
    padding-top: 8.5rem !important;
  }
  .u-pb-85-xl,
  .u-py-85-xl {
    padding-bottom: 8.5rem !important;
  }
  .u-pl-85-xl,
  .u-px-85-xl {
    padding-left: 8.5rem !important;
  }
  .u-pr-85-xl,
  .u-px-85-xl {
    padding-right: 8.5rem !important;
  }
  .u-p-85-xl {
    padding: 8.5rem !important;
  }
  .u-pt-90-xl,
  .u-py-90-xl {
    padding-top: 9rem !important;
  }
  .u-pb-90-xl,
  .u-py-90-xl {
    padding-bottom: 9rem !important;
  }
  .u-pl-90-xl,
  .u-px-90-xl {
    padding-left: 9rem !important;
  }
  .u-pr-90-xl,
  .u-px-90-xl {
    padding-right: 9rem !important;
  }
  .u-p-90-xl {
    padding: 9rem !important;
  }
  .u-pt-95-xl,
  .u-py-95-xl {
    padding-top: 9.5rem !important;
  }
  .u-pb-95-xl,
  .u-py-95-xl {
    padding-bottom: 9.5rem !important;
  }
  .u-pl-95-xl,
  .u-px-95-xl {
    padding-left: 9.5rem !important;
  }
  .u-pr-95-xl,
  .u-px-95-xl {
    padding-right: 9.5rem !important;
  }
  .u-p-95-xl {
    padding: 9.5rem !important;
  }
  .u-pt-100-xl,
  .u-py-100-xl {
    padding-top: 10rem !important;
  }
  .u-pb-100-xl,
  .u-py-100-xl {
    padding-bottom: 10rem !important;
  }
  .u-pl-100-xl,
  .u-px-100-xl {
    padding-left: 10rem !important;
  }
  .u-pr-100-xl,
  .u-px-100-xl {
    padding-right: 10rem !important;
  }
  .u-p-100-xl {
    padding: 10rem !important;
  }
}
.u-pointer-events-none {
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  .u-pointer-events-none-md {
    pointer-events: none !important;
  }
}
@media screen and (min-width: 900px) {
  .u-pointer-events-none-md-x {
    pointer-events: none !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-pointer-events-none-lg {
    pointer-events: none !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-pointer-events-none-xl {
    pointer-events: none !important;
  }
}
.u-text-align-left {
  text-align: left !important;
}

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

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

.u-text-decoration-none {
  text-decoration: none !important;
}

.u-text-decoration-underline {
  text-decoration: underline !important;
}

@media screen and (min-width: 768px) {
  .u-text-align-left-md {
    text-align: left !important;
  }
  .u-text-align-center-md {
    text-align: center !important;
  }
  .u-text-align-right-md {
    text-align: right !important;
  }
  .u-text-decoration-none {
    text-decoration: none !important;
  }
  .u-text-decoration-underline {
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 900px) {
  .u-text-align-left-md-x {
    text-align: left !important;
  }
  .u-text-align-center-md-x {
    text-align: center !important;
  }
  .u-text-align-right-md-x {
    text-align: right !important;
  }
  .u-text-decoration-none {
    text-decoration: none !important;
  }
  .u-text-decoration-underline {
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 1080px) {
  .u-text-align-left-lg {
    text-align: left !important;
  }
  .u-text-align-center-lg {
    text-align: center !important;
  }
  .u-text-align-right-lg {
    text-align: right !important;
  }
  .u-text-decoration-none {
    text-decoration: none !important;
  }
  .u-text-decoration-underline {
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 1280px) {
  .u-text-align-left-xl {
    text-align: left !important;
  }
  .u-text-align-center-xl {
    text-align: center !important;
  }
  .u-text-align-right-xl {
    text-align: right !important;
  }
  .u-text-decoration-none {
    text-decoration: none !important;
  }
  .u-text-decoration-underline {
    text-decoration: underline !important;
  }
}
/*# sourceMappingURL=common.css.map */