@charset "UTF-8";
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* add original reset style */
html {
  /* iPhone safariで文字サイズが大きくなるバグを回避 */
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(50%, 0.9vw, 62.5%);
  scrollbar-gutter: stable;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  background-color: #f6f7f8;
}
body.fixed {
  overflow: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

_::-webkit-full-page-media,
_:future,
:root * {
  -webkit-mask-image: none !important;
          mask-image: none !important;
}

input[name=tab-item] {
  display: none;
}

area {
  cursor: pointer;
}

.c-article {
  min-height: 100dvh;
  padding-bottom: 10rem;
  z-index: 1;
  position: relative;
  font-family: "Noto Sans JP", Meiryo, メイリオ, Osaka, sans-serif;
  color: #2f2f2f;
  font-weight: 700;
  line-height: 1;
}

.c-list li {
  position: relative;
  padding-left: 1em;
}
.c-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
.c-list.is_disc li::before {
  content: "・";
}
.c-list.is_circle li::before {
  content: "●";
}
.c-list.is_asterisk li::before {
  content: "※";
}
.c-list.is_decimal li {
  counter-increment: cnt;
}
.c-list.is_decimal li::before {
  content: "" counter(cnt) ".";
}
.c-list.is_arrow li {
  padding-left: 1.1em;
}
.c-list.is_arrow li::before {
  content: "";
  display: inline-block;
  top: 0.55em;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 0.2rem solid #1eb7cb;
  border-right: 0.2rem solid #1eb7cb;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 500px) {
  .c-list.is_arrow li::before {
    width: 0.7rem;
    height: 0.7rem;
  }
}

.c-text.is_lead {
  font-size: 2.4rem;
  line-height: 1.66;
  padding-top: 1em;
}
@media screen and (max-width: 768px) {
  .c-text.is_lead {
    font-size: 1.6rem;
  }
}
.c-text.is_indent {
  text-indent: 1em;
}
.c-text.is_underline {
  text-decoration: underline;
}
.c-text.is_light {
  font-weight: 300;
}
.c-text.is_regular {
  font-weight: 400;
}
.c-text.is_semibold {
  font-weight: 600;
}
.c-text.is_bold {
  font-weight: 700;
}
.c-text.is_underline {
  text-decoration: underline;
}
.c-text.is_italic {
  font-style: italic;
}
.c-text.is_caution {
  color: #de0012;
}
.c-text.is_asterisk {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.c-text.is_asterisk::before {
  content: "※";
  margin-right: 0.1em;
}

.c-title.is_subhead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3.6rem;
  height: 15.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-title.is_subhead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 10rem;
  }
}
.c-title.is_subhead span {
  font-size: 0.66em;
}

.c-inner {
  max-width: 98.2rem;
  padding: 0 1.6rem;
  margin: 0 auto;
}

