@charset "UTF-8";

/* common
=======================================================*/

/* loader
=======================================================*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: calc(var(--vh) * 100);
  background-color: #fff;
  z-index: 100000;
}
.loader .txt {
  position: relative;
  font-size: clamp(18px, 1.388vw, 36px); /*20px*/
  font-weight: 600;
  text-align: center;
  line-height: 2em;
  overflow: hidden;
}
.loader .txt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.1em;
  background-color: var(--color_6);
  -webkit-animation: loading-anime-line 0.8s ease-out 0.05s forwards;
  animation: loading-anime-line 0.8s ease-out 0.05s forwards;
}
@-webkit-keyframes loading-anime-line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes loading-anime-line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.loader .txt span {
  display: inline-block;
  transform: translateY(1.5em);
  -webkit-animation: loading-anime 0.4s ease-out 1.5s forwards;
  animation: loading-anime 0.4s ease-out 1.5s forwards;
}
@-webkit-keyframes loading-anime {
  0% {
    transform: translateY(1.5em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes loading-anime {
  0% {
    transform: translateY(1.5em);
  }
  100% {
    transform: translateY(0);
  }
}

.loader .txt span:nth-of-type(2) {
  -webkit-animation-delay: 1.55s;
  animation-delay: 1.55s;
}
.loader .txt span:nth-of-type(3) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.loader .txt span:nth-of-type(4) {
  -webkit-animation-delay: 1.65s;
  animation-delay: 1.65s;
}
.loader .txt span:nth-of-type(5) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.loader .txt span:nth-of-type(6) {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}
.loader .txt span:nth-of-type(7) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.loader .txt span:nth-of-type(8) {
  -webkit-animation-delay: 1.85s;
  animation-delay: 1.85s;
}
.loader .txt span:nth-of-type(9) {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.loader .txt span:nth-of-type(10) {
  -webkit-animation-delay: 1.95s;
  animation-delay: 1.95s;
}

/*2回目以降非表示用*/

.loader.active {
  opacity: 0;
  visibility: hidden;
}

main {
  position: relative;
}
main::before {
  content: "";
  position: absolute;
  top: 10rem;
  left: 85vw;
  width: 10vw;
  height: 30%;
  background: url(../img/t-fv-bg.svg) no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: -1;
}

@media screen and (max-width: 896px) {
  main::before {
    width: 18vw;
    height: 40%;
    left: auto;
    right: 0;
    background-position: top right;
  }
}

/* fv
=======================================================*/
#fv {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1rem 0;
}
/*log-areaはパーツcss*/

.fv__txt {
  text-align: center;
}

h1.main__copy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 6rem;
  text-wrap: nowrap;
}

h1.main__copy > .f-big {
  font-size: 130%;
  font-weight: bold;
}

h1.main__copy br {
  display: none;
}

.sub__copy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 2rem;
}
.sub__copy br {
  display: none;
}

.fv__cta {
  display: inline-block;
  width: 20em;
  margin-top: 2em;
}

.fv__cta a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.6em 1.5em;
  align-content: center;
  background-color: var(--color_1);
  border: var(--color_2) 2px solid;
  border-radius: 50px;
  -webkit-filter: drop-shadow(0 3px 0 var(--color_2));
  filter: drop-shadow(0 3px 0 var(--color_2));
  transition: 0.1s;
}
.fv__cta a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-65%);
  width: 5%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: var(--color_2) 0.138vw solid;
  border-radius: 50%;
}
.fv__cta a::after {
  content: "";
  position: absolute;
  top: 63%;
  right: 0.75em;
  width: 3%;
  height: 0.13vw;
  background-color: var(--color_2);
  transform: rotate(45deg);
}

.fv__cta a:hover,
.fv__cta a:focus,
.fv__cta a:active {
  -webkit-filter: drop-shadow(0 0.5px 0 var(--color_2));
  filter: drop-shadow(0 0.5px 0 var(--color_2));
  transform: translateY(2.5px);
  opacity: 0.5;
  transition: 0.2s;
}

