@charset "UTF-8";

/************************************************************
DEFAULT
************************************************************/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=Roboto:wght@700&display=swap');

/* =========================================================
 * reset　　　    /*リセット
========================================================= */

blockquote,
body,
div,
dl,
dt,
dd,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
select,
span,
textarea,
td,
th,
ul,
figure,
figcaption { margin: 0px;  padding: 0px; }

fieldset,img{border:0;}

h1,
h2,
h3,
h4,
h5,
h6 { font-size: 100%; font-weight: normal; }

ol,
ul,
ul li { list-style-type: none; }

img { border: none; vertical-align: bottom; }

table {  border-collapse: collapse; border-spacing: 0; }

caption, th { text-align:left; }

iframe { border: none;}

a:focus { outline: none;}

address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}

li img{
  line-height:0;
  font-size:0;
  vertical-align:top;
}

/* IE */
* html ul li dl,
* html ol li dl { display: inline; }

*:first-child+html ul li dl,
*:first-child+html ol li dl {display: inline; }


/* =========================================================
 * default settings　　　    /*デフォルトセッティング
========================================================= */
html{
  font-size: 62.5%;
}
*{
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  word-break: break-all;
}
p{
  line-break: strict;
}
a{
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
a:hover{
  opacity:0.7;
  -webkit-opacity: .7;
  -moz-opacity: .7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
body {
  font-size: 1.4rem;
  font: inherit;
  font-family:'Roboto','Noto Sans JP',sans-serif;
  line-height: 1.6;
  background:#fff;
  -webkit-text-size-adjust: 100%;
  color:#000;
}
#wrapper{
  width:100%;
}
.pc{
  display:block;
}
.sp{
  display:none;
}
img{
  max-width: 100%;
}
main {
  background-image: url(../img/top/bg-pc.png);
  background-size: 100% auto;
  background-attachment: fixed;
  background-position: center 60px;
  background-repeat: repeat-y;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  a{
    -webkit-transition: none;
    transition:none;
  }
  a:hover{
    opacity:1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);  /* IE lt 8 */
    -ms-filter: "alpha(opacity=100)"; /* IE 8 */
  }
  body {
    -webkit-text-size-adjust: 100%;
    background:#fff;
    min-width:100%;
  }
  img{
    width:100%;
  }
  .pc{
    display:none;
  }
  .sp{
    display:block;
  }
}
/*font-family*/
.roboto{
  font-family:'Roboto',sans-serif;
}
.font-noto{
  font-family:'Noto Sans JP',sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
}
.main-content {
  max-width: 390px;
  background-color: #FFF7D7;
  border-left: solid 4px #E4002B;
  border-right: solid 4px #E4002B;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  main {
    background-image: none;
    background-color: #fff;
  }
  .main-content {
    max-width: 100%;
    border-left: none;
    border-right: none;
  }
}
.back-top {
  max-width: 150px;
  cursor: pointer;
  margin: 0 auto;
}
#page-top {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 1px #E4002B;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#page-top::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #E4002B;
  border-right: solid 1px #E4002B;
  transform: rotate(-45deg);
  margin: 0 auto;
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
}