.c-details summary {
  cursor: pointer;
  display: block;
}
.c-details summary::-webkit-details-marker {
  display: none;
}
.c-hamburger {
  width: 3rem;
  height: 2.2rem;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  position: relative;
  display: none;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .c-hamburger {
    display: block;
  }
}
.c-hamburger__bar {
  display: inline-block;
  display: block;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-hamburger__bar.is_top {
  width: 3rem;
  top: 0;
  left: 0;
}
.c-hamburger__baris_middle {
  width: 3rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-hamburger__bar.is_bottom {
  width: 2rem;
  bottom: 0;
  left: 0;
}
.c-hamburger__bar:hover {
  cursor: pointer;
}

.c-heading {
  background-color: #fff;
  position: relative;
}
.c-heading::after {
  content: "";
  background-image: url(../../images/dx/common/lead-obj.png);
  width: 49.5%;
  aspect-ratio: 714/549;
  position: absolute;
  bottom: 0;
  right: 0;
  background-size: contain;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-heading::after {
    width: 71.4%;
  }
}
.c-heading .c-inner {
  margin-bottom: min(4%, 5.7rem);
  position: relative;
}
.c-heading .c-inner::after {
  content: "";
  width: 15.6%;
  aspect-ratio: 154/57.5;
  background-image: url(../../images/dx/common/heading-obj.png);
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.c-gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-gnav ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.c-gnav ul li {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .c-gnav ul li {
    width: auto;
  }
}
.c-gnav ul li a {
  color: #fff;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1eb7cb;
  font-weight: bold;
  height: 8rem;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-gnav ul li a {
    font-size: 1.1rem;
    height: 3rem;
  }
}
.c-gnav ul li a:hover {
  background-color: rgb(37.7987124464, 201.5021459227, 222.9012875536);
}

.c-logo {
  display: inline-block;
  vertical-align: middle;
  font-size: inherit;
}
.c-logo::after {
  content: "";
  display: inline-block;
  height: 1.2em;
  width: 8.4em;
  background-image: url(../../images/dx/common/logo-inline.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.l-dxheader {
  background-color: #1eb7cb;
  margin-top: 1.5rem;
}

.p-top__h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top__h2 {
    font-size: 2rem;
  }
}
.p-top-lead {
  font-weight: normal;
}
.p-top-lead__contents {
  padding-top: 7rem;
  background-image: url(../../images/dx/top/lead-figure.png);
  background-position: right center;
  background-size: min(51.9%, 74.8rem);
  background-repeat: no-repeat;
  padding-bottom: 17rem;
}
@media screen and (max-width: 1440px) {
  .p-top-lead__contents {
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 500px) {
  .p-top-lead__contents {
    background-image: url(../../images/dx/top/lead-figure-sp.png);
    padding-bottom: 65%;
    background-size: 100%;
    padding-top: 2rem;
    background-position: right bottom;
    mix-blend-mode: multiply;
  }
}
.p-top-lead__texts h2 {
  margin-bottom: 1em;
  font-size: 3.6rem;
  line-height: 1.67;
}
@media screen and (max-width: 768px) {
  .p-top-lead__texts h2 {
    font-size: 2rem;
  }
}
.p-top-lead__texts p {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-top-lead__texts p {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}
@media screen and (max-width: 500px) {
  .p-top-policy {
    padding-top: 3.8rem;
  }
}
.p-top-policy__lead {
  margin-top: 2em;
  font-size: 2rem;
  line-height: 2;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-top-policy__lead {
    font-size: 1.4rem;
    line-height: 1.71;
  }
}
@media screen and (max-width: 500px) {
  .p-top-policy__lead {
    margin-top: 1.5em;
  }
}
.p-top-guidelines {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-top-guidelines {
    margin-top: 4rem;
  }
}
.p-top-guidelines__text1 {
  margin-top: 1em;
  font-size: 3.6rem;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .p-top-guidelines__text1 {
    font-size: 2rem;
  }
}
.p-top-guidelines__text2 {
  margin-top: 1.5em;
  font-size: 2rem;
  line-height: 2;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-top-guidelines__text2 {
    font-size: 1.4rem;
  }
}
.p-top-guidelines__copy {
  background-color: #f6f7f8;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-guidelines__copy {
    margin-top: 1.5rem;
  }
}
.p-top-guidelines__copy img {
  height: 13rem;
  width: auto;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-top-guidelines__copy img {
    height: 6.7rem;
  }
}
.p-top-pillars {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .p-top-pillars {
    padding: 5rem 0;
  }
}
.p-top-pillars__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5rem;
  -webkit-column-gap: 2.63%;
     -moz-column-gap: 2.63%;
          column-gap: 2.63%;
}
@media screen and (max-width: 768px) {
  .p-top-pillars__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2.5rem;
  }
}
.p-top-pillars__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 500px) {
  .p-top-pillars__item {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .p-top-pillars__item + .p-top-pillars__item {
    margin-top: 3rem;
  }
}
.p-top-pillars__item h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-pillars__item h3 {
    font-size: 1.6rem;
    text-align: left;
  }
}
.p-top-pillars__item figure {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-top-pillars__item figure {
    margin-top: 1rem;
  }
}
.p-top-pillars__item figure img {
  max-width: 34rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.25);
          box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.25);
}
.p-top-pillars__item p {
  margin-top: 1em;
  font-size: 1.7rem;
  line-height: 1.875;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-pillars__item p {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 0.6em;
  }
}
.p-top-case {
  padding: 7rem 0;
  background-color: #fff;
}
@media screen and (max-width: 500px) {
  .p-top-case {
    padding: 3rem 0;
  }
}
.p-top-case .c-inner {
  overflow: hidden;
}
.p-top-case-slide {
  margin-top: 3.5rem;
}
@media screen and (max-width: 500px) {
  .p-top-case-slide {
    margin-top: 3rem;
  }
}
.p-top-case-slide .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.p-top-case-slide__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  margin-top: 3rem;
}
.p-top-case-slide__button {
  position: static;
  width: 6rem;
  height: 6rem;
  margin: 0;
}
.p-top-case-slide__button::after {
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-top-case-slide__button.is_prev::after {
  background-image: url(../../images/dx/common/icon-chev-left.svg);
}
.p-top-case-slide__button.is_next::after {
  background-image: url(../../images/dx/common/icon-chev-right.svg);
}
.p-top-case__link {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-case__link {
    margin-top: 3rem;
  }
}
.p-top-case__link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: inherit;
      align-content: inherit;
  font-size: 2.4rem;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-top-case__link a {
    font-size: 1.6rem;
  }
}
.p-top-case__link a:hover {
  opacity: 0.7;
}
.p-top-case__link a img {
  width: 1.08em;
  height: 1.08em;
  margin-left: 0.4rem;
}
.p-top-whole {
  padding: 6rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-whole {
    padding-top: 3rem;
  }
}
.p-top-whole__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6.5rem;
  -webkit-column-gap: 2.1%;
     -moz-column-gap: 2.1%;
          column-gap: 2.1%;
}
@media screen and (max-width: 768px) {
  .p-top-whole__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-top-whole__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #1eb7cb;
  background: -webkit-gradient(linear, left top, right top, from(#d1def2), color-stop(40%, #dacfd2), to(#f0b79c));
  background: linear-gradient(to right, #d1def2 0%, #dacfd2 40%, #f0b79c 100%);
  border-radius: 2rem;
  overflow: hidden;
  -webkit-box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .p-top-whole__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 48.7%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-whole__item {
    width: 100%;
    height: 16.2rem;
  }
}
.p-top-whole__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 4.3rem;
  padding-right: 7rem;
  padding-left: 5rem;
  position: relative;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
.p-top-whole__item a:hover {
  background-color: transparent;
  color: #fff;
}
.p-top-whole__item a:hover::after {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-top-whole__item a {
    padding: 0 3em;
  }
}
.p-top-whole__item a::after {
  content: "";
  display: block;
  margin-top: 2rem;
  width: 8rem;
  height: 8rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #1eb7cb;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-top-whole__item a::after {
    width: 6rem;
    height: 8rem;
  }
}
.p-top-whole__item a.is_value::after {
  -webkit-mask-image: url(../../images/dx/top/whole-img1.png);
          mask-image: url(../../images/dx/top/whole-img1.png);
}
.p-top-whole__item a.is_promotion::after {
  -webkit-mask-image: url(../../images/dx/top/whole-img2.png);
          mask-image: url(../../images/dx/top/whole-img2.png);
}
.p-top-whole__title {
  font-size: 2.4rem;
  line-height: 1.41;
}
@media screen and (max-width: 768px) {
  .p-top-whole__title {
    font-size: 2rem;
  }
}
.p-top-whole__text {
  margin-top: 1em;
  font-size: 1.6rem;
  line-height: 1.58;
  font-weight: normal;
}
@media screen and (max-width: 500px) {
  .p-top-whole__text {
    margin-top: 0.5em;
  }
}
.p-case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2.4%;
     -moz-column-gap: 2.4%;
          column-gap: 2.4%;
  row-gap: 2.4rem;
  margin-top: 3.5rem;
  z-index: 1;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-case__list {
    row-gap: 1.5rem;
  }
}
.p-case__category {
  font-size: 1.1rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  margin-bottom: 2rem;
  color: #5b5b5b;
  margin-top: auto;
  min-height: 4.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  row-gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-case__category {
    position: static;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 678px) {
  .p-case__category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 6.4rem;
  }
}
.p-case__category li {
  border-radius: 20rem;
  border: 0.1rem solid #5b5b5b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8.2em;
  height: 1.8rem;
  text-align: center;
}
.p-case-card {
  width: 23.2%;
  height: auto;
  background: -webkit-gradient(linear, left top, right top, from(#d1def2), color-stop(40%, #dacfd2), to(#f0b79c));
  background: linear-gradient(to right, #d1def2 0%, #dacfd2 40%, #f0b79c 100%);
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-case-card {
    width: 31.7333333333%;
  }
}
@media screen and (max-width: 500px) {
  .p-case-card {
    width: 48.8%;
  }
}
.p-case-card a {
  -webkit-box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  font-weight: normal;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ecedf0;
}
.p-case-card a:hover {
  -webkit-box-shadow: 0.1rem 0.1rem 0.4rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.1rem 0.1rem 0.4rem rgba(0, 0, 0, 0.15);
  background: transparent;
}
.p-case-card__texts {
  padding: 1rem 1.6rem 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-case-card__texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    aspect-ratio: auto;
    padding: 1rem 1rem 2rem;
  }
}
.p-case-card__date {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
}
.p-case-card__title {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 0.4em;
}

.p-policy-box {
  background-color: #fff;
  margin-top: 4rem;
  text-align: center;
  padding: 2.5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .p-policy-box {
    margin-top: 2rem;
    padding: 2rem;
  }
}
.p-policy-box__md {
  font-size: 2.4rem;
  color: #dd0e18;
}
@media screen and (max-width: 768px) {
  .p-policy-box__md {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-policy-box__sm {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 1em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-policy-box__sm {
    font-size: 1.4rem;
    line-height: 1.71;
  }
}
.p-policy__figure {
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .p-policy__figure {
    margin-top: 3.5rem;
  }
}
.p-policy__logo {
  text-align: center;
  margin-top: 2rem;
}
.p-policy__logo img {
  max-width: 40rem;
  mix-blend-mode: multiply;
}
.p-policy__copy {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.61;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .p-policy__copy {
    font-size: 2.4rem;
  }
}
.p-policy__h2 {
  font-size: 3.6rem;
  text-align: center;
  color: #1eb7cb;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-policy__h2 {
    font-size: 2.4rem;
  }
}
.p-policy__figure2 {
  margin-top: 3rem;
}

.p-task__h2 {
  text-align: center;
  font-size: 4rem;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-task__h2 {
    font-size: 2rem;
  }
}
.p-task__h2 span {
  display: inline-block;
  border-radius: 20rem;
  background-color: #1eb7cb;
  color: #fff;
  padding: 0.35em 1em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-task__h2 span {
    padding: 0.5em 1em;
  }
}
@media screen and (max-width: 500px) {
  .p-task__h2 span {
    width: 100%;
  }
}
.p-task-box {
  background-color: #fff;
  margin-top: 4rem;
  -webkit-box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-task-box {
    margin-top: 2rem;
  }
}
.p-task-box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 500px) {
  .p-task-box__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-task-box__list > li {
  width: 27%;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 500px) {
  .p-task-box__list > li {
    width: 100%;
    padding: 2rem;
  }
}
.p-task-box__list > li:nth-of-type(2) {
  width: 27%;
}
@media screen and (max-width: 500px) {
  .p-task-box__list > li:nth-of-type(2) {
    width: 100%;
  }
}
.p-task-box__list h3 {
  text-align: center;
  color: #1eb7cb;
  font-size: 2.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-task-box__list h3 {
    font-size: 1.8rem;
  }
}
.p-task-box__list figure {
  margin-top: 1.8rem;
}
@media screen and (max-width: 500px) {
  .p-task-box__list figure {
    margin-top: 0.5rem;
  }
}
.p-task-box__list ul li {
  font-size: 1.4rem;
  line-height: 1.71;
}
@media screen and (max-width: 768px) {
  .p-task-box__list ul li {
    font-size: 1.2rem;
  }
}
.p-task-box__list ul li::before {
  content: "●";
  color: #1eb7cb;
}
.p-task__figure {
  margin-top: 3.5rem;
}
.p-task__radiusbox {
  background-color: #fff;
  color: #1eb7cb;
  border-radius: 20rem;
  font-size: 2.4rem;
  line-height: 1.4;
  padding: 0.5em 1em;
  text-align: center;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-task__radiusbox {
    font-size: 1.7rem;
  }
}

.p-attempt__h2 {
  color: #1eb7cb;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-attempt__h2 {
    font-size: 2.2rem;
  }
}
.p-attempt__lead {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-attempt__lead {
    font-size: 1.6rem;
  }
}
.p-attempt__lead {
  line-height: 1.88;
  margin-top: 2em;
}
.p-attempt__figure {
  margin-top: 5rem;
  text-align: center;
}
.p-attempt__figure img {
  max-width: 58rem;
}
.p-attempt-two {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #fff;
  padding: 4rem 0;
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .p-attempt-two {
    padding: 2rem 0;
    margin-top: 7rem;
  }
}
.p-attempt-two h2 {
  text-align: center;
  font-size: 3rem;
  line-height: 1.33;
}
@media screen and (max-width: 768px) {
  .p-attempt-two h2 {
    font-size: 2.2rem;
  }
}
.p-attempt-two__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-attempt-two__item {
  width: 50%;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-attempt-two__item {
    width: 100%;
  }
}
.p-attempt-two__item dt {
  color: #1eb7cb;
  line-height: 1.25;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-attempt-two__item dt {
    font-size: 1.8rem;
  }
}
.p-attempt-two__item dd {
  font-size: 1.4rem;
  line-height: 2.14;
  margin-top: 0.7em;
}
@media screen and (max-width: 768px) {
  .p-attempt-two__item dd {
    font-size: 1.2rem;
  }
}
.p-attempt-construction {
  margin-top: 13rem;
}
@media screen and (max-width: 768px) {
  .p-attempt-construction {
    margin-top: 6rem;
  }
}
.p-attempt-training {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .p-attempt-training {
    margin-top: 6rem;
  }
}

.p-value__figure {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-value__figure {
    margin-top: 3rem;
  }
}
.p-value__copy {
  text-align: center;
  color: #1eb7cb;
  font-size: 4rem;
  margin-top: 0.8em;
}
@media screen and (max-width: 768px) {
  .p-value__copy {
    line-height: 1.4;
    font-size: 2.2rem;
  }
}

.p-post__header {
  padding-top: 3.6rem;
}
.p-post__header time {
  font-size: 1.4rem;
  font-weight: 400;
}
.p-post__header h1 {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .p-post__header h1 {
    font-size: 2.4rem;
  }
}
.p-post__header h1 {
  margin-top: 0.3em;
  line-height: 1.61;
}
.p-post__header h1 span {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-post__header h1 span {
    font-size: 1.4rem;
  }
}
.p-post__header h1 span {
  display: block;
}
.p-post__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  min-height: initial;
  padding: 0;
}
.p-post__category li + li {
  margin-top: 0;
}
.p-post__contents {
  color: #000;
  font-size: 1.8rem;
  margin-top: 5rem;
  line-height: 2;
  font-weight: 400;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .p-post__contents {
    margin-top: 3rem;
    font-size: 1.4rem;
  }
}
.p-post__contents > *:first-child {
  margin-top: 0;
}
.p-post__contents > *:last-child {
  margin-bottom: 0;
}
.p-post__contents {
  /* 見出し */
}
.p-post__contents h2,
.p-post__contents h3 {
  line-height: 1.5;
  font-weight: 800;
}
.p-post__contents h2 {
  font-size: 2rem;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-post__contents h2 {
    font-size: 1.8rem;
  }
}
.p-post__contents h3 {
  font-size: 2rem;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-post__contents h3 {
    font-size: 1.6rem;
  }
}
.p-post__contents h3 + p {
  margin-top: 0;
}
.p-post__contents {
  /* 段落 */
}
.p-post__contents p {
  margin: 0.5em 0 1.4em;
}
.p-post__contents p + p {
  margin-top: -1.4em;
}
.p-post__contents {
  /* リンク */
}
.p-post__contents a {
  color: #1565c0;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.p-post__contents {
  /* リスト */
}
.p-post__contents ul,
.p-post__contents ol {
  margin: 0 0 1.4em 1.5em;
  padding: 0;
}
.p-post__contents ul {
  list-style: disc;
}
.p-post__contents ol {
  list-style: decimal;
}
.p-post__contents li {
  margin: 0.35em 0;
}
.p-post__contents li > ul,
.p-post__contents li > ol {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.p-post__contents {
  /* 引用 */
}
.p-post__contents blockquote {
  margin: 2em 0;
  padding-left: 1em;
  border-left: 0.3rem solid #ccc;
  color: #444;
}
.p-post__contents blockquote p:last-child {
  margin-bottom: 0;
}
.p-post__contents {
  /* 区切り線 */
}
.p-post__contents hr {
  border: 0;
  border-top: 0.1rem solid #ddd;
  margin: 2em 0;
}
.p-post__contents {
  /* 画像 */
}
.p-post__contents img {
  max-width: 100%;
  height: auto;
  width: auto;
  vertical-align: bottom;
}
.p-post__contents figure {
  margin: 2em auto;
}
.p-post__contents figure img {
  display: block;
}
.p-post__contents figcaption {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.3em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-post__contents figcaption {
    font-size: 1.8rem;
  }
}
.p-post__contents {
  /* テーブル */
}
.p-post__contents table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}
.p-post__contents th,
.p-post__contents td {
  padding: 0.75em 1em;
  border: 0.1rem solid #ddd;
  text-align: left;
  vertical-align: top;
}
.p-post__contents th {
  font-weight: 700;
  background: #f8f8f8;
}
.p-post__contents {
  /* コード */
}
.p-post__contents code {
  padding: 0.15em 0.35em;
  background: #f5f5f5;
  font-family: Consolas, Menlo, monospace;
  font-size: 0.9em;
}
.p-post__contents pre {
  margin: 2em 0;
  padding: 1em;
  overflow-x: auto;
  background: #f5f5f5;
  font-family: Consolas, Menlo, monospace;
  line-height: 1.7;
}
.p-post__contents pre code {
  padding: 0;
  background: transparent;
}
.p-post__contents {
  /* WordPress画像配置 */
}
.p-post__contents .alignleft {
  float: left;
  margin: 0.4em 1.2em 1em 0;
}
.p-post__contents .alignright {
  float: right;
  margin: 0.4em 0 1em 1.2em;
}
.p-post__contents .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-post__contents .p-post__contents::after {
  content: "";
  display: block;
  clear: both;
}
.p-post__contents .wp-caption {
  max-width: 100%;
  margin: 2em 0;
}
.p-post__contents {
  /* レスポンシブ */
}
@media (max-width: 767px) {
  .p-post__contents .alignleft,
  .p-post__contents .alignright {
    float: none;
    display: block;
    margin: 1.5em auto;
  }
}
.p-post__2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4%;
     -moz-column-gap: 4%;
          column-gap: 4%;
}
@media screen and (max-width: 500px) {
  .p-post__2col {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .p-post__2col > * {
    width: 100%;
  }
}
.p-post__reference {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-post__reference {
    margin-top: 5rem;
  }
}
.p-post__reference p {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-post__reference p {
    font-size: 1.3rem;
  }
}
.p-post__reference a {
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  margin-top: 0.5em;
  word-break: break-all;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-post__reference a {
    font-size: 1.4rem;
  }
}
.p-post__reference a + p {
  margin-top: 3em;
}
.p-post__reference a:hover {
  text-decoration: underline;
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-inline-block {
  display: inline-block;
}
.u-d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-d-inline {
  display: inline;
}
@media screen and (max-width: 500px) {
  .u-d-sp-none {
    display: none;
  }
  .u-d-sp-block {
    display: block;
  }
  .u-d-sp-inline-block {
    display: inline-block;
  }
  .u-d-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-sp-inline {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .u-d-tb-none {
    display: none;
  }
  .u-d-tb-block {
    display: block;
  }
  .u-d-tb-inline-block {
    display: inline-block;
  }
  .u-d-tb-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-tb-inline {
    display: inline;
  }
}
@media screen and (max-width: 960px) {
  .u-d-pc-none {
    display: none;
  }
  .u-d-pc-block {
    display: block;
  }
  .u-d-pc-inline-block {
    display: inline-block;
  }
  .u-d-pc-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-pc-inline {
    display: inline;
  }
}

.u-m-0auto {
  margin: 0 auto !important;
}
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-0_5 {
  margin-top: 0.5em !important;
}
.u-mt-1 {
  margin-top: 1em !important;
}
.u-mt-1_5 {
  margin-top: 1.5em !important;
}
.u-mt-2 {
  margin-top: 2em !important;
}
.u-mt-2_5 {
  margin-top: 2.5em !important;
}
.u-mt-3 {
  margin-top: 3em !important;
}
.u-mt-3_5 {
  margin-top: 3.5em !important;
}
.u-mt-4 {
  margin-top: 4em !important;
}
.u-mt-4_5 {
  margin-top: 4.5em !important;
}
.u-mt-5 {
  margin-top: 5em !important;
}
.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mb-0_5 {
  margin-bottom: 0.5em !important;
}
.u-mb-1 {
  margin-bottom: 1em !important;
}
.u-mb-1_5 {
  margin-bottom: 1.5em !important;
}
.u-mb-2 {
  margin-bottom: 2em !important;
}
.u-mb-2_5 {
  margin-bottom: 2.5em !important;
}
.u-mb-3 {
  margin-bottom: 3em !important;
}
.u-mb-3_5 {
  margin-bottom: 3.5em !important;
}
.u-mb-4 {
  margin-bottom: 4em !important;
}
.u-mb-4_5 {
  margin-bottom: 4.5em !important;
}
.u-mb-5 {
  margin-bottom: 5em !important;
}
.u-ml-0 {
  margin-left: 0 !important;
}
.u-ml-0_5 {
  margin-left: 0.5em !important;
}
.u-ml-1 {
  margin-left: 1em !important;
}
.u-ml-1_5 {
  margin-left: 1.5em !important;
}
.u-ml-2 {
  margin-left: 2em !important;
}
.u-ml-2_5 {
  margin-left: 2.5em !important;
}
.u-ml-3 {
  margin-left: 3em !important;
}
.u-ml-3_5 {
  margin-left: 3.5em !important;
}
.u-ml-4 {
  margin-left: 4em !important;
}
.u-ml-4_5 {
  margin-left: 4.5em !important;
}
.u-ml-5 {
  margin-left: 5em !important;
}
.u-mr-0 {
  margin-right: 0 !important;
}
.u-mr-0_5 {
  margin-right: 0.5em !important;
}
.u-mr-1 {
  margin-right: 1em !important;
}
.u-mr-1_5 {
  margin-right: 1.5em !important;
}
.u-mr-2 {
  margin-right: 2em !important;
}
.u-mr-2_5 {
  margin-right: 2.5em !important;
}
.u-mr-3 {
  margin-right: 3em !important;
}
.u-mr-3_5 {
  margin-right: 3.5em !important;
}
.u-mr-4 {
  margin-right: 4em !important;
}
.u-mr-4_5 {
  margin-right: 4.5em !important;
}
.u-mr-5 {
  margin-right: 5em !important;
}

.u-mr-0auto {
  margin: 0 auto !important;
}
.u-mrt-0 {
  margin-top: 0 !important;
}
.u-mrt-0_5 {
  margin-top: 0.5rem !important;
}
.u-mrt-1 {
  margin-top: 1rem !important;
}
.u-mrt-1_5 {
  margin-top: 1.5rem !important;
}
.u-mrt-2 {
  margin-top: 2rem !important;
}
.u-mrt-2_5 {
  margin-top: 2.5rem !important;
}
.u-mrt-3 {
  margin-top: 3rem !important;
}
.u-mrt-3_5 {
  margin-top: 3.5rem !important;
}
.u-mrt-4 {
  margin-top: 4rem !important;
}
.u-mrt-4_5 {
  margin-top: 4.5rem !important;
}
.u-mrt-5 {
  margin-top: 5rem !important;
}
.u-mrb-0 {
  margin-bottom: 0 !important;
}
.u-mrb-0_5 {
  margin-bottom: 0.5rem !important;
}
.u-mrb-1 {
  margin-bottom: 1rem !important;
}
.u-mrb-1_5 {
  margin-bottom: 1.5rem !important;
}
.u-mrb-2 {
  margin-bottom: 2rem !important;
}
.u-mrb-2_5 {
  margin-bottom: 2.5rem !important;
}
.u-mrb-3 {
  margin-bottom: 3rem !important;
}
.u-mrb-3_5 {
  margin-bottom: 3.5rem !important;
}
.u-mrb-4 {
  margin-bottom: 4rem !important;
}
.u-mrb-4_5 {
  margin-bottom: 4.5rem !important;
}
.u-mrb-5 {
  margin-bottom: 5rem !important;
}
.u-mrl-0 {
  margin-left: 0 !important;
}
.u-mrl-0_5 {
  margin-left: 0.5rem !important;
}
.u-mrl-1 {
  margin-left: 1rem !important;
}
.u-mrl-1_5 {
  margin-left: 1.5rem !important;
}
.u-mrl-2 {
  margin-left: 2rem !important;
}
.u-mrl-2_5 {
  margin-left: 2.5rem !important;
}
.u-mrl-3 {
  margin-left: 3rem !important;
}
.u-mrl-3_5 {
  margin-left: 3.5rem !important;
}
.u-mrl-4 {
  margin-left: 4rem !important;
}
.u-mrl-4_5 {
  margin-left: 4.5rem !important;
}
.u-mrl-5 {
  margin-left: 5rem !important;
}
.u-mrr-0 {
  margin-right: 0 !important;
}
.u-mrr-0_5 {
  margin-right: 0.5rem !important;
}
.u-mrr-1 {
  margin-right: 1rem !important;
}
.u-mrr-1_5 {
  margin-right: 1.5rem !important;
}
.u-mrr-2 {
  margin-right: 2rem !important;
}
.u-mrr-2_5 {
  margin-right: 2.5rem !important;
}
.u-mrr-3 {
  margin-right: 3rem !important;
}
.u-mrr-3_5 {
  margin-right: 3.5rem !important;
}
.u-mrr-4 {
  margin-right: 4rem !important;
}
.u-mrr-4_5 {
  margin-right: 4.5rem !important;
}
.u-mrr-5 {
  margin-right: 5rem !important;
}

.u-align-left {
  text-align: left;
}
.u-align-center {
  text-align: center;
}
.u-align-right {
  text-align: right;
}
.u-align-justify {
  text-align: justify;
}
@media screen and (max-width: 500px) {
  .u-align-sp-left {
    text-align: left;
  }
  .u-align-sp-center {
    text-align: center;
  }
  .u-align-sp-right {
    text-align: right;
  }
  .u-align-sp-justify {
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  .u-align-tb-left {
    text-align: left;
  }
  .u-align-tb-center {
    text-align: center;
  }
  .u-align-tb-right {
    text-align: right;
  }
  .u-align-tb-justify {
    text-align: justify;
  }
}
@media screen and (max-width: 960px) {
  .u-align-pc-left {
    text-align: left;
  }
  .u-align-pc-center {
    text-align: center;
  }
  .u-align-pc-right {
    text-align: right;
  }
  .u-align-pc-justify {
    text-align: justify;
  }
}

.u-flex-start-start, .u-flex-start-center, .u-flex-start-end, .u-flex-start-stretch, .u-flex-start-baseline, .u-flex-center-start, .u-flex-center-center, .u-flex-center-end, .u-flex-center-stretch, .u-flex-center-baseline, .u-flex-end-start, .u-flex-end-center, .u-flex-end-end, .u-flex-end-stretch, .u-flex-end-baseline, .u-flex-between-start, .u-flex-between-center, .u-flex-between-end, .u-flex-between-stretch, .u-flex-between-baseline, .u-flex-around-start, .u-flex-around-center, .u-flex-around-end, .u-flex-around-stretch, .u-flex-around-baseline, .u-flex-evenly-start, .u-flex-evenly-center, .u-flex-evenly-end, .u-flex-evenly-stretch, .u-flex-evenly-baseline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.u-flex-start-start.u-flex-wrap, .u-flex-start-center.u-flex-wrap, .u-flex-start-end.u-flex-wrap, .u-flex-start-stretch.u-flex-wrap, .u-flex-start-baseline.u-flex-wrap, .u-flex-center-start.u-flex-wrap, .u-flex-center-center.u-flex-wrap, .u-flex-center-end.u-flex-wrap, .u-flex-center-stretch.u-flex-wrap, .u-flex-center-baseline.u-flex-wrap, .u-flex-end-start.u-flex-wrap, .u-flex-end-center.u-flex-wrap, .u-flex-end-end.u-flex-wrap, .u-flex-end-stretch.u-flex-wrap, .u-flex-end-baseline.u-flex-wrap, .u-flex-between-start.u-flex-wrap, .u-flex-between-center.u-flex-wrap, .u-flex-between-end.u-flex-wrap, .u-flex-between-stretch.u-flex-wrap, .u-flex-between-baseline.u-flex-wrap, .u-flex-around-start.u-flex-wrap, .u-flex-around-center.u-flex-wrap, .u-flex-around-end.u-flex-wrap, .u-flex-around-stretch.u-flex-wrap, .u-flex-around-baseline.u-flex-wrap, .u-flex-evenly-start.u-flex-wrap, .u-flex-evenly-center.u-flex-wrap, .u-flex-evenly-end.u-flex-wrap, .u-flex-evenly-stretch.u-flex-wrap, .u-flex-evenly-baseline.u-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.u-flex-start-start.u-flex-column, .u-flex-start-center.u-flex-column, .u-flex-start-end.u-flex-column, .u-flex-start-stretch.u-flex-column, .u-flex-start-baseline.u-flex-column, .u-flex-center-start.u-flex-column, .u-flex-center-center.u-flex-column, .u-flex-center-end.u-flex-column, .u-flex-center-stretch.u-flex-column, .u-flex-center-baseline.u-flex-column, .u-flex-end-start.u-flex-column, .u-flex-end-center.u-flex-column, .u-flex-end-end.u-flex-column, .u-flex-end-stretch.u-flex-column, .u-flex-end-baseline.u-flex-column, .u-flex-between-start.u-flex-column, .u-flex-between-center.u-flex-column, .u-flex-between-end.u-flex-column, .u-flex-between-stretch.u-flex-column, .u-flex-between-baseline.u-flex-column, .u-flex-around-start.u-flex-column, .u-flex-around-center.u-flex-column, .u-flex-around-end.u-flex-column, .u-flex-around-stretch.u-flex-column, .u-flex-around-baseline.u-flex-column, .u-flex-evenly-start.u-flex-column, .u-flex-evenly-center.u-flex-column, .u-flex-evenly-end.u-flex-column, .u-flex-evenly-stretch.u-flex-column, .u-flex-evenly-baseline.u-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.u-flex-start-start.u-flex-row-reverse, .u-flex-start-center.u-flex-row-reverse, .u-flex-start-end.u-flex-row-reverse, .u-flex-start-stretch.u-flex-row-reverse, .u-flex-start-baseline.u-flex-row-reverse, .u-flex-center-start.u-flex-row-reverse, .u-flex-center-center.u-flex-row-reverse, .u-flex-center-end.u-flex-row-reverse, .u-flex-center-stretch.u-flex-row-reverse, .u-flex-center-baseline.u-flex-row-reverse, .u-flex-end-start.u-flex-row-reverse, .u-flex-end-center.u-flex-row-reverse, .u-flex-end-end.u-flex-row-reverse, .u-flex-end-stretch.u-flex-row-reverse, .u-flex-end-baseline.u-flex-row-reverse, .u-flex-between-start.u-flex-row-reverse, .u-flex-between-center.u-flex-row-reverse, .u-flex-between-end.u-flex-row-reverse, .u-flex-between-stretch.u-flex-row-reverse, .u-flex-between-baseline.u-flex-row-reverse, .u-flex-around-start.u-flex-row-reverse, .u-flex-around-center.u-flex-row-reverse, .u-flex-around-end.u-flex-row-reverse, .u-flex-around-stretch.u-flex-row-reverse, .u-flex-around-baseline.u-flex-row-reverse, .u-flex-evenly-start.u-flex-row-reverse, .u-flex-evenly-center.u-flex-row-reverse, .u-flex-evenly-end.u-flex-row-reverse, .u-flex-evenly-stretch.u-flex-row-reverse, .u-flex-evenly-baseline.u-flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.u-flex-start-start.u-flex-column-reverse, .u-flex-start-center.u-flex-column-reverse, .u-flex-start-end.u-flex-column-reverse, .u-flex-start-stretch.u-flex-column-reverse, .u-flex-start-baseline.u-flex-column-reverse, .u-flex-center-start.u-flex-column-reverse, .u-flex-center-center.u-flex-column-reverse, .u-flex-center-end.u-flex-column-reverse, .u-flex-center-stretch.u-flex-column-reverse, .u-flex-center-baseline.u-flex-column-reverse, .u-flex-end-start.u-flex-column-reverse, .u-flex-end-center.u-flex-column-reverse, .u-flex-end-end.u-flex-column-reverse, .u-flex-end-stretch.u-flex-column-reverse, .u-flex-end-baseline.u-flex-column-reverse, .u-flex-between-start.u-flex-column-reverse, .u-flex-between-center.u-flex-column-reverse, .u-flex-between-end.u-flex-column-reverse, .u-flex-between-stretch.u-flex-column-reverse, .u-flex-between-baseline.u-flex-column-reverse, .u-flex-around-start.u-flex-column-reverse, .u-flex-around-center.u-flex-column-reverse, .u-flex-around-end.u-flex-column-reverse, .u-flex-around-stretch.u-flex-column-reverse, .u-flex-around-baseline.u-flex-column-reverse, .u-flex-evenly-start.u-flex-column-reverse, .u-flex-evenly-center.u-flex-column-reverse, .u-flex-evenly-end.u-flex-column-reverse, .u-flex-evenly-stretch.u-flex-column-reverse, .u-flex-evenly-baseline.u-flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.u-flex-start-start.u-flex-grow-1, .u-flex-start-center.u-flex-grow-1, .u-flex-start-end.u-flex-grow-1, .u-flex-start-stretch.u-flex-grow-1, .u-flex-start-baseline.u-flex-grow-1, .u-flex-center-start.u-flex-grow-1, .u-flex-center-center.u-flex-grow-1, .u-flex-center-end.u-flex-grow-1, .u-flex-center-stretch.u-flex-grow-1, .u-flex-center-baseline.u-flex-grow-1, .u-flex-end-start.u-flex-grow-1, .u-flex-end-center.u-flex-grow-1, .u-flex-end-end.u-flex-grow-1, .u-flex-end-stretch.u-flex-grow-1, .u-flex-end-baseline.u-flex-grow-1, .u-flex-between-start.u-flex-grow-1, .u-flex-between-center.u-flex-grow-1, .u-flex-between-end.u-flex-grow-1, .u-flex-between-stretch.u-flex-grow-1, .u-flex-between-baseline.u-flex-grow-1, .u-flex-around-start.u-flex-grow-1, .u-flex-around-center.u-flex-grow-1, .u-flex-around-end.u-flex-grow-1, .u-flex-around-stretch.u-flex-grow-1, .u-flex-around-baseline.u-flex-grow-1, .u-flex-evenly-start.u-flex-grow-1, .u-flex-evenly-center.u-flex-grow-1, .u-flex-evenly-end.u-flex-grow-1, .u-flex-evenly-stretch.u-flex-grow-1, .u-flex-evenly-baseline.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.u-flex-start-start.u-flex-grow-0, .u-flex-start-center.u-flex-grow-0, .u-flex-start-end.u-flex-grow-0, .u-flex-start-stretch.u-flex-grow-0, .u-flex-start-baseline.u-flex-grow-0, .u-flex-center-start.u-flex-grow-0, .u-flex-center-center.u-flex-grow-0, .u-flex-center-end.u-flex-grow-0, .u-flex-center-stretch.u-flex-grow-0, .u-flex-center-baseline.u-flex-grow-0, .u-flex-end-start.u-flex-grow-0, .u-flex-end-center.u-flex-grow-0, .u-flex-end-end.u-flex-grow-0, .u-flex-end-stretch.u-flex-grow-0, .u-flex-end-baseline.u-flex-grow-0, .u-flex-between-start.u-flex-grow-0, .u-flex-between-center.u-flex-grow-0, .u-flex-between-end.u-flex-grow-0, .u-flex-between-stretch.u-flex-grow-0, .u-flex-between-baseline.u-flex-grow-0, .u-flex-around-start.u-flex-grow-0, .u-flex-around-center.u-flex-grow-0, .u-flex-around-end.u-flex-grow-0, .u-flex-around-stretch.u-flex-grow-0, .u-flex-around-baseline.u-flex-grow-0, .u-flex-evenly-start.u-flex-grow-0, .u-flex-evenly-center.u-flex-grow-0, .u-flex-evenly-end.u-flex-grow-0, .u-flex-evenly-stretch.u-flex-grow-0, .u-flex-evenly-baseline.u-flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.u-flex-start-start.u-flex-shrink-1, .u-flex-start-center.u-flex-shrink-1, .u-flex-start-end.u-flex-shrink-1, .u-flex-start-stretch.u-flex-shrink-1, .u-flex-start-baseline.u-flex-shrink-1, .u-flex-center-start.u-flex-shrink-1, .u-flex-center-center.u-flex-shrink-1, .u-flex-center-end.u-flex-shrink-1, .u-flex-center-stretch.u-flex-shrink-1, .u-flex-center-baseline.u-flex-shrink-1, .u-flex-end-start.u-flex-shrink-1, .u-flex-end-center.u-flex-shrink-1, .u-flex-end-end.u-flex-shrink-1, .u-flex-end-stretch.u-flex-shrink-1, .u-flex-end-baseline.u-flex-shrink-1, .u-flex-between-start.u-flex-shrink-1, .u-flex-between-center.u-flex-shrink-1, .u-flex-between-end.u-flex-shrink-1, .u-flex-between-stretch.u-flex-shrink-1, .u-flex-between-baseline.u-flex-shrink-1, .u-flex-around-start.u-flex-shrink-1, .u-flex-around-center.u-flex-shrink-1, .u-flex-around-end.u-flex-shrink-1, .u-flex-around-stretch.u-flex-shrink-1, .u-flex-around-baseline.u-flex-shrink-1, .u-flex-evenly-start.u-flex-shrink-1, .u-flex-evenly-center.u-flex-shrink-1, .u-flex-evenly-end.u-flex-shrink-1, .u-flex-evenly-stretch.u-flex-shrink-1, .u-flex-evenly-baseline.u-flex-shrink-1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.u-flex-start-start.u-flex-shrink-o, .u-flex-start-center.u-flex-shrink-o, .u-flex-start-end.u-flex-shrink-o, .u-flex-start-stretch.u-flex-shrink-o, .u-flex-start-baseline.u-flex-shrink-o, .u-flex-center-start.u-flex-shrink-o, .u-flex-center-center.u-flex-shrink-o, .u-flex-center-end.u-flex-shrink-o, .u-flex-center-stretch.u-flex-shrink-o, .u-flex-center-baseline.u-flex-shrink-o, .u-flex-end-start.u-flex-shrink-o, .u-flex-end-center.u-flex-shrink-o, .u-flex-end-end.u-flex-shrink-o, .u-flex-end-stretch.u-flex-shrink-o, .u-flex-end-baseline.u-flex-shrink-o, .u-flex-between-start.u-flex-shrink-o, .u-flex-between-center.u-flex-shrink-o, .u-flex-between-end.u-flex-shrink-o, .u-flex-between-stretch.u-flex-shrink-o, .u-flex-between-baseline.u-flex-shrink-o, .u-flex-around-start.u-flex-shrink-o, .u-flex-around-center.u-flex-shrink-o, .u-flex-around-end.u-flex-shrink-o, .u-flex-around-stretch.u-flex-shrink-o, .u-flex-around-baseline.u-flex-shrink-o, .u-flex-evenly-start.u-flex-shrink-o, .u-flex-evenly-center.u-flex-shrink-o, .u-flex-evenly-end.u-flex-shrink-o, .u-flex-evenly-stretch.u-flex-shrink-o, .u-flex-evenly-baseline.u-flex-shrink-o {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.u-flex-start-start, .u-flex-start-center, .u-flex-start-end, .u-flex-start-stretch, .u-flex-start-baseline {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.u-flex-center-start, .u-flex-center-center, .u-flex-center-end, .u-flex-center-stretch, .u-flex-center-baseline {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.u-flex-end-start, .u-flex-end-center, .u-flex-end-end, .u-flex-end-stretch, .u-flex-end-baseline {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.u-flex-between-start, .u-flex-between-center, .u-flex-between-end, .u-flex-between-stretch, .u-flex-between-baseline {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.u-flex-around-start, .u-flex-around-center, .u-flex-around-end, .u-flex-around-stretch, .u-flex-around-baseline {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.u-flex-evenly-start, .u-flex-evenly-center, .u-flex-evenly-end, .u-flex-evenly-stretch, .u-flex-evenly-baseline {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.u-flex-start-start, .u-flex-center-start, .u-flex-end-start, .u-flex-between-start, .u-flex-around-start, .u-flex-evenly-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.u-flex-start-center, .u-flex-center-center, .u-flex-end-center, .u-flex-between-center, .u-flex-around-center, .u-flex-evenly-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-flex-start-end, .u-flex-center-end, .u-flex-end-end, .u-flex-between-end, .u-flex-around-end, .u-flex-evenly-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.u-flex-start-stretch, .u-flex-center-stretch, .u-flex-end-stretch, .u-flex-between-stretch, .u-flex-around-stretch, .u-flex-evenly-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.u-flex-start-baseline, .u-flex-center-baseline, .u-flex-end-baseline, .u-flex-between-baseline, .u-flex-around-baseline, .u-flex-evenly-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
/*# sourceMappingURL=dx.css.map */