@charset "UTF-8";
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
body {
  /* 4. Increase line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

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

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  margin: 0;
  padding: 0;
  color: rgba(42, 41, 48, 0.7);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Noto Sans", sans-serif;
}

a {
  color: #5156BE;
  text-decoration: underline;
}

.wrapper {
  position: relative;
}

.header {
  background: #FFF;
}
.header-brand {
  display: grid;
  margin-bottom: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  gap: 0.875rem;
  border-bottom: 1px solid rgba(42, 41, 48, 0.1);
}
.header-logo {
  width: 5.5rem;
  margin: 0;
}
.header-pagename {
  color: #5156BE;
  font-weight: 300;
  font-size: 1.125rem;
}
.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-item {
  font-weight: 500;
  font-size: 0.8125rem;
}
.nav-link {
  -webkit-transition: 0.2s;
  display: -webkit-box;
  display: flex;
  position: relative;
  transition: 0.2s;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.7rem 2rem;
  gap: 0 1rem;
  color: rgba(16, 16, 16, 0.5);
  text-decoration: none;
}
.nav-link::before {
  -webkit-transition: inherit;
  display: block;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #5156BE;
  content: "";
  opacity: 0;
  transition: inherit;
}
.nav-link.is-active {
  background-color: rgba(81, 86, 190, 0.05);
}
.nav-link.is-active::before {
  opacity: 1;
}
.nav-link.is-active .nav-number {
  color: #5156BE;
}
.nav-number {
  -webkit-transition: inherit;
  color: rgba(42, 41, 48, 0.25);
  font-size: 0.625rem;
  font-family: "Noto Sans Mono", monospace;
  transition: inherit;
}
.section-header {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(42, 41, 48, 0.1);
}
.section-header-row {
  display: grid;
  -webkit-box-align: end;
          align-items: end;
  gap: 2rem 0;
}
.section-block {
  padding: 4rem 0;
}

.inner {
  padding-inline: 1rem;
}

.footer {
  padding: 2.5rem 0;
}
.footer-info {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
.footer-info li {
  display: -webkit-box;
  display: flex;
  font-size: 0.625rem;
}
.footer-info li:not(:first-child)::before {
  display: block;
  width: 1px;
  height: 1rem;
  margin: 0 1.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
}

.copyright {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.625rem;
  text-align: center;
}

.welcome-header {
  padding: 3.125rem 0 4rem;
}
.welcome-title {
  margin-bottom: 2.5rem;
  color: #5156BE;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.welcome-copy {
  font-weight: 300;
  font-size: 7.5rem;
  line-height: 1;
}
.welcome-bg {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  overflow: hidden;
  background: -webkit-linear-gradient(top, #A4AAF0 96.9%, #C8C6F5 100%);
  background: linear-gradient(180deg, #A4AAF0 96.9%, #C8C6F5 100%);
}
.welcome-bg-box {
  position: relative;
  height: 35vw;
}
.welcome-bg-box::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-linear-gradient(top, rgba(168, 170, 228, 0) 0%, #5156BE 100%);
  background: linear-gradient(180deg, rgba(168, 170, 228, 0) 0%, #5156BE 100%);
  content: "";
}
.welcome-bg-box.-box1::before {
  height: 214%;
}
.welcome-bg-box.-box2::before {
  height: 185%;
}
.welcome-bg-box.-box3::before {
  height: 138%;
}
.welcome-bg-box.-box4::before {
  height: 93%;
}
.welcome-bg-box.-box5::before {
  height: 60%;
}
.welcome-bg-box.-box6::before {
  height: 35%;
}

.about {
  margin-top: 4rem;
  padding: 4rem 0 3rem;
}
.about-row {
  display: grid;
  gap: 2.5rem 6.4rem;
}
.about-item-title {
  margin-bottom: 1rem;
  color: #5156BE;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.logo-main {
  padding: 4rem 0 0;
}
.logo-block:not(:first-child) {
  margin-top: 4rem;
}
.logo-container {
  display: grid;
  gap: 3rem;
}
.logo-container.gap-narrow {
  gap: 1.5rem;
}
.logo-grid {
  display: grid;
  padding: 1px;
  gap: 1px;
  background-color: rgba(42, 41, 48, 0.1);
}
.logo-card {
  position: relative;
  background-color: #FFF;
  text-align: center;
}
.logo-card.no-content {
  padding: 1.5rem 0;
}
.logo-card-image {
  display: grid;
  z-index: 0;
  position: relative;
  place-items: center;
  aspect-ratio: 3/2;
  text-align: center;
}
.logo-card-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.logo-card-bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.logo-card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.logo-card-content {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  height: 3rem;
  padding: 0.25rem 1.5rem;
  gap: 0.25rem;
  border-top: 1px solid rgba(42, 41, 48, 0.1);
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1.5;
  font-family: "Noto Sans Mono", monospace;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}
.logo-card-title {
  margin: 0;
}
.logo-card-text {
  margin: 0;
  opacity: 0.5;
}
.logo-card-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.375rem 0.625rem;
  border: 1px solid #5156BE;
  border-radius: 1rem;
  background-color: #DCDDF5;
  color: #5156BE;
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1.2;
  font-family: "Noto Sans Mono", monospace;
  text-transform: uppercase;
}
.logo-box {
  display: grid;
  place-items: center;
  min-height: 12rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(42, 41, 48, 0.1);
  background-color: #FFF;
  text-align: center;
}
.logo-sizes-row {
  display: grid;
  grid-template-columns: 1fr 0.25fr;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 0 5rem;
  text-align: center;
}
.logo-dimension {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  -webkit-box-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.logo-dimension-logo {
  align-self: end;
}
.logo-dimension-line {
  position: relative;
  height: 1px;
  margin: 1rem 0 0.5rem;
  background-color: rgba(0, 0, 0, 0.24);
}
.logo-dimension-line::before, .logo-dimension-line::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 1px;
  height: 0.4rem;
  translate: 0 -50%;
  background-color: rgba(0, 0, 0, 0.24);
  content: "";
}
.logo-dimension-line::before {
  left: 0;
  width: 1px;
}
.logo-dimension-line::after {
  right: 0;
}
.logo-dimension-text {
  color: #101010;
  font-size: 0.75rem;
  font-family: "Noto Sans Mono", monospace;
  text-align: center;
}
.logo-partner-container {
  display: grid;
  padding: 1px;
  gap: 1.5rem;
}
.logo-partner-outer {
  display: grid;
  place-items: center;
}
.logo-partner-row {
  display: grid;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
}
.logo-partner-row.-partner1 {
  grid-template-columns: 1fr 1.15fr;
  width: 90%;
  max-width: 488px;
}
.logo-partner-row.-partner1 .logo-partner-item:first-child {
  padding: 0 8% 0 0%;
  border-right: 1px solid #101010;
}
.logo-partner-row.-partner1 .logo-partner-item:last-child {
  padding: 0 0 0 7.7%;
}
.logo-partner-row.-partner2 {
  grid-template-columns: 1fr 1.134fr;
  width: 84%;
  max-width: 415px;
}
.logo-partner-row.-partner2 .logo-partner-item:first-child {
  padding: 0 20% 0 0;
  border-right: 1px solid #101010;
}
.logo-partner-row.-partner2 .logo-partner-item:last-child {
  padding: 0 0 0 18%;
}
.logo-partner-item {
  display: grid;
  place-items: center;
  text-align: center;
}
.logo-guide {
  display: grid;
  position: relative;
  position: relative;
  place-items: center;
}
.logo-guide-logo {
  z-index: 1;
  grid-area: 1/1;
}
.logo-guide.-guide1 {
  max-width: 17rem;
}
.logo-guide.-guide1 .logo-guide-logo {
  width: 84%;
}
.logo-guide.-guide1 .logo-guide-bg {
  translate: -1px 0;
}
.logo-guide.-guide2 .logo-guide-bg {
  translate: -6px 1.5px;
}
.logo-guide.-guide3 {
  max-width: 12.7rem;
}
.logo-guide.-guide3 .logo-guide-logo {
  width: 78%;
}
.logo-guide.-guide3 .logo-guide-bg {
  translate: 0 -3.5%;
}
.logo-guide.-guide4 .logo-guide-bg {
  translate: -1px 34%;
}
.logo-guide-bg {
  z-index: 0;
  grid-area: 1/1;
}
.logo-column {
  display: grid;
  padding: 1px;
  gap: 1px;
  background: rgba(42, 41, 48, 0.1);
}
.logo-column-item {
  padding: 1.5rem;
  background-color: #FFF;
}
.logo-misuse {
  margin-top: 2rem;
  padding: 4rem 0;
}
.logo-misuse-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.logo-misuse-item {
  padding: 2.5rem 1.5rem;
  background-color: #101010;
  text-align: center;
}
.logo-misuse-image {
  display: grid;
  z-index: 0;
  position: relative;
  place-items: center;
  height: 2.625rem;
  margin-bottom: 0.25rem;
}
.logo-misuse-image::after {
  display: inline-block;
  z-index: 1;
  position: absolute;
  top: -0.3rem;
  right: 0;
  width: 1.35rem;
  height: 1.35rem;
  background: url("../img/brand-guidelines/logo_ico_cross.svg") no-repeat center center/contain;
  content: "";
}
.logo-misuse-logo {
  width: 7rem;
  max-width: 80%;
}
.logo-misuse-bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.logo-misuse-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.logo-misuse-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.5rem;
}
.logo-additional {
  margin-top: 2rem;
}
.logo-vertical {
  padding: 3rem 0 4rem;
}
.typo-panel {
  padding: 4rem 0;
}
.typo-container {
  display: grid;
  gap: 2.5rem;
}
.typo-block:not(:last-child) {
  margin-bottom: 3.75rem;
}
.typo-block-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #2A2930;
}
.typo-block-title {
  margin: 0;
  color: #5156BE;
  font-weight: 400;
  font-size: 0.55rem;
  font-family: "Noto Sans Mono", monospace;
  text-transform: uppercase;
}
.typo-block-row {
  display: grid;
  gap: 1rem 2rem;
}
.typo-sample-list {
  display: grid;
  gap: 2.5rem 0;
}
.typo-sample-item {
  display: grid;
  gap: 0 1rem;
  border-bottom: 1px solid rgba(81, 86, 190, 0.2);
}
.typo-sample-title {
  margin: 0 0 0.5rem;
  color: #101010;
  font-weight: 400;
  font-size: 0.55rem;
  font-family: "Noto Sans Mono", monospace;
  text-transform: uppercase;
}
.typo-sample-text1 {
  margin-bottom: -0.18em;
}
.typo-sample-text2 {
  margin-bottom: -0.16em;
}
.typo-sample-text3 {
  margin-bottom: -0.25em;
}
.typo-sample-labels {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.typo-secondary-container {
  display: grid;
  margin-top: 5rem;
  gap: 2.5rem 0;
}
.typo-secondary-title {
  margin-bottom: 1rem;
  color: #101010;
  font-size: 1.375rem;
}

.overview {
  border-top: 1px solid rgba(42, 41, 48, 0.1);
}
.overview-list {
  display: grid;
  gap: 1px;
  background-color: rgba(42, 41, 48, 0.1);
}
.overview-list-item {
  padding: 1.5rem;
  background-color: #FFF;
}
.overview-list-title {
  margin-bottom: 1rem;
  color: #101010;
  font-weight: 400;
  font-size: 1.25rem;
}
.overview-list-labels {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0 0;
  gap: 0.5rem;
}

.colors-block {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(42, 41, 48, 0.1);
}
.colors-block:last-child {
  border-bottom: none;
}
.colors-block-lead {
  max-width: 36.5rem;
  margin-bottom: 2rem;
}
.colors-block-column {
  margin-top: 2rem;
}
.colors-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(10rem, 30%, 14rem), 1fr));
  background-color: rgba(42, 41, 48, 0.1);
}
.colors-row.-border {
  gap: 1px;
}
.colors-card {
  display: grid;
  align-content: end;
  padding: 1.75rem 1rem;
  gap: 1rem;
  border: 1px solid transparent;
  font-size: 0.5625rem;
}
.colors-card.bg-white, .colors-card.bg-gray {
  border-color: rgba(42, 41, 48, 0.1);
}
.colors-card.-lg {
  padding: 1.75rem 1.25rem;
}
.colors-card.-md {
  padding: 1.75rem 1.25rem;
}
.colors-card-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.875rem;
}
.colors-card-title small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
}
.colors-card-info {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Mono", monospace;
  list-style: none;
  text-transform: uppercase;
}
.colors-grad {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1.6rem;
  font-size: 0.5625rem;
}
.colors-grad.bg-grad-light {
  border: 1px solid #AAA;
}
.colors-secondary-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(10rem, 30%, 14rem), 1fr));
  gap: 2.5rem 0;
}
.colors-secondary-item {
  display: grid;
  text-align: center;
}
.colors-secondary-color {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}
.colors-secondary-title {
  margin-bottom: 0.75rem;
  font-weight: 300;
  font-size: 1.5rem;
}
.colors-secondary-info {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: "Noto Sans Mono", monospace;
  list-style: none;
  text-transform: uppercase;
}
.colors-example {
  margin-top: 6rem;
}
.colors-example-row {
  display: grid;
  -webkit-box-pack: start;
          justify-content: start;
  gap: 1rem;
}
.colors-semantic-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(10rem, 30%, 14rem), 1fr));
  gap: 2rem 1rem;
}
.colors-semantic-item {
  text-align: center;
}
.colors-semantic-color {
  margin-bottom: 1rem;
  padding: 20%;
  border: 3px solid rgba(42, 41, 48, 0.7);
  border-radius: 0.625rem;
}
.colors-semantic-info {
  display: grid;
  align-content: center;
  aspect-ratio: 1/1;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  border-radius: 0.25rem;
  background-color: rgba(42, 41, 48, 0.7);
  color: #FFF;
  font-size: 0.5625rem;
  font-family: "Noto Sans Mono", monospace;
  list-style: none;
  text-transform: uppercase;
}
.colors-semantic-info.-success {
  background-color: #137A4E;
}
.colors-semantic-info.-warning {
  background-color: #9A5C00;
}
.colors-semantic-info.-error {
  background-color: #9E2F34;
}
.colors-semantic-info.-enabled {
  background-color: #2F327A;
}
.colors-semantic-info.-disabled {
  background-color: #BDBDBD;
  color: #101010;
}
.colors-semantic-title {
  color: #101010;
  font-weight: 400;
  font-size: 0.875rem;
}
.colors-semantic-label {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 1.875rem;
  margin-top: 1rem;
  padding: 0 1.6rem;
  border: 1px solid rgba(42, 41, 48, 0.7);
  border-radius: 5rem;
  font-size: 0.75rem;
}

.impl-list {
  display: grid;
}
.impl-card {
  padding: 2rem;
}
.impl-card-number {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-family: "Noto Sans Mono", monospace;
  opacity: 0.6;
}
.impl-card-title {
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-size: 1.125rem;
}
.impl-card-list {
  opacity: 0.6;
}
.impl-card-notes {
  opacity: 0.6;
}
.impl-checklist {
  display: grid;
  gap: 1px;
  background-color: rgba(42, 41, 48, 0.1);
}
.impl-checklist-item {
  padding: 1.5rem;
  background-color: #FFF;
}

.title-md {
  margin-bottom: 2rem;
  color: #5156BE;
  font-weight: 400;
  font-size: 0.75rem;
  font-family: "Noto Sans Mono", monospace;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.title-md.-border {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 0.75rem;
}
.title-md.-border::before {
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: #5156BE;
  content: "";
}
.title-sm {
  margin-bottom: 1rem;
  color: #5156BE;
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1.5;
  font-family: "Noto Sans Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.title-lg {
  margin: 0 0 1rem;
  margin-bottom: 1.5rem;
  color: #101010;
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 1.25;
  font-family: "Noto Sans Display", sans-serif;
}

.text-default {
  font-size: 1rem;
}
.text-lg {
  font-weight: 300;
  font-size: 2.625rem;
  line-height: 1.2;
  font-family: "Noto Sans Display", sans-serif;
}
.text-lead {
  font-size: 1.125rem;
  line-height: 1.6;
}
.text-lead-sm {
  font-size: 0.875rem;
}
.text-sm {
  font-size: 0.75rem;
  line-height: 1.6;
}
.text-style-headline {
  font-weight: 300;
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Noto Sans Display", sans-serif;
  letter-spacing: 0;
}
.text-style-body {
  font-weight: 400;
  font-size: 1.325rem;
  line-height: 1.4;
  letter-spacing: 0;
}
.text-style-eyebrow {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.text-style-labels {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.text-style-details {
  font-size: 0.625rem;
  line-height: 1.2;
  font-family: "Noto Sans Mono", monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 900;
}
.font-base {
  font-family: "Noto Sans", sans-serif;
}
.font-title {
  font-family: "Noto Sans Display", sans-serif;
}
.font-mono {
  font-family: "Noto Sans Mono", monospace;
}
.font-meiryo {
  font-family: "Meiryo", "メイリオ", sans-serif;
}
.font-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.color-brand {
  color: #5156BE !important;
}
.color-black {
  color: #101010 !important;
}
.color-text {
  color: rgba(42, 41, 48, 0.7) !important;
}
.color-white {
  color: #FFF !important;
}
.color-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.bg-brand {
  background-color: #5156BE;
  color: #FFF;
}
.bg-brand2 {
  background-color: #A4AAF0;
  color: #101010;
}
.bg-brand3 {
  background-color: #C8C6F5;
  color: #101010;
}
.bg-black {
  background-color: #101010;
  color: #FFF;
}
.bg-dark {
  background-color: #2A2930;
  color: #FFF;
}
.bg-gray {
  background-color: #F4F4F4;
  color: #101010;
}
.bg-white {
  background-color: #FFF;
  color: #101010;
}
.bg-main-200 {
  background-color: #DCDDF5;
  color: #101010;
}
.bg-main-300 {
  background-color: #A8AAE4;
  color: #FFF;
}
.bg-main-400 {
  background-color: #8589D7;
  color: #FFF;
}
.bg-main-500 {
  background-color: #6368C9;
  color: #FFF;
}
.bg-main-600 {
  background-color: #5156BE;
  color: #FFF;
}
.bg-main-700 {
  background-color: #484DB0;
  color: #FFF;
}
.bg-main-800 {
  background-color: #3F449F;
  color: #FFF;
}
.bg-main-900 {
  background-color: #2F327A;
  color: #FFF;
}
.bg-dark-900 {
  background-color: #101010;
  color: #FFF;
}
.bg-dark-800 {
  background-color: #1A1A1A;
  color: #FFF;
}
.bg-dark-700 {
  background-color: #2B2B2B;
  color: #FFF;
}
.bg-dark-600 {
  background-color: #555555;
  color: #FFF;
}
.bg-dark-500 {
  background-color: #888888;
  color: #FFF;
}
.bg-dark-400 {
  background-color: #E6E6E6;
  color: #101010;
}
.bg-light-100 {
  background-color: #F4F4F4;
}
.bg-light-200 {
  background-color: #EAEAEA;
}
.bg-light-300 {
  background-color: #D6D6D6;
}
.bg-green {
  background-color: #27C395;
}
.bg-teal {
  background-color: #0FAAC7;
}
.bg-orange {
  background-color: #E5A058;
}
.bg-purple {
  background-color: #A261CA;
}
.bg-pink {
  background-color: #e46292;
}
.bg-success {
  border-color: #1DBF73;
  background-color: #E9F8F1;
  color: #137A4E;
}
.bg-warning {
  border-color: #F5A623;
  background-color: #FFF5E6;
  color: #9A5C00;
}
.bg-error {
  border-color: #E5484D;
  background-color: #FDECEC;
  color: #9E2F34;
}
.bg-enabled {
  border-color: #5156BE;
  background-color: #EDF2FF;
  color: #2F327A;
}
.bg-disabled {
  border-color: #E0E0E0;
  background-color: #F4F4F4;
  color: #BDBDBD;
}
.bg-grad-purple1 {
  background: -webkit-linear-gradient(left, #5156BE 0%, #2F327A 100%);
  background: linear-gradient(90deg, #5156BE 0%, #2F327A 100%);
  color: #FFF;
}
.bg-grad-purple2 {
  background: -webkit-linear-gradient(left, #5156BE 0%, #A4AAF0 100%);
  background: linear-gradient(90deg, #5156BE 0%, #A4AAF0 100%);
  color: #FFF;
}
.bg-grad-purple3 {
  background: -webkit-linear-gradient(left, #A4AAF0 0%, #C8C6F5 100%);
  background: linear-gradient(90deg, #A4AAF0 0%, #C8C6F5 100%);
  color: #101010;
}
.bg-grad-dark {
  background: -webkit-linear-gradient(left, #101010 0%, #555 100%);
  background: linear-gradient(90deg, #101010 0%, #555 100%);
  color: #FFF;
}
.bg-grad-light {
  background: -webkit-linear-gradient(left, #FFF 0%, #D6D6D6 100%);
  background: linear-gradient(90deg, #FFF 0%, #D6D6D6 100%);
  color: #101010;
}

.button-download {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 1rem;
  gap: 0 0.4rem;
  border: 1px solid #5156BE;
  border-radius: 0.5rem;
  background: #DCDDF5;
  color: #5156BE;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.button-download.-full {
  width: 100%;
}
.button-download::after {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url("../img/brand-guidelines/ico_download.svg") no-repeat center center/contain;
  content: "";
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.hr-gray {
  margin: 1.25rem 0;
  border: none;
  border-top: 1px solid rgba(42, 41, 48, 0.1);
}
.hr-white {
  margin: 1.25rem 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-content {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease-out;
  transition: height 0.4s ease-out;
}
.accordion.is-open .accordion-button::after {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.accordion-button {
  display: -webkit-inline-box;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
          align-items: center;
  padding: 1rem 0;
  gap: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  color: #5156BE;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}
.accordion-button::after {
  -webkit-transition: 0.4s;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/brand-guidelines/arrow_down.svg") no-repeat center center/0.75rem auto;
  content: "";
  transition: 0.4s;
}

.tab-list {
  display: -webkit-box;
  display: flex;
}
.tab-button {
  position: relative;
  -webkit-transition: 0.4s;
  padding: 0.75rem 1.25rem 1rem;
  transition: 0.4s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  color: rgba(16, 16, 16, 0.4);
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.tab-button::before {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: inherit;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #5156BE;
  content: "";
  transition: inherit;
}
.tab-button.is-active {
  color: #5156BE;
}
.tab-button.is-active::before {
  opacity: 1;
}
.tab-panel {
  display: none;
  opacity: 0;
}
.tab-panel.is-active {
  display: block;
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.list-disc {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  list-style: none;
}
.list-disc li {
  position: relative;
  padding-left: 0.75rem;
  font-size: 0.75rem;
}
.list-disc li::before {
  display: block;
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  background: currentColor;
  content: "";
}
.list-check {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.checkbox {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
}
.checkbox .checkbox-input {
  position: relative;
  -webkit-transition: all 0.2s;
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  transition: all 0.2s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid rgba(16, 16, 16, 0.2);
  background-color: #FFF;
  cursor: pointer;
}
.checkbox .checkbox-input:checked {
  background-color: rgba(42, 41, 48, 0.7);
}
.checkbox .checkbox-input:checked::after {
  position: absolute;
  top: 0.1rem;
  left: 0.25rem;
  width: 0.35rem;
  height: 0.5rem;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.label-md {
  display: inline-block;
  min-width: 6.875rem;
  padding: 0.75rem 1rem;
  border: 1px solid #CBCBCB;
  border-radius: 0.375rem;
  color: #5156BE;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
}
.label-md.-fill {
  border-color: #5156BE;
  background-color: #5156BE;
  color: #FFF;
}
.label-sm {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(81, 86, 190, 0.25);
  color: #5156BE;
  font-size: 0.625rem;
  line-height: 1.5;
  text-transform: uppercase;
}

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

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

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mt-7 {
  margin-top: 1.75rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mt-11 {
  margin-top: 2.75rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mt-13 {
  margin-top: 3.25rem !important;
}

.mb-13 {
  margin-bottom: 3.25rem !important;
}

.mt-14 {
  margin-top: 3.5rem !important;
}

.mb-14 {
  margin-bottom: 3.5rem !important;
}

.mt-15 {
  margin-top: 3.75rem !important;
}

.mb-15 {
  margin-bottom: 3.75rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.mt-17 {
  margin-top: 4.25rem !important;
}

.mb-17 {
  margin-bottom: 4.25rem !important;
}

.mt-18 {
  margin-top: 4.5rem !important;
}

.mb-18 {
  margin-bottom: 4.5rem !important;
}

.mt-19 {
  margin-top: 4.75rem !important;
}

.mb-19 {
  margin-bottom: 4.75rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

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

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pt-7 {
  padding-top: 1.75rem !important;
}

.pb-7 {
  padding-bottom: 1.75rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

@media screen and (min-width: 751px){
  .wrapper {
    display: grid;
    grid-template-columns: 15rem 1fr;
    min-width: 1280px;
  }
  .header {
    z-index: 99;
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    padding-bottom: 5rem;
    overflow-y: auto;
    border-right: 1px solid rgba(42, 41, 48, 0.1);
  }
  .contents {
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
  }
  .section {
    min-height: 100vh;
  }
  .section-header-row {
    grid-template-columns: 1fr 12.5rem;
    gap: 0 8%;
  }
  .inner {
    max-width: 88rem;
    margin-inline: auto;
    padding-inline: 2rem;
  }
  .footer {
    padding: 5rem 0 2.5rem;
  }
  .footer-info {
    -webkit-box-pack: start;
            justify-content: start;
    margin: 0;
  }
  .footer-info li {
    font-size: 0.75rem;
  }
  .copyright {
    z-index: 99;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 15rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(42, 41, 48, 0.1);
    color: rgba(42, 41, 48, 0.25);
    text-align: left;
  }
  .welcome-bg-box {
    height: 21.2vw;
  }
  .about-row {
    grid-template-columns: auto auto auto;
  }
  .logo-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logo-container.col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logo-grid.col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .logo-card-label {
    top: 1.5rem;
    left: 1.25rem;
  }
  .logo-box {
    height: 16.5rem;
  }
  .logo-sizes-row {
    gap: 0 7.5rem;
  }
  .logo-partner-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logo-partner-outer {
    width: 100%;
  }
  .logo-partner-row.-partner1 .logo-partner-item:first-child {
    padding: 0 7.5% 0 0;
  }
  .logo-partner-row.-partner2 .logo-partner-item:first-child {
    padding: 0 20% 0 0;
  }
  .logo-partner-row.-partner2 .logo-partner-item:last-child {
    padding: 0 0 0 18%;
  }
  .logo-guide.-guide1 {
    max-width: 348px;
  }
  .logo-guide.-guide2 .logo-guide-bg {
    translate: -7px 2px;
  }
  .logo-guide.-guide3 {
    max-width: 274px;
  }
  .logo-style-horiz {
    max-width: 290px;
  }
  .logo-style-horiz.-sm {
    max-width: 198px;
  }
  .logo-style-vert {
    max-width: 216px;
  }
  .logo-style-vert.-sm {
    max-width: 140px;
  }
  .logo-style-vert.-md {
    max-width: 155px;
  }
  .logo-style-mark {
    max-width: 80px;
  }
  .logo-style-mark.-sm {
    max-width: 48px;
  }
  .logo-style-ipsum1 {
    max-width: 240px;
    padding-top: 2px;
  }
  .logo-style-ipsum2 {
    max-width: 178px;
  }
  .logo-misuse-list {
    grid-template-columns: repeat(6, 1fr);
  }
  .logo-misuse-item {
    padding: 2.5rem 1.5rem 4rem;
  }
  .typo-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .typo-block-row {
    -webkit-box-pack: start;
    grid-template-columns: auto auto;
            justify-content: start;
  }
  .typo-sample-list {
    max-width: 50rem;
    margin-inline: auto;
    padding: 2.5rem 0;
  }
  .typo-sample-item {
    grid-template-columns: auto auto;
    -webkit-box-align: end;
            align-items: end;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .typo-sample-title {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .typo-sample-content {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .typo-secondary-container {
    grid-template-columns: 1fr 0.87fr;
    gap: 0 9%;
  }
  .overview-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .colors-row {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .colors-card.-lg {
    min-height: 21.75rem;
    font-size: 0.75rem;
  }
  .colors-card.-md {
    min-height: 19.625rem;
    font-size: 0.75rem;
  }
  .colors-secondary-list {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .colors-example-row {
    grid-template-columns: auto auto;
  }
  .colors-semantic-list {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .impl-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .impl-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 750px){
  .header {
    display: contents;
  }
  .header-brand {
    grid-template-columns: auto auto;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: start;
            justify-content: start;
    margin: 0;
    padding: 1.5rem 1rem;
  }
  .nav {
    z-index: 88;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #FFF;
  }
  .nav-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .nav-list::-webkit-scrollbar {
    display: none;
  }
  .nav-link::before {
    width: 100%;
    height: 2px;
  }
  .footer-info li:not(:first-child)::before {
    height: 0.75rem;
    margin: 0 0.75rem;
  }
  .welcome-copy {
    font-size: clamp(3.75rem, 20vw, 7.5rem);
  }
  .logo-partner-outer {
    max-width: 20rem;
    margin: 0 -1rem;
  }
  .logo-style-horiz {
    max-width: 14.5rem;
  }
  .logo-style-vert {
    max-width: 10rem;
  }
  .logo-style-mark {
    max-width: 4rem;
  }
  .logo-style-ipsum1 {
    max-width: 12rem;
    padding-top: 1px;
  }
  .logo-style-ipsum2 {
    max-width: 8.6rem;
  }
  .typo-tab-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline: -1rem;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .typo-tab-list::-webkit-scrollbar {
    display: none;
  }
  .title-lg {
    font-size: 3rem;
  }
  .button-download {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference){
  html {
    interpolate-size: allow-keywords;
  }
}