:root {
  --basic-font-size: 16px;
  --basic-line-height: 1.8;
  --color-text: #000;
  --color-primary: #1a4d98;
  --color-primary-light: #b9e6ff;
  --color-primary-lighter: #f5feff;
  --color-gray-1: #808080;
  --color-white: #fff;
  --color-black: #000;
  --font-family: "Zen Kaku Gothic New", sans-serif;
  --font-family-en: "Montserrat", sans-serif;
}

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  font-family: var(--font-family);
  font-size: var(--basic-font-size);
  line-height: var(--basic-line-height);
  color: var(--color-text);
  background-color: var(--color-primary-lighter);
}

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

h1,
h2,
h3,
h4 {
  text-wrap: wrap;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

img,
iframe {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

:root {
  --header-height: 80px;
}
@media screen and (max-width: 1023px) {
  :root {
    --header-height: 62px;
  }
}

body {
  padding-top: var(--header-height);
}
@media screen and (max-width: 1023px) {
  body.is-menu-open {
    overflow: hidden;
  }
}

.l-header {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-header .u-sp-only {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .l-header .u-sp-only {
    display: block !important;
  }
}
.l-header .u-pc-only {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .l-header .u-pc-only {
    display: none !important;
  }
}
.l-header.is-fixed {
  position: fixed;
  transform: translateY(0);
}
.l-header.is-fixed.is-entering {
  transform: translateY(-100%);
  animation: headerSlideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.l-header.is-fixed.is-leaving {
  animation: headerSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes headerSlideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.l-header__logo {
  width: 180px;
}
.l-header__logo a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  width: 29px;
}
@media screen and (max-width: 1023px) {
  .l-header__hamburger {
    display: flex;
  }
}
.l-header__hamburger.is-active .l-header__hamburgerIcon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger.is-active .l-header__hamburgerIcon span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburgerIcon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.l-header__hamburgerIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.l-header__hamburgerIcon span {
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.l-header__hamburgerText {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 8px;
  line-height: 1.219;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-primary-lighter);
    z-index: 9998;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 8px 20px 40px;
  }
  .l-header__nav.is-open {
    transform: translateX(0);
  }
}

.l-header__navList {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__navList {
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: auto;
  }
}

.l-header__navListItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__navListItem {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--color-primary-light);
  }
}
.l-header__navListItem > a {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-black);
  transition: opacity 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header__navListItem > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 18px;
    text-align: center;
    padding: 24px 0;
  }
}
@media (any-hover: hover) {
  .l-header__navListItem > a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__btnWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-primary-light);
  }
}

.l-header__btn {
  display: block;
  max-width: 139px;
  width: 100%;
  transition: opacity 0.3s;
}
.l-header__btn img {
  display: block;
  width: 100%;
  height: auto;
}
@media (any-hover: hover) {
  .l-header__btn:hover {
    opacity: 0.7;
  }
}

.l-footer {
  margin-top: 180px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 80px;
  }
}
.l-footer__inner {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 40px 0;
  }
}
.l-footer__logo {
  margin: 0 auto;
  max-width: 96px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    max-width: 72px;
  }
}
.l-footer__logo a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}
.l-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-wrapper {
  overflow: clip;
}

.p-top-fv {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.p-top-fv img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-fv__inner {
  position: relative;
  box-shadow: 20px 20px 0 0 var(--color-primary-light);
}
@media screen and (max-width: 767px) {
  .p-top-fv__inner {
    box-shadow: 10px 10px 0 0 var(--color-primary-light);
  }
}

.p-top-fv__title {
  position: absolute;
  bottom: 26.2206148282%;
  left: 12.2641509434%;
  width: 36.320754717%;
}
@media screen and (max-width: 767px) {
  .p-top-fv__title {
    bottom: 5.9523809524%;
    left: 2.9761904762%;
    width: 66.6666666667%;
  }
}

.p-top-content {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-top-content {
    padding-top: 60px;
  }
}

.p-top-articles {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 840px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-articles {
    gap: 40px;
  }
}

.p-top-article {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-article {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}

.p-top-article__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  width: 46%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-article__body {
    display: contents;
  }
}

.p-top-article__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-article__heading {
    order: 1;
    padding-top: 32px;
  }
}

