*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
  max-width: 100%;
}

:root {
  --color-black: #000;
  --color-text: #231815;
  --color-white: #FFFFFF;
  --color-bg: #b5b5b6;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  font-family: "DINPro", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.2;
}

.container {
  max-width: 1270px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 35px;
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.nichido-heading {
  display: flex;
  gap: 35px;
  position: sticky;
  top: 20px;
}
@media only screen and (max-width: 991px) {
  .nichido-heading {
    gap: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-heading {
    gap: 15px;
    position: static;
  }
}
.nichido-heading__title {
  font-family: "DINPro", sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media only screen and (max-width: 991px) {
  .nichido-heading__title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-heading__title {
    font-size: 35px;
  }
}
.nichido-heading__sub {
  font-family: "PTSerif", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 991px) {
  .nichido-heading__sub {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-heading__sub {
    font-size: 20px;
  }
}
.nichido-heading__sub::before {
  content: "";
  display: block;
  width: 2.3px;
  height: 72px;
  background-color: var(--color-black);
}
@media only screen and (max-width: 767px) {
  .nichido-heading__sub::before {
    height: 35px;
  }
}

.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
@media only screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
}

@font-face {
  font-family: "DINPro";
  src: url("../fonts/DINPro-Bold_13934.woff2") format("woff2"), url("../fonts/DINPro-Bold_13934.woff") format("woff"), url("../fonts/DINPro-Bold_13934.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/DINPro-Medium_13936.woff2") format("woff2"), url("../fonts/DINPro-Medium_13936.woff") format("woff"), url("../fonts/DINPro-Medium_13936.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "PTSerif";
  src: url("../assets/fonts/PTSerif-Bold.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "PTSerif";
  src: url("../assets/fonts/PTSerif-Italic.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "PTSerif";
  src: url("../assets/fonts/PTSerif-Regular.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}
.nichido-about {
  position: relative;
  padding-top: 10px;
  overflow-x: clip;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .nichido-about {
    padding-top: 50px;
  }
}
.nichido-about__top {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .nichido-about__top {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-about__top {
    max-width: 290px;
  }
}
.nichido-about__block {
  margin-top: 54px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .nichido-about__block {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
.nichido-about__content {
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 970px;
  gap: 45px;
}
@media only screen and (max-width: 991px) {
  .nichido-about__content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.nichido-about__img-text {
  position: absolute;
  bottom: 0;
  right: 480px;
}
@media only screen and (max-width: 1199px) {
  .nichido-about__img-text {
    position: static;
    order: 2;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-about__img-text {
    text-align: center;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .nichido-about .nichido-content-text {
    order: 1;
  }
}
@media only screen and (max-width: 991px) {
  .nichido-about .nichido-about__img-text {
    order: 2;
  }
}
.nichido-about figure {
  flex-shrink: 0;
}
@media only screen and (max-width: 1199px) {
  .nichido-about figure {
    max-width: 300px;
  }
}
.nichido-content-text {
  font-family: "DINPro", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .nichido-content-text {
    font-size: 18px;
    line-height: 1.4666666667;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-content-text {
    font-size: 15px;
    line-height: 1.4666666667;
  }
}
.nichido-content-text.-lh {
  line-height: 1.74;
}
.nichido-content-text.-lg {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .nichido-content-text.-lg {
    font-size: 20px;
  }
}
.nichido-paint {
  padding-top: 75px;
  color: var(--color-white);
}
.nichido-paint__block {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .nichido-paint__block {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-paint__block {
    flex-direction: column-reverse;
    align-items: center;
    gap: 25px;
  }
}
.nichido-paint__content {
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 970px;
  gap: 40px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .nichido-paint__content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.nichido-paint__img-text {
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .nichido-paint__img-text {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 10px;
  }
}
.nichido-paint figure {
  flex-shrink: 0;
}
@media only screen and (max-width: 1199px) {
  .nichido-paint figure {
    max-width: 300px;
  }
}
.nichido img {
  position: relative;
}
.nichido-drew {
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .nichido-drew {
    padding-bottom: 0;
  }
}
.nichido-drew__block {
  display: flex;
  gap: 42px;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .nichido-drew__block {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
.nichido-drew__content .nichido-content-text {
  margin-bottom: 45px;
}
@media only screen and (max-width: 767px) {
  .nichido-drew__content .nichido-content-text {
    margin-bottom: 20px;
  }
}
.nichido-drew__inner {
  margin-bottom: 75px;
}
@media only screen and (max-width: 767px) {
  .nichido-drew__inner {
    margin-bottom: 50px;
  }
}
.nichido-drew__inner .nichido-content-text:first-child {
  margin-bottom: 5px;
}
.nichido-drew__inner .nichido-content-text:last-of-type {
  margin-bottom: 30px;
}
.nichido-drew__inner .nichido-drew__img-text {
  margin-top: 10px;
}
.nichido-drew__inner .nichido-drew__img {
  margin-bottom: 30px;
}
.nichido-drew__box {
  display: flex;
  gap: 30px;
}
.nichido-drew__box-inner:first-child {
  max-width: 495px;
}
.nichido-drew__box-inner:last-child {
  max-width: 475px;
}
@media only screen and (max-width: 767px) {
  .nichido-drew__box-inner {
    max-width: 100% !important;
  }
}
.nichido-drew__box-inner .nichido-drew__img:last-child {
  margin-bottom: 0;
}
.nichido-drew__img {
  width: 100%;
}
.nichido-drew__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .nichido-drew__img-text {
    text-align: center;
    margin-top: 10px;
  }
  .nichido-drew__img-text .note .text-left {
    text-align: left;
    display: block;
  }
}
.nichido-drew__row {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .nichido-drew__row {
    flex-direction: column;
    gap: 0;
  }
}
.nichido-drew__col {
  width: calc(50% - 15px);
}
@media only screen and (max-width: 767px) {
  .nichido-drew__col {
    width: 100%;
  }
}
.nichido-gallery {
  padding-top: 100px;
  color: var(--color-white);
}
.nichido-gallery__block {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .nichido-gallery__block {
    flex-direction: column-reverse;
    align-items: center;
    gap: 25px;
  }
}
.nichido-gallery__img {
  flex-shrink: 0;
}
@media only screen and (max-width: 1199px) {
  .nichido-gallery__img {
    max-width: 300px;
  }
}
@media only screen and (max-width: 1199px) {
  .nichido-gallery__img-text {
    text-align: center;
    margin-top: 10px;
  }
}
.nichido-gallery__content {
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  gap: 30px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .nichido-gallery__content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.nichido-gallery__row {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  margin-top: -245px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .nichido-gallery__row {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-gallery__row {
    flex-direction: column;
  }
}
.nichido-gallery__col {
  width: calc(50% - 15px);
}
@media only screen and (max-width: 767px) {
  .nichido-gallery__col {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-gallery__col img {
    width: 100%;
  }
}
.nichido-gallery__col:first-child img {
  aspect-ratio: 480/455;
  object-fit: cover;
}
.nichido-gallery .note {
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .nichido-gallery .note {
    text-align: center;
    margin-top: 10px;
  }
}
.nichido-gallery__banner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 60px;
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 60px;
}
@media only screen and (max-width: 991px) {
  .nichido-gallery__banner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-gallery__banner {
    padding: 25px 20px;
  }
}
.nichido-gallery__banner-right {
  flex-shrink: 0;
}
.nichido-gallery__banner-right img {
  aspect-ratio: 414/554;
  object-fit: cover;
}
.nichido-gallery__banner .nichido-link {
  color: var(--color-black);
}
@media only screen and (max-width: 767px) {
  .nichido-gallery__banner .nichido-link {
    margin-top: 25px;
  }
}
.nichido-gallery__banner .nichido-content-text {
  line-height: 1.72;
}
.nichido-gallery .nichido-content-text {
  line-height: 1.74;
}
.nichido-black {
  background: var(--color-black);
}
.nichido-black .note {
  color: var(--color-white);
}
.nichido-link {
  color: var(--color-white);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.nichido-link:hover {
  text-decoration: none;
  opacity: 0.8;
}
.nichido-art {
  padding-top: 90px;
}
.nichido-art .nichido-link {
  color: var(--color-black);
}
.nichido-art__block {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .nichido-art__block {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
.nichido-art .nichido-content-text {
  margin-bottom: 25px;
}
.nichido-art .nichido-art__img:first-of-type {
  margin-bottom: 25px;
}
.nichido-art .note {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .nichido-art-inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
.nichido-profile {
  padding-top: 90px;
  color: var(--color-white);
}
.nichido-profile__block {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .nichido-profile__block {
    flex-direction: column-reverse;
    gap: 25px;
    align-items: center;
  }
}
.nichido-profile__box {
  font-family: "DINPro", sans-serif;
  display: flex;
  gap: 35px;
  font-size: 22px;
  line-height: 1.3636363636;
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .nichido-profile__box {
    font-size: 18px;
    line-height: 1.4666666667;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-profile__box {
    font-size: 15px;
    line-height: 1.3333333333;
  }
}
.nichido-profile__box:last-child {
  margin-bottom: 80px;
}
.nichido-profile__date {
  flex-shrink: 0;
}
.nichido-footer {
  position: relative;
  background-color: var(--color-white);
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  .nichido-footer {
    padding: 15px 0;
  }
}
.nichido-footer__block {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .nichido-footer__block {
    flex-direction: column;
    gap: 20px;
  }
}
.nichido-footer__text {
  font-family: "DINPro", sans-serif;
  color: var(--color-black);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3636363636;
}
@media only screen and (max-width: 991px) {
  .nichido-footer__text {
    font-size: 18px;
    line-height: 1.2222222222;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-footer__text {
    font-size: 15px;
    line-height: 1.3333333333;
  }
}
@media only screen and (max-width: 767px) {
  .nichido-footer__right {
    text-align: center;
  }
}
.nichido-circle {
  position: relative;
}
.nichido-circle-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.nichido-circle-inner::before {
  content: "";
  position: absolute;
  height: calc(100% - 585px);
  background-image: url(../../assets/materials/icon-circle.svg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  top: 585px;
  left: -192px;
  right: -80px;
}
@media only screen and (max-width: 767px) {
  .nichido-circle-inner::before {
    background-image: url(../../assets/materials/icon-circle-sp.svg);
    left: -115px;
    right: -95px;
    height: 100%;
    background-repeat: repeat;
    top: 0;
    background-size: 100%;
  }
}
.nichido-circle-inner-bottom {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.nichido-circle-inner-bottom::before {
  content: "";
  position: absolute;
  height: 6860px;
  background-image: url(../../assets/materials/icon-circle-2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  top: 585px;
  left: -192px;
  right: -80px;
}
@media only screen and (max-width: 767px) {
  .nichido-circle-inner-bottom::before {
    background-image: url(../../assets/materials/icon-circle-sp.svg);
    left: -115px;
    right: -95px;
    height: 100%;
    background-repeat: repeat;
    top: 0;
  }
}
.nichido-circle img,
.nichido-circle .nichido-drew__img,
.nichido-circle .nichido-content-text,
.nichido-circle .nichido-gallery__col,
.nichido-circle .nichido-gallery__left-img,
.nichido-circle .nichido-gallery__banner-right,
.nichido-circle .nichido-paint__img-text,
.nichido-circle .nichido-art__right {
  position: relative;
}

section {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .mb0 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .tcenter {
    text-align: center;
  }
}

.fbold {
  font-weight: 700;
}

.nichido-black .nichido-heading__sub::before {
  background-color: var(--color-white);
}

.nichido-mv {
  padding: 20px;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .nichido-mv {
    padding: 10px;
    height: 100vh;
    background-color: var(--color-bg);
  }
}
.nichido-mv__content {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .nichido-mv__content {
    height: 100%;
    overflow: hidden;
  }
}
.nichido-mv__imgs {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .nichido-mv__imgs {
    position: relative;
    height: 100%;
    display: block;
  }
}
.nichido-mv__imgs-box {
  width: calc(33.3333333333% - 10px);
  transform: translateY(100%);
  opacity: 0;
  height: 100vh;
}
@media only screen and (max-width: 767px) {
  .nichido-mv__imgs-box {
    opacity: 1;
    width: 100%;
    z-index: 1;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    /* Start all off-screen */
  }
  .nichido-mv__imgs-box:first-child {
    transform: translateY(0%);
    /* Except the first one */
    z-index: 11;
  }
  .nichido-mv__imgs-box:nth-child(2) {
    z-index: 12;
  }
  .nichido-mv__imgs-box:nth-child(3) {
    z-index: 13;
  }
}
.nichido-mv__imgs-box img {
  width: auto;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 459/745;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .nichido-mv__imgs-box img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: unset;
  }
}
.nichido-mv__title {
  position: absolute;
  top: 48%;
  left: 5.5555555556vw;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .nichido-mv__title {
    top: 53.3333333333vw;
    left: 5.3333333333vw;
    z-index: 14;
    opacity: 1;
    visibility: visible;
  }
}
.nichido-mv__title-heading {
  font-family: "DINPro", sans-serif;
  font-size: 5.5555555556vw;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-white);
}
@media only screen and (max-width: 767px) {
  .nichido-mv__title-heading {
    font-size: 9.3333333333vw;
    line-height: 1.1428571429;
    margin-bottom: 5.3333333333vw;
  }
}
.nichido-mv__title-sub {
  font-family: "PTSerif", serif;
  font-size: 2.5vw;
  line-height: 1.1944444444;
  font-weight: 700;
  color: var(--color-white);
}
@media only screen and (max-width: 767px) {
  .nichido-mv__title-sub {
    font-size: 20px;
    line-height: 1.2;
  }
}
.nichido-mv__note {
  text-align: right;
  margin: 5px 20px 0 0;
}
@media only screen and (max-width: 767px) {
  .nichido-mv__note {
    margin: 9px auto 0;
    text-align: center;
  }
}

.note {
  font-family: "DINPro", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .note {
    font-size: 16px;
    line-height: 1.4666666667;
  }
}
@media only screen and (max-width: 767px) {
  .note {
    font-size: 15px;
    line-height: 1.4666666667;
  }
}
.note.-sm {
  font-family: "DINPro", sans-serif;
  font-size: 13px;
  line-height: 1.0769230769;
  color: var(--color-white);
}

/*# sourceMappingURL=app.css.map */
