@charset "UTF-8";
/* === リセット === */
html,
body,
ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

body {
  overflow-y: auto;
}

/* === section1 === */
.section1 {
  position: relative;
  height: 100vh;
  background: #f5f8f8;
  overflow: hidden;
  z-index: 2;
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
}

.gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 28%;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#efefef));
  background: linear-gradient(0deg, #fff 0%, #efefef 100%);
}
@media only screen and (max-width: 430px) {
  .gradient {
    height: 40%;
  }
}
@media only screen and (max-width: 375px) {
  .gradient {
    height: 20%;
  }
}

.opening {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*
.opening {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(8);
	transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
	width: 400px;
	z-index: 5;
	backface-visibility: hidden;
	will-change: transform;
	@media only screen and (max-width: 1680px) {
		width: 340px;
	}
	@media only screen and (max-width: 430px) {
		top: 52%;
		width: 400px;
	}
}*/
.bag {
  position: relative;
  -webkit-transform-origin: center;
          transform-origin: center;
  will-change: transform;
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 375px) {
  .bag {
    top: 100px;
  }
}
@media only screen and (max-width: 430px) {
  .bag img {
    width: 50%;
  }
}

.label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}
@media only screen and (max-width: 375px) {
  .label {
    top: 300px;
  }
}
@media only screen and (max-width: 430px) {
  .label img {
    width: 100px;
  }
}