.fv__cta a p {
  width: 17.4ch;
  white-space: nowrap;
  line-height: 1.4;
  overflow: hidden;
  border-right: 1px solid var(--color_2);
  -webkit-animation:
    typing 2s steps(8),
    typingEffect 0.5s step-end infinite alternate;
  animation:
    typing 2s steps(8),
    typingEffect 0.5s step-end infinite alternate;
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
}
@-webkit-keyframes typingEffect {
  50% {
    border-color: transparent;
  }
}
@keyframes typingEffect {
  50% {
    border-color: transparent;
  }
}

.scroll__item {
  position: relative;
  left: 68vw;
  width: 20%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-top: -1rem;
  padding-left: 0.15em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  font-size: 1.2rem;
}
.scroll__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.5px var(--color_2) solid;
  border-radius: 50%;
  -webkit-animation: scrollAnime 3s infinite;
  animation: scrollAnime 3s infinite;
  z-index: -1;
}

@-webkit-keyframes scrollAnime {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  20% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes scrollAnime {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  20% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.scroll__item a {
  display: block;
  width: 60%;
  height: 60%;
  align-content: center;
  transition: 0.2s;
}
.scroll__item a:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.scroll__item p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}

@media screen and (min-width: 2000px) {
  .scroll__item {
    left: calc(70vw - 10rem);
  }
}

@media screen and (max-width: 896px) {
  #fv {
    aspect-ratio: 1 / 1;
  }
  #fv .inner__1600 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .logo__area {
    position: relative;
    top: 0;
  }
  .logo__area p {
    font-size: 1rem;
  }
  .logo__area p.logo__ttl {
    width: 20%;
  }
  h1.main__copy {
    margin-bottom: 0.5em;
    line-height: 1.4;
  }
  h1.main__copy br {
    display: block;
  }
  .fv__cta a::before {
    width: 6%;
    border: var(--color_2) 2px solid;
  }
  .fv__cta a::after {
    height: 2px;
  }
  .scroll__item {
    left: 70%;
    width: 35%;
    margin-top: -3rem;
  }
}

@media screen and (max-width: 600px) {
  #fv {
    aspect-ratio: 375 / 600;
  }
  .logo__area {
    margin-bottom: 0;
  }
  .logo__area p.logo__ttl {
    width: 120px;
  }
  .fv__txt {
    text-align: left;
  }
  h1.main__copy {
    margin: auto auto 0.5em 5%;
    font-size: 3rem;
  }
  .sub__copy {
    margin: auto auto auto 5%;
    font-size: 1.6rem;
  }
  .sub__copy br {
    display: block;
  }
  .fv__cta {
    width: 14.5em;
    margin: 1em auto auto 5%;
  }
  .scroll__item {
    left: 65%;
    width: 45%;
  }
}

/* news
=======================================================*/
.news {
  position: relative;
  margin-top: -10rem;
  padding: 2.5rem 0;
  font-size: 85%;
}

.news__list {
  width: 70%;
  max-width: 60rem;
  padding: 0;
  margin: 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(var(--color_1), var(--color_1)) padding-box,
    linear-gradient(to right, #cccccc80 95%, #cccccc00 100%) border-box;
}
/*
.news__item {
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(var(--color_1), var(--color_1)) padding-box,
    linear-gradient(to right, #cccccc80 70%, #cccccc00 100%) border-box;
}*/
/*
.news__item:first-child {
  border-top: 1px solid transparent;
  background:
    linear-gradient(var(--color_1), var(--color_1)) padding-box,
    linear-gradient(to right, #cccccc80 70%, #cccccc00 100%) border-box;
}*/

.news__link {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  width: 80%;
  color: inherit;
  transition: opacity 0.2s;
}

.news__link:hover {
  opacity: 0.6;
}

.news__item:first-of-type .news__link {
  padding: 1rem 0 0.6rem;
}
.news__item:last-of-type .news__link {
  padding: 0.6rem 0 1rem;
}

.news__date {
  font-size: 90%;
  color: #ccc;
  white-space: nowrap;
  flex-shrink: 0;
}

.news__txt {
  line-height: 1.2;
}
/*固定表示用*/
.news__pin {
  display: inline-block;
  color: #ccc;
  transform: rotate(-20deg);
}

@media screen and (max-width: 600px) {
  .news {
    padding: 1.5rem 0;
  }
  .news__list {
    width: calc(100% - 18vw);
  }
  .news__link {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .news__date {
    line-height: 1.2;
  }
}
/* concept
=======================================================*/
#t-concept {
  position: relative;
  padding: 10rem 0;
}

.t-concept__bg {
  position: absolute;
  left: 5vw;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20%;
  height: auto;
  aspect-ratio: 2 / 3;
}

.t-concept__bg .concept__bg-web {
  position: relative;
  width: 70%;
  margin: 15% auto auto 10%;
}
.t-concept__bg .concept__bg-web::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -5rem;
  width: 70%;
  height: 8rem;
  background-color: var(--color_3);
}