/************************************************************
ヘッダー
************************************************************/
#header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
#header .header-inner {
  max-width: 1240px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0 auto;
}
#header .logo {
  max-width: 165px;
}
#header .navi .menu {
  display: flex;
  align-items: center;
}
#header .navi .menu li {
  font-family: 'Noto Sans JP',sans-serif;
  font-size: min(1.15vw, 15px);
  margin-left: 40px;
}
#header .navi .menu li a {
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 1160px) {
  #header .hamburger {
    width: 40px;
    height: 40px;
    background-color: #E4002B;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    top: 11px;
    right: 20px;
    z-index: 30;
  }
  #header .hamburger span {
    width: 20px;
    height: 1px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
  }
  #header .hamburger span:nth-of-type(1) {
    top: 14px; 
  }
  #header .hamburger span:nth-of-type(2) {
    top: 20px;
  }
  #header .hamburger span:nth-of-type(3) {
    top: 26px;
  }
  #header .hamburger.active span:nth-of-type(1) {
    top: 20px;
    transform: rotate(-45deg);
  }
  #header .hamburger.active span:nth-of-type(2) {
    display: none;
  }
  #header .hamburger.active span:nth-of-type(3) {
    top: 20px;
    transform: rotate(45deg);
  }
  #header .navi {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 80px 0 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
  }
  #header .navi.active {
    transition: all 0.6s;
    opacity: 1;
    visibility: visible;
  }
  #header .navi {
    width: 100%;
    height: 100vh;
    overflow: auto;
  }
  #header .navi .menu {
    flex-direction: column;
  }
  #header .navi .menu li {
    width: 100%;
    border-bottom: solid 1px #E4002B;
    font-size: 18px;
    padding-left: 30px;
    margin: 0;
    position: relative;
  }
  #header .navi .menu li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: solid 1px #E4002B;
    border-bottom: solid 1px #E4002B;
    transform: rotate(-135deg);
    position: absolute;
    top: 30px;
    left: 10px;
  }
  #header .navi .menu li.logo-event {
    padding: 0 0 30px;
    text-align: center;
  }
  #header .navi .menu li.logo-event::before {
    content: none;
  }
  #header .navi .menu li.logo-event img {
    max-width: 140px;
  }
  #header .navi .menu li a {
    display: block;
    padding: 20px 5px;
  }
  #header .navi .menu li.kewpie-100th {
    border-bottom: none;
    padding: 10px 20px;
    text-align: center;
  }
  #header .navi .menu li.kewpie-100th::before {
    content: none;
  }
  #header .navi .menu li.kewpie-100th .menu-banner {
    max-width: 400px;
    margin: 0 auto;
  }
  #header .navi .menu li.kewpie-100th .menu-text {
    display: none;
  }
}
@media screen and (min-width: 1161px) {
  #header .navi .menu li.logo-event {
    display: none;
  }
  #header .navi .menu .kewpie-100th .menu-banner {
    display: none;
  }
}

/************************************************************
トップ
************************************************************/
#top .mv {
  margin-bottom: 20px;
  position: relative;
}
#top .mv .mv-text {
  max-width: 140px;
  margin: 0 auto;
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
}

#top .slider {
  max-width: 350px;
  margin: 0 auto 70px;
}
#top .slider .slick-dots li button {
  padding: 0;
}
#top .slider .slick-dots li button:before {
    content: "";
    width: 15px;
    height: 15px;
    border: solid 1px #E4002B;
    border-radius: 50%;
    font-size: 16px;
    opacity: 1;
}
#top .slider .slick-dots li.slick-active button:before {
  background-color: #E4002B;
}

#top .mayo-area {
  padding: 0 40px;
  margin-bottom: 30px;
}
/* #top .mayo-area .mayo-area-inner {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: solid 2px #E4002B;
  border-radius: 26px;
  padding: 10px 10%;
}
#top .mayo-area .mayo-area-inner .mayo-text {
  width: 68%;
  margin-right: 10%;
}
#top .mayo-area .mayo-area-inner .mayo-img {
  width: 22%;
} */

#top .menu-area {
  background-color: #E4002B;
  clip-path: polygon(0 115px, 100% 0, 100% calc(100% - 115px), 0 100%);
  padding: 160px 20px 180px;
}
#top .menu-area .sec-title {
  max-width: 120px;
  margin: 0 auto 40px;
}
#top .menu-area .menu-head-text {
  max-width: 300px;
  margin: 0 auto 60px;
}
#top .menu-area .mayozine {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
#top .menu-area .mayozine .mayozine-img {
  width: 32%;
  margin-right: 5%;
}
#top .menu-area .mayozine .mayozine-text {
  width: 63%;
  margin-bottom: 20px;
}
#top .menu-area .btn-dl {
  width: 100%;
}