.p-top-article__num {
  position: absolute;
  top: -32px;
  z-index: -1;
  width: auto;
  height: 100px;
}
.p-top-article:nth-child(odd) .p-top-article__num {
  left: -35px;
}
.p-top-article:nth-child(even) .p-top-article__num {
  right: -38px;
}
@media screen and (max-width: 767px) {
  .p-top-article__num {
    top: 0;
    height: 80px;
  }
  .p-top-article:nth-child(odd) .p-top-article__num, .p-top-article:nth-child(even) .p-top-article__num {
    left: -10px;
    right: auto;
  }
}

.p-top-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-top-article__name {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-article__name {
    font-size: 16px;
  }
}

.p-top-article__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-article__tag {
    font-size: 14px;
  }
}

.p-top-article__subtitle {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-article__subtitle {
    font-size: 20px;
  }
}

.p-top-article__desc {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-top-article__desc {
    order: 2;
    margin-top: 16px;
  }
}

.p-top-article__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 184px;
  padding: 4px 8px 6px;
  border: 1px solid var(--color-black);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-article__btn {
    order: 4;
    width: 100%;
    margin-top: 32px;
    font-size: 13px;
  }
}
.p-top-article__btn--disabled {
  background-color: var(--color-gray-1);
  color: var(--color-white);
  border: none;
  text-transform: uppercase;
  padding: 4px 8px;
}

@media (any-hover: hover) {
  a.p-top-article__btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
  }
}

.p-top-article__img {
  width: 49.5%;
  flex-shrink: 0;
}
.p-top-article__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 396/263;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-article__img {
  box-shadow: 20px 20px 0 0 var(--color-primary-light);
}
@media screen and (max-width: 767px) {
  .p-top-article__img {
    order: 3;
    width: 100%;
    margin-top: 16px;
    box-shadow: 10px 10px 0 0 var(--color-primary-light);
  }
}

.p-article {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-article {
    padding-top: 10px;
  }
}

.p-article__inner {
  max-width: 900px;
  padding: 0 10px;
  margin: 0 auto;
}

.p-article-fv {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
}

.p-article-fv__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-article-fv__inner {
    padding: 0;
  }
}

.p-article-fv__trigger {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
}
.p-article-fv__trigger:hover, .p-article-fv__trigger:focus-visible {
  opacity: 0.8;
}
.p-article-fv__trigger.is-playing:hover, .p-article-fv__trigger.is-playing:focus-visible {
  opacity: 1;
}

.p-article-fv__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11.6037735849%;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-article-fv__play {
    width: 62px;
    height: 62px;
  }
}

.p-article-fv__img {
  aspect-ratio: 1060/553;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.p-article-fv__img iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-article__content {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  font-weight: 700;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-article__content {
    padding: 32px 20px;
  }
}

.p-article__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
}

.p-article__tag {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 16px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-article__tag {
    font-size: 13px;
  }
}

.p-article__subTitle {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-article__subTitle {
    font-size: 15px;
  }
}

.p-article__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-article__title {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .p-article__title span {
    letter-spacing: 0.44px;
  }
}

@media screen and (max-width: 767px) {
  .p-article__titleAccent {
    letter-spacing: -0.25em;
  }
}

.p-article__lead {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  gap: 16px;
  padding: 32px 0;
  border-top: 2px solid var(--color-primary-light);
  border-bottom: 2px solid var(--color-primary-light);
}
@media screen and (max-width: 767px) {
  .p-article__lead {
    font-size: 16px;
  }
}

.p-article__profiles {
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-article__profiles {
    gap: 32px;
  }
}

.p-article__comment {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-article__comment {
    font-size: 15px;
  }
}

.p-article__summaryContent {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-article__summaryContent {
    padding-top: 32px;
  }
}

.p-article__summary {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 900;
}
.p-article__figcaption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-article__figcaption {
    font-size: 13px;
  }
}

.p-article__profileTitle {
  color: var(--color-primary-light);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-article__profileTitle {
    font-size: 13px;
  }
}