.t-concept__bg .concept__bg-dtp {
  position: relative;
  width: 47%;
  margin: auto 5% 0 auto;
}
.t-concept__bg .concept__bg-dtp::before {
  content: "";
  position: absolute;
  bottom: 45%;
  right: 70%;
  width: 130%;
  height: 130%;
  background-color: var(--color_3);
  border-radius: 50%;
}

/*concept テキスト部分*/
.t-concept__txt {
  margin-left: 28%;
  line-height: 2;
}

.t-concept__txt h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 600;
}

.t-concept__txt h2 span {
  display: inline-block;
  position: relative;
}
.t-concept__txt h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.4em;
  width: 100%;
  height: 1.1em;
  background-color: var(--color_3);
  z-index: -1;
}

.t-concept__txt > p {
  width: 65%;
  margin: 3.75rem 0;
}

.t-concept__txt-inner {
  position: relative;
  padding-left: 4rem;
}
.t-concept__txt-inner::before {
  content: "MESSAGE";
  position: absolute;
  top: 0.5em;
  left: 1.5em;
  transform-origin: top left;
  transform: rotate(90deg);
  font-family: "Bruno Ace", sans-serif;
  color: var(--color_6);
}
.t-concept__txt-inner::after {
  content: "";
  position: absolute;
  top: -7em;
  right: -5em;
  width: 7em;
  height: 20em;
  background-color: var(--color_3);
  border-radius: 5px;
  z-index: -1;
}

.t-concept__txt > .link__btn {
  margin-left: 3rem;
}

@media screen and (max-width: 896px) {
  #t-concept {
    padding: 10rem 0 52rem;
  }
  .t-concept__bg {
    left: 5%;
    bottom: 5rem;
    width: 60%;
    height: 45rem;
    aspect-ratio: auto;
  }
  .t-concept__bg .concept__bg-web {
    width: 50%;
    margin: 5rem auto auto 0;
  }
  .t-concept__bg .concept__bg-web::before {
    top: -5rem;
    right: -12rem;
    width: 80%;
    height: 11rem;
  }
  .t-concept__bg .concept__bg-dtp {
    width: 35%;
    margin: -13rem 0 0 auto;
  }
  .t-concept__bg .concept__bg-dtp::before {
    width: 90%;
    height: 90%;
  }
  .t-concept__txt {
    margin-left: 20%;
  }
}

@media screen and (max-width: 600px) {
  #t-concept {
    padding: 10rem 0 32rem;
  }
  .t-concept__txt h2 {
    letter-spacing: -0.01em;
  }
  .t-concept__bg {
    width: 90%;
    height: 25rem;
  }
  .t-concept__bg .concept__bg-web {
    width: 45%;
    margin: 2rem auto auto 0;
  }
  .t-concept__bg .concept__bg-web::before {
    top: -2rem;
    right: -6rem;
    height: 6rem;
  }
  .t-concept__bg .concept__bg-dtp {
    width: 30%;
  }
  .t-concept__txt {
    margin-left: 0;
  }
  .t-concept__txt > p {
    width: 100%;
  }
  .t-concept__txt-inner::after {
    display: none;
  }
}