#top .collaboration {
  background-color: #E4002B;
  clip-path: polygon(0 115px, 100% 0, 100% calc(100% - 115px), 0 100%);
  padding: 150px 20px 160px;
}
#top .collaboration .sec-title {
  max-width: 120px;
  margin: -80px auto 40px;
  padding-top: 80px;
}
#top .collaboration .head-text {
  max-width: 300px;
  margin: 0 auto 40px;
}
#top .collaboration .map-area {
  margin-bottom: 30px;
  position: relative;
}
#top .collaboration .map-area .map-point {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
}
#top .collaboration .map-area .map-center {
  width: 127px;
  height: 90px;
  top: 72px;
  left: 43px;
}
#top .collaboration .map-area .map-miyashita {
  width: 120px;
  height: 204px;
  top: 6px;
  left: 172px;
}
#top .collaboration .map-area .map-dougenzaka {
  width: 122px;
  height: 50px;
  top: 164px;
  left: 19px;
}
#top .collaboration .map-area .map-higashi {
  width: 95px;
  height: 100px;
  top: 236px;
  left: 160px;
}
#top .collaboration .map-area .map-center.active,
#top .collaboration .map-area .map-miyashita.active,
#top .collaboration .map-area .map-dougenzaka.active,
#top .collaboration .map-area .map-higashi.active {
  background-color: rgba(228, 0, 43, 0.4);
}
#top .collaboration .map-area .map-point .map-text {
  background-color: #E4002B;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 2px 0 1px;
  text-align: center;
  position: absolute;
  display: none;
}
#top .collaboration .map-area .map-center.active .map-text,
#top .collaboration .map-area .map-miyashita.active .map-text,
#top .collaboration .map-area .map-dougenzaka.active .map-text,
#top .collaboration .map-area .map-higashi.active .map-text {
  display: block;
}
#top .collaboration .map-area .map-center.active .map-text {
  width: 140px;
  top: -17px;
  left: -7px;
}
#top .collaboration .map-area .map-miyashita.active .map-text {
  width: 125px;
  top: 27px;
  left: -3px;
}
#top .collaboration .map-area .map-dougenzaka.active .map-text {
  width: 110px;
  top: 46px;
  left: 7px;
}
#top .collaboration .map-area .map-higashi.active .map-text {
  width: 95px;
  top: 50px;
  left: 0px;
}

.menu-list li {
  display: block;
  /* transition: all 0.4s ease 0s; */
}
.menu-list li.is-hidden {
  display: none;
}
.menu-list li.is-disped {
  display: none;
}
#top .place-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
  gap: 20px 0;
}
#top .place-list li {
  padding-left: 28px;
  position: relative;
}
#top .place-list li:nth-child(odd) {
  width: 54%;
}
#top .place-list li:nth-child(even) {
  width: 46%;
}
#top .place-list li::before {
  content: "";
  width: 23px;
  height: 23px;
  background-image: url(../img/common/btn-star.svg);
  background-size: contain;
  position: absolute;
  top: -1px;
  left: 0;
}
#top .place-list li.active::before {
  background-image: url(../img/common/btn-star-on.svg);
}
#top .place-list li span {
  color: #FFF7D7;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  position: relative;
}

.menu-list li {
  margin-bottom: 40px;
}
.menu-list li a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.menu-list li.is-hidden {
  display: none;
}
.menu-list li .img-area {
  width: 50%;
  margin-right: 3%;
  position: relative;
}
.menu-list li .img-area::before {
  content: "";
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  border: solid 1px #E4002B;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: -0.5px;
  left: -0.5px;
  z-index: 5;
}
.menu-list li .img-area::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/common/menu-frame-yellow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.menu-list li .text-area {
  width: 47%;
}
.menu-list li:nth-child(even) a {
  flex-direction: row-reverse;
}
.menu-list li:nth-child(even) .img-area {
  margin: 0 0 0 3%;
}
.menu-list li .text-area .store-name {
  min-height: 40px;
  display: flex;
  align-items: center;
  background-color: #FFF7D7;
  border-radius: 10px;
  color: #E4002B;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 5px 5px 25px;
  margin-bottom: 10px;
  position: relative;
}
.menu-list li .text-area .store-name::before {
  content: "";
  width: 14px;
  height: 25px;
  background-image: url(../img/common/icon-pin-red2.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 12px);
  left: 6px;
}
.menu-list li .text-area .menu-text {
  color: #FFF5D7;
  font-size: 14px;
  font-weight: bold;
  text-align: justify;
}

#top .event-area {
  padding-top: 50px;
}
#top .event-area .sec-title {
  max-width: 126px;
  margin: 0 auto 25px;
}
#top .event-area .event-content {
  display: block;
  padding: 0 20px;
}