/*
.label-inner {
	width: 170px;
	display: block;
	will-change: transform, opacity;
	opacity: 0;
	@media only screen and (max-width: 430px) {
		& img {
			width: 100px;
		}
	}
}*/
/*
.label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	width: 100%;
	max-width: 170px;
	pointer-events: none;
	opacity: 1;
	& img {
		width: 100%;
		height: auto;
		opacity: 0;
		transform: scale(1);
		transform-origin: center center;
		display: block;
		margin: 0 auto;

		backface-visibility: hidden;
		transform: translateZ(0) scale(1);
		will-change: transform, opacity;

		transition:
			transform 2s cubic-bezier(0.77, 0, 0.175, 1),
			opacity 2s ease-out;
		@media only screen and (max-width: 1680px) {
			width: 80%;
		}
		@media only screen and (max-width: 430px) {
			width: 50%;
		}
	}
}*/
/*
.label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}
.label img {
	width: 50%;
	opacity: 0;
	transform: scale(1.2);
	transition:
		transform 0.8s cubic-bezier(0.77, 0, 0.175, 1),
		opacity 0.8s ease-out;
	display: block;
	margin: 0 auto;
}*/
.side {
  position: absolute;
  top: 50%;
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.side-left {
  right: 110%;
  /*margin-right: 30px;*/
  width: 270px;
  -webkit-transform: translateY(-50%) translateX(30%);
          transform: translateY(-50%) translateX(30%);
}
@media only screen and (max-width: 430px) {
  .side-left {
    display: none;
  }
}

.side-right {
  left: 110%;
  /*margin-left: 30px;*/
  width: 400px;
  -webkit-transform: translateY(-50%) translateX(-30%);
          transform: translateY(-50%) translateX(-30%);
}
@media only screen and (max-width: 430px) {
  .side-right {
    display: none;
  }
}

.side-left--sp {
  display: none;
}
@media only screen and (max-width: 430px) {
  .side-left--sp {
    display: block;
    position: absolute;
    top: 4%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
    opacity: 0;
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 5;
  }
}
.side-left--sp img {
  max-width: 300px;
}

/*
.side-left--sp {
	display: none;
	& img {
		width: 100%;
	}
	@media only screen and (max-width: 430px) {
		display: block;
		position: absolute;
		z-index: 1;
		top: 0px;
		left: 0px;
		padding: 28px 40px 40px 40px;
		box-sizing: border-box;
	}
}*/
.fade-in-left {
  opacity: 1;
  -webkit-transform: translate(-20%, -50%);
          transform: translate(-20%, -50%);
}

.fade-in-right {
  opacity: 1;
  -webkit-transform: translate(14%, -50%);
          transform: translate(14%, -50%);
}

/* === section2 === */
/*
.section2 {
	position: fixed;
	inset: 0;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	z-index: 0;
}*/
.section2 {
  position: fixed;
  inset: 0;
  background: #b33a2f url(../../assets/img/bgTop.jpg) center/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  height: 100vh;
  /*
  position: relative;
  background: #b33a2f url(../../assets/img/bgTop.jpg) center/cover no-repeat;
  height: 100vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;*/
}
@media only screen and (max-width: 430px) {
  .section2 {
    overflow-y: scroll;
  }
}
.section2__wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 16/9;
  margin: auto;
  overflow: hidden;
  z-index: 100;
}
@media only screen and (max-width: 430px) {
  .section2__wrapper {
    width: 90%;
    height: 100vh;
    overflow-y: scroll;
  }
}
.section2__wrapper a img {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.section2__wrapper a img.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section2__wrapper a.sticker-link {
  position: absolute;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
  transition: transform 0.4s ease, filter 0.4s ease;
  transition: transform 0.4s ease, filter 0.4s ease, -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
}
@media only screen and (max-width: 430px) {
  .section2__wrapper a.sticker-link {
    position: static;
  }
}
.section2__wrapper a.sticker-link img {
  width: 100%;
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.section2__wrapper a.sticker-link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  z-index: 2;
}
@media only screen and (max-width: 430px) {
  .section2__wrapper--label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 80px auto 40px;
  }
}
@media only screen and (max-width: 430px) {
  .section2__wrapper--company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 20px;
    margin: 0 auto 40px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .section2__wrapper--company a.sticker-link {
    width: 48%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    display: block;
    gap: 20px;
  }
  .section2__wrapper--company a.sticker-link:first-child {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 430px) {
  .section2__wrapper--people {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 20px;
    margin: 0 auto 40px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .section2__wrapper--people a.sticker-link {
    width: 48%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    display: block;
    gap: 20px;
  }
  .section2__wrapper--people a.sticker-link:first-child {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 430px) {
  .section2__wrapper--recruit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 20px;
    margin: 0 auto 40px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .section2__wrapper--recruit a.sticker-link {
    width: 48%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    display: block;
    gap: 20px;
  }
  .section2__wrapper--recruit a.sticker-link:first-child {
    width: 100%;
    text-align: center;
  }
}
.section2__wrapper--copyright {
  position: absolute;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .section2__wrapper--copyright {
    font-size: 13px;
  }
}
@media only screen and (max-width: 430px) {
  .section2__wrapper--copyright {
    font-size: 12px;
  }
}
.section2__wrapper--copyright {
  color: #ffffff;
  right: 40px;
  bottom: 40px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 430px) {
  .section2__wrapper--copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 auto 40px;
  }
}

a.sticker-link {
  position: absolute;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
  transition: transform 0.4s ease, filter 0.4s ease;
  transition: transform 0.4s ease, filter 0.4s ease, -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
}

a.sticker-link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  z-index: 2;
}

a.sticker-link img {
  width: 100%;
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.fade-in {
  opacity: 1 !important;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

/* === ロゴ配置 === */
.label1,
.logo1,
.logo2,
.logo3,
.logo4,
.logo5,
.logo6,
.logo7,
.logo8,
.logo9,
.logo10,
.logo11,
.logo12,
.logo13,
.logo14,
.logo15 {
  position: absolute;
  -webkit-filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.4));
}
@media only screen and (max-width: 430px) {
  .label1,
  .logo1,
  .logo2,
  .logo3,
  .logo4,
  .logo5,
  .logo6,
  .logo7,
  .logo8,
  .logo9,
  .logo10,
  .logo11,
  .logo12,
  .logo13,
  .logo14,
  .logo15 {
    position: static;
    width: auto;
  }
}
@media only screen and (max-width: 430px) {
  .label1 span,
  .logo1 span,
  .logo2 span,
  .logo3 span,
  .logo4 span,
  .logo5 span,
  .logo6 span,
  .logo7 span,
  .logo8 span,
  .logo9 span,
  .logo10 span,
  .logo11 span,
  .logo12 span,
  .logo13 span,
  .logo14 span,
  .logo15 span {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}
.label1.noshadow,
.logo1.noshadow,
.logo2.noshadow,
.logo3.noshadow,
.logo4.noshadow,
.logo5.noshadow,
.logo6.noshadow,
.logo7.noshadow,
.logo8.noshadow,
.logo9.noshadow,
.logo10.noshadow,
.logo11.noshadow,
.logo12.noshadow,
.logo13.noshadow,
.logo14.noshadow,
.logo15.noshadow {
  -webkit-filter: none !important;
          filter: none !important;
}

.label1 {
  top: 7%;
  left: 7%;
  width: 24%;
  pointer-events: none;
}
.label1 img {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
@media only screen and (max-width: 430px) {
  .label1 {
    position: static;
    width: auto;
  }
}

.logo1 {
  top: 8%;
  left: 42%;
  width: 20%;
  pointer-events: none;
}

.logo2 {
  top: 18%;
  left: 33%;
  width: 21%;
  -webkit-animation: pulse 1.5s infinite;
          animation: pulse 1.5s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
.logo3 {
  top: 12%;
  left: 54%;
  width: 8%;
}
@media only screen and (max-width: 430px) {
  .logo3 span {
    display: block;
    width: 70% !important;
    margin: 0 auto;
  }
}

.logo4 {
  top: 28%;
  left: 57%;
  width: 14%;
}

.logo5 {
  top: 13%;
  right: 17%;
  width: 14%;
}

.logo6 {
  top: 53%;
  left: 19%;
  width: 16%;
  pointer-events: none;
}

.logo7 {
  top: 25%;
  right: 10%;
  width: 8%;
}
@media only screen and (max-width: 430px) {
  .logo7 span {
    display: block;
    width: 70% !important;
    margin: 0 auto;
  }
}

.logo8 {
  top: 50%;
  left: 6%;
  width: 11%;
}

.logo9 {
  top: 66%;
  left: 20%;
  width: 14%;
}

.logo10 {
  top: 45%;
  left: 36%;
  width: 8%;
}

.logo11 {
  top: 65%;
  left: 40%;
  width: 13%;
}

.logo12 {
  top: 52.5%;
  right: 22%;
  width: 18%;
  pointer-events: none;
}

.logo13 {
  top: 48%;
  right: 8%;
  width: 15%;
}

.logo14 {
  top: 65%;
  right: 33%;
  width: 12%;
}

.logo15 {
  top: 70%;
  right: 21%;
  width: 9%;
}
@media only screen and (max-width: 430px) {
  .logo15 span {
    display: block;
    width: 70% !important;
    margin: 0 auto;
  }
}

/* === 右上メニュー === */
.top-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.top-menu a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top-menu__entry img {
  max-height: 30px;
}
.top-menu__intern img {
  max-height: 34px;
}

/*
.section2 .copyright {
	position: absolute;
	right: 40px;
	bottom: 40px;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.05em;
}*/
@media (max-width: 430px) {
  .side-right img {
    width: 90%;
  }
  .fade-in-left,
  .fade-in-right {
    -webkit-transform: none;
            transform: none;
  }
}
.scroll-guide {
  position: absolute;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 430px) {
  .scroll-guide {
    bottom: 10%;
  }
}

.scroll-guide span {
  display: block;
  margin-bottom: 8px;
}

.scroll-guide i {
  display: block;
  width: 1px;
  height: 32px;
  margin: 0 auto;
  background: currentColor;
  -webkit-animation: scrollLine 1.8s ease-in-out infinite;
          animation: scrollLine 1.8s ease-in-out infinite;
}

@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  40% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  60% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  40% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  60% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
/* === section3 === */
.section3 {
  display: none;
}
@media screen and (max-width: 430px) {
  .section3 {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: block;
    background: #fefefe;
    min-height: 100vh;
  }
}
.section3__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px;
}

.tap-to-next {
  position: fixed;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9999;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 30px;
}

.mv {
  position: relative;
  height: 100vh;
  z-index: 1000;
}

.mouse-wrap {
  position: fixed; /* 画面基準で固定 */
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 12px;
  margin: 0 auto;
}

.mouse::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: mouseScroll 1.6s infinite;
          animation: mouseScroll 1.6s infinite;
}

@-webkit-keyframes mouseScroll {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 12px);
            transform: translate(-50%, 12px);
  }
}

@keyframes mouseScroll {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 12px);
            transform: translate(-50%, 12px);
  }
}
.scroll-text {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #fff;
}