/* works
=======================================================*/
#t-works {
  position: relative;
  padding: 10rem 0 12rem;
}
#t-works::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20rem;
  height: 10rem;
  background-color: var(--color_3);
  z-index: -1;
}
#t-works::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: 0;
  width: 20rem;
  height: 20rem;
  background-color: var(--color_3);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: rotate(30deg);
  z-index: -1;
}

#t-works .inner__1600 h2 {
  display: flex;
  align-items: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}

#t-works .inner__1600 h2 .ttl__img {
  width: 27vw;
  max-width: 570px;
  min-width: 330px;
}

#t-works .inner__1600 h2 .ttl__mark {
  width: 8rem;
  height: 8rem;
  transform: rotate(10deg) translate(-1rem, 1rem);
}

.works__contents {
  margin-top: -3rem;
  padding: 0 7% 0;
  text-align: right;
}

/**/
.custom-slider {
  position: relative;
  width: 100%;
  height: 51rem;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 90rem;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  transform: scale(0.5) translateX(100%);
  transform-origin: center right;
}

/* 1枚目：メイン */
.slider-item.is-active {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  transform: scale(1) translateX(0);
  z-index: 3;
  pointer-events: auto;
}

/* 2枚目：右奥1 */
.slider-item.is-next {
  opacity: 1;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transform: scale(0.75) translateX(20rem);
  z-index: 2;
}

/* 3枚目：右奥2 */
.slider-item.is-far {
  opacity: 1;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transform: scale(0.5) translateX(50rem);
  z-index: 1;
}

.works-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  -webkit-filter: drop-shadow(#cccccc80 0 5px 10px);
  filter: drop-shadow(#cccccc80 0 5px 10px);
}
.works-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.works-info {
  margin-top: 1em;
  font-size: 2rem;
  opacity: 0;
}

.slider-item.is-active .works-info {
  opacity: 1;
  transition: opacity 1.5s 0.3s;
}

/**/
.works__contents .link__btn {
  margin-top: 5rem;
  margin-right: 4rem;
}

@media screen and (max-width: 896px) {
  #t-works::before {
    width: 15rem;
  }
  #t-works::after {
    right: -5rem;
    width: 18rem;
    height: 18rem;
  }
  .works__contents {
    margin-top: -4rem;
  }
  .custom-slider {
    height: 60rem;
  }
  .slider-item {
    width: 90%;
  }
  .slider-item.is-active {
    transform: scale(1) translateX(0) translateY(50%);
  }
  .slider-item.is-next {
    transform: scale(0.75) translateX(5rem) translateY(30%);
  }
  .slider-item.is-far {
    transform: scale(0.5) translateX(15rem);
  }
  .works__contents .link__btn {
    margin-top: 5rem;
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
  #t-works {
    padding: 5rem 0 6rem;
  }
  #t-works::before {
    width: 10rem;
    height: 8rem;
  }
  #t-works::after {
    right: -8rem;
    width: 18rem;
    height: 18rem;
  }
  #t-works .inner__1600 h2 .ttl__img {
    min-width: 220px;
  }
  #t-works .inner__1600 h2 .ttl__mark {
    width: 4rem;
    height: 4rem;
    transform: rotate(10deg) translate(-1rem, 0);
  }
  .works__contents {
    margin-top: 2rem;
    padding: 0;
  }

  .custom-slider {
    height: 80vw;
    padding-bottom: 2em;
    position: relative;
  }
  .slider-item {
    width: 85%;
    left: 50%;
    transform-origin: top center; /*
    transform: translateX(-50%) translateY(0) scale(0.5);*/
  }
  .slider-item.is-active {
    transform: scale(1) translateX(-58%) translateY(60%);
    -webkit-filter: blur(0);
    filter: blur(0);
    z-index: 3;
  }
  .slider-item.is-next {
    transform: scale(0.75) translateX(-49%) translateY(45%);
    -webkit-filter: blur(3px);
    filter: blur(3px);
    z-index: 2;
  }
  .slider-item.is-far {
    transform: scale(0.5) translateX(-38%) translateY(25%);
    -webkit-filter: blur(6px);
    filter: blur(6px);
    z-index: 1;
  }
  .works-info {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .works__contents .link__btn {
    margin-top: 6rem;
  }
}