#top .btn-more {
  max-width: 200px;
  cursor: pointer;
  margin: 0 auto;
  transition: opacity 0.3s ease-out;
}
#top .btn-more:hover {
  opacity: 0.7;
}

#top .banner-area {
  background-color: #FFF7D7;
  padding: 60px 20px 10px;
}
#top .banner-area .banner {
  display: block;
  margin-bottom: 20px;
}

/************************************************************
Aboutページ
************************************************************/
#about .main-content {
  background-color: #fff;
}
#about .bg {
  background-image: url(../img/about/bg.jpg);
  background-size: contain;
  background-position: top center;
  padding: 50px 0 410px;
}
#about .bg .page-title {
  max-width: 260px;
  margin: 0 auto 40px;
}
#about .bg .text-content {
  max-width: 210px;
  margin: 0 auto 50px;
}
#about .bg .logo-event {
  max-width: 190px;
  margin: 0 auto;
}
#about .back-top {
  padding-bottom: 40px;
}


/************************************************************
レシピページ
************************************************************/
#recipe .menu-area {
  padding-top: 30px;
}
#recipe .menu-area .menu-title {
  max-width: 360px;
  margin: 0 auto;
}
#recipe .menu-area .recipe-name {
  padding: 0 20px;
  margin-bottom: 60px;
}
#recipe .menu-area .introduction-title {
  max-width: 220px;
  margin: 0 auto 30px;
}
#recipe .menu-area .menu-text {
  color: #E4002B;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  padding: 0 20px;
  margin-bottom: 40px;
}
#recipe .menu-area .store-info {
  padding: 0 20px;
}
#recipe .menu-area .store-info .info-list {
  border-top: dashed 1.5px #E4002B;
  border-bottom: dashed 1.5px #E4002B;
  padding: 15px 0;
  margin-bottom: 40px;
}
#recipe .menu-area .store-info .info-list li {
  color: #E4002B;
  font-size: 14px;
  padding-left: 30px;
  margin-bottom: 22px;
  position: relative;
}
#recipe .menu-area .store-info .info-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/common/btn-star-red.svg);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
#recipe .menu-area .store-info .info-list li:last-child {
  margin-bottom: 0;
}
#recipe .menu-area .store-info .info-list li a {
  color: #E4002B;
  text-decoration: none;
}
#recipe .menu-area .store-info .info-list .store-address a,
#recipe .menu-area .store-info .info-list .store-url a {
  text-decoration: underline;
}
#recipe .collaboration-title {
  padding: 0 50px;
}
#recipe .collaboration-title img {
  margin-bottom: 40px;
}
#recipe .collaboration-list {
  padding: 0 20px 10px;
}
#recipe .collaboration-list li a {
  display: flex;
  align-items: center;
  color: #E4002B;
  text-decoration: none;
}
#recipe .collaboration-list li .img-area {
  width: 50%;
  margin-right: 3%;
  position: relative;
}
#recipe .collaboration-list li .img-area::before {
  content: "";
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  border: solid 1px #FFF7D7;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: -0.5px;
  left: -0.5px;
  z-index: 5;
}
#recipe .collaboration-list li .img-area::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/common/menu-frame-red.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
#recipe .collaboration-list li .text-area {
  width: 47%;
}
#recipe .collaboration-list li .text-area .collaboration-store-name {
  border-bottom: solid 1.5px #E4002B;
  font-size: 12px;
  font-weight: bold;
  padding: 0 0 10px 20px;
  margin-bottom: 10px;
  position: relative;
}
#recipe .collaboration-list li .text-area .collaboration-store-name::before {
  content: "";
  width: 15px;
  height: 26px;
  background-image: url(../img/common/icon-pin-red.svg);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
#recipe .collaboration-list li .text-area .collaboration-menu-text {
  font-size: 14px;
  font-weight: bold;
  text-align: justify;
}
#recipe .collaboration-list li:nth-child(even) a {
  flex-direction: row-reverse;
}
#recipe .collaboration-list li:nth-child(even) .img-area {
  margin: 0 0 0 3%;
}
#recipe .collaboration-list li:last-child {
  margin-bottom: 20px;
}
#recipe .other-menu-area {
  background-color: #E4002B;
  padding: 0 20px 80px;
  margin-top: 30px;
  position: relative;
}
#recipe .other-menu-area::after {
  content: "";
  width: 100%;
  height: 20px;
  background-image: url(../img/recipe/bg-wave-yellow.png);
  background-size: cover;
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
}
#recipe .other-menu-area .other-title {
  max-width: 300px;
  margin-bottom: 40px;
  position: relative;
  top: -20px;
  left: -20px;
  z-index: 5;
}
#recipe .other-menu-area .back-top {
  max-width: 150px;
  margin-top: 50px;
}