.p-article__profileCard {
  display: flex;
  justify-content: space-between;
  gap: 52px;
}
@media screen and (max-width: 767px) {
  .p-article__profileCard {
    flex-direction: column;
    gap: 32px;
  }
}

.p-article__profile:nth-child(even) .p-article__profileCard {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-article__profile:nth-child(even) .p-article__profileCard {
    flex-direction: column;
  }
}

.p-article__profileImg {
  box-shadow: 20px 20px 0 0 var(--color-primary-light);
  height: -moz-fit-content;
  height: fit-content;
  max-width: 360px;
  width: 100%;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .p-article__profileImg {
    width: 100%;
    max-width: none;
    box-shadow: 10px 10px 0 0 var(--color-primary-light);
  }
}

.p-article__profile:nth-child(even) .p-article__profileImg {
  transform: translateX(-20px);
}
@media screen and (max-width: 767px) {
  .p-article__profile:nth-child(even) .p-article__profileImg {
    transform: translateX(0);
  }
}

.p-article__profileImg img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-article__profileImg img {
    width: 100%;
  }
}

.p-article__profileBody {
  width: 48.5%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-article__profileBody {
    width: 100%;
  }
}

.p-article__profile:nth-child(even) .p-article__profileBody {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .p-article__profile:nth-child(even) .p-article__profileBody {
    width: 100%;
  }
}

.p-article__profileName {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 8px;
}

.p-article__profilePost {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .p-article__profileDescription {
    font-size: 15px;
  }
}

.p-article__img {
  width: 100%;
}

.p-article__img img {
  width: 100%;
  height: auto;
}

.p-article__backToTop {
  position: fixed;
  bottom: 90px;
  right: 5.8333333333%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media (max-width: 1100px) {
  .p-article__backToTop {
    display: none;
  }
}

.p-article__backToTop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-article__nav {
  padding-right: 4px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-article__nav {
    padding-right: 0;
  }
}

.p-article__navList {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-article__navList {
    flex-direction: column;
    gap: 16px;
  }
}

.p-article__navListItem {
  width: calc((100% - 64px) / 3);
  border: 1px solid var(--color-primary-light);
}
@media screen and (max-width: 767px) {
  .p-article__navListItem {
    width: 100%;
  }
}

.p-article__navLink {
  display: flex;
  align-items: center;
  padding: 12px 16px;
}
@media screen and (max-width: 767px) {
  .p-article__navLink {
    padding: 7px 16px;
  }
}

.p-article__navLinkText {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-article__navLinkText {
    font-size: 15px;
  }
}

.p-article__chapter {
  padding: 40px 0 24px;
  position: relative;
  border-bottom: 2px solid var(--color-primary-light);
}
@media screen and (max-width: 767px) {
  .p-article__chapter {
    padding: 32px 0 24px;
  }
}

.p-article__chapter::after {
  content: "";
  position: absolute;
  top: 54.5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-light);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-article__chapter::after {
    top: 44px;
  }
}

.p-article__chapterSubtitle {
  padding: 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0.05em;
  background-color: var(--color-primary-light);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-article__chapterSubtitle {
    font-size: 15px;
    line-height: 24px;
    margin-left: 20px;
  }
}

.p-article__chapterInner {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-article__chapterInner {
    padding: 0;
  }
}

.p-article__chapterContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-article__chapterTitle {
  font-size: 22px;
  font-weight: 900;
  line-height: 160%;
  padding-top: 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-article__chapterTitle {
    font-size: 20px;
  }
}

.u-pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-clear {
  overflow: hidden !important;
}

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

.u-text-bold {
  font-weight: bold;
}

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

.u-text-center-spLeft {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .u-text-center-spLeft {
    text-align: left;
  }
}

.u-text-left {
  text-align: left;
}

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

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.u-text-blue {
  color: #0055E6;
}

.u-text-skyblue {
  color: #3CBEFF;
}

.u-text-gray {
  color: #808080;
}

.u-text-red {
  color: #D6432D;
}

.u-border-skyblue {
  background-image: linear-gradient(transparent calc(100% - 8px), #B9E6FF 0);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}/*# sourceMappingURL=style.css.map */