/* service
=======================================================*/
#t-service {
  position: relative;
  padding: 15rem 0 10rem;
  background-image: url(../img/t-service_bg.png);
  background-repeat: no-repeat;
  background-position: top 15rem center;
  background-size: 100% calc(100% - 25rem);
}

#t-service .inner__1600 {
  text-align: right;
  background-image: url(../img/t-service-bg.png);
  background-repeat: no-repeat;
  background-position: left 5% bottom;
  background-size: 60% auto;
}

.t-service__ttl {
  position: relative;
  width: 29vw;
  max-width: 600px;
  min-width: 350px;
  margin: -5% auto auto 5%;
  float: left;
}

.t-service__ttl-en {
  width: 29.2vw;
  min-width: 300px;
}

.t-service__ttl-ja {
  position: absolute;
  top: -1rem;
  left: 20%;
  width: 8.5vw;
  min-width: 87px;
}

.t-service__txt {
  width: 42%;
  margin: 0 3% auto auto;
  padding: 0 3rem 2rem;
  background-color: var(--color_1);
  border-radius: 0 0 0.3rem 0.3rem;
}

.t-service__head {
  margin-bottom: 3rem;
}

.t-service__img {
  width: 75%;
  margin: -6rem auto 0;
}

.link__btn-service {
  margin: 0 8% 0 auto;
}

.pickup__wrap {
  width: 55%;
  margin: 5rem -3rem -1.8em auto;
}

.pickup__wrap h3 {
  position: relative;
  display: flex;
  align-items: start;
  width: 7rem;
  margin: 0 0 -2px 2px;
  transform-origin: left bottom;
  transform: rotate(90deg) scaleX(0.5);
}

.pickup__wrap.scroll-active h3 {
  -webkit-animation: flag 0.4s ease-out 1s forwards;
  animation: flag 0.4s ease-out 1s forwards;
}
@-webkit-keyframes flag {
  0% {
    transform: rotate(90deg) scaleX(0.5);
  }
  30% {
    transform: rotate(0) scaleX(1);
  }
  70% {
    transform: rotate(-20deg) scaleX(1);
  }
  90% {
    transform: rotate(-20deg) scaleX(1);
  }
  100% {
    transform: rotate(0) scaleX(1);
  }
}
@keyframes flag {
  0% {
    transform: rotate(90deg) scaleX(0.5);
  }
  30% {
    transform: rotate(0) scaleX(1);
  }
  70% {
    transform: rotate(-20deg) scaleX(1);
  }
  90% {
    transform: rotate(-20deg) scaleX(1);
  }
  100% {
    transform: rotate(0) scaleX(1);
  }
}

.pickup__wrap .marquee {
  position: relative;
  display: flex;
  padding: 0.4em 0;
  overflow: hidden;
  border: 2px var(--color_2) solid;
  background-color: var(--color_1);
  z-index: 3;
}

.marquee__txt {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  min-width: 100%;
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 896px) {
  .t-service__ttl {
    min-width: 330px;
    margin: -10rem auto auto 0;
  }
  .t-service__txt {
    width: 50%;
    margin: 0 0 2rem auto;
    padding: 0 2rem 1.5rem;
  }
  .t-service__head {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 600px) {
  #t-service .inner__1600 {
    background-position: right 100% bottom;
    background-size: 90% auto;
  }

  .t-service__ttl {
    min-width: 240px;
    margin: -16vw auto auto 0;
  }
  .t-service__txt {
    width: 100%;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    border-radius: 30px;
  }
  .t-service__img {
    width: 100%;
    margin: 0 auto 2rem;
  }
  .link__btn-service {
    margin: 0 0 0 auto;
  }
  .pickup__wrap {
    width: 98%;
    margin: 5rem -1.5rem -1.8em auto;
  }
  .marquee__txt {
    font-size: 80%;
  }
}