/************************************************************
マヨページ
************************************************************/
#mayo .mayo-area {
  padding: 30px 40px;
}
#mayo .mayo-area .mayo-area-inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
#mayo .mayo-area .mayo-area-inner .mayo-text {
  width: 73%;
  margin-right: 5%;
}
#mayo .mayo-area .mayo-area-inner .mayo-img {
  width: 22%;
}
#mayo .sec {
  background-color: #fff;
}
#mayo .sec .sec-title {
  background-color: #E4002B;
  padding: 8px 0;
  text-align: center;
}
#mayo .sec .sec-title img {
  height: 20px;
}
#mayo .sec .item {
  padding: 25px;
}
#mayo .sec .item .item-img {
  margin: 0 auto 20px;
}
#mayo .sec .item .item-text {
  margin-bottom: 20px;
  text-align: center;
}
#mayo .sec .item .item-text img {
  height: 35px;
}
#mayo .sec .item .item-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
  text-align: justify;
}
#mayo .sec.sec1 .item .item-img {
  max-width: 220px;
}
#mayo .sec.sec2 .item .item-img {
  max-width: 220px;
}
#mayo .sec.sec3 .item .item-img {
  max-width: 140px;
  margin-right: 105px;
}
#mayo .sec.sec4 .item .item-img {
  max-width: 250px;
}
#mayo .sec.sec5 .item .item-img {
  max-width: 240px;
}

#mayo .back-top-outer {
  background-color: #fff;
  padding: 40px 0 50px;
}

#mayo .detail {
  padding: 80px 20px 10px;
}
#mayo .detail .detail-title {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
#mayo .detail .detail-title img {
  max-width: 140px;
}
#mayo .detail .detail-title::before,
#mayo .detail .detail-title::after {
  content: "";
  width: calc(50% - 80px);
  height: 1.5px;
  background-color: #E4002B;
  position: absolute;
  top: 50%;
}
#mayo .detail .detail-title::before {
  left: 0;
}
#mayo .detail .detail-title::after {
  right: 0;
}
#mayo .detail .banner {
  display: block;
  margin-bottom: 20px;
}

/************************************************************
イベントページ
************************************************************/
#event .mv {
  margin-bottom: 40px;
}
#event .head-text {
  max-width: 280px;
  margin: 0 auto 50px;
}
#event .about-event {
  background-color: #fff;
  padding: 55px 0 25px;
}
#event .about-event .section-title {
  padding: 0 20px;
  margin-bottom: 15px;
  text-align: center;
}
#event .about-event .section-title img {
  height: 33px;
}
#event .present {
  padding-bottom: 40px;
}
#event .present .section-title {
  background-color: #fff;
  padding: 0 20px 20px;
  text-align: center;
}
#event .present .section-title img {
  height: 33px;
}
#event .present .present-content {
  max-width: 325px;
  margin: 40px auto;
}
#event .present .sticker-text {
  max-width: 280px;
  margin: 0 auto 10px;
}
#event .present .sticker {
  max-width: 320px;
  margin: 0 auto;
}
#event .overview {
  background-color: #fff;
  padding: 40px 0 50px;
}
#event .overview .section-title {
  margin-bottom: 30px;
  text-align: center
}
#event .overview .section-title img {
  height: 33px;
}
#event .overview .overview-info {
  max-width: 300px;
  margin: 0 auto 15px;
}
#event .overview .overview-map {
  max-width: 320px;
  margin: 0 auto 25px;
}
#event .overview .overview-note {
  max-width: 320px;
  margin: 0 auto;
}
#event .back-top-area {
  background-color: #fff;
  padding-bottom: 60px;
}

/************************************************************
BASE
************************************************************/

body{
  background-color:#fff;
  /* animation: fadeIn 4s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal; */
}
/* @keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
} */