@charset "UTF-8";
.header {
  margin: 30px;
  display: flex;
}

.header-left {
  width: 25%;
  display: block;
  padding: 0px;
}
.header-left img {
  text-align: left;
  margin-right: 5px;
  width: 100%;
  max-width: 100px;
}

.header-right {
  margin-left: 20px;
  margin-top: 0px;
  padding: 0px;
  display: block;
}
.header-right .item01 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: medium;
}
.header-right .item02 {
  font-size: xx-large;
  font-family: "Manrope", sans-serif;
}
.header-right .item03 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: small;
}

.main {
  margin: 30px;
}
.main .beansimage {
  width: 100%;
  margin: 20px 0;
}

.comment__title {
  border-bottom: solid 1px black;
  margin-bottom: 10px;
}

.comment__title--item01 {
  font-family: "Manrope", sans-serif;
  font-size: medium;
}

.comment__title--item02 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  padding-left: 10px;
  font-size: small;
}

.comment__text {
  margin-bottom: 30px;
}

.bottan {
  background-color: black;
  border-radius: 10px;
  color: white;
  width: 150px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer {
  margin: 30px;
  text-align: center;
}

.plantname {
  width: 100%;
  background-color: black;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: large;
}

.plantinfo {
  width: 100%;
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}

.plantinfo-left {
  width: 70%;
  font-size: small;
}
.plantinfo-left img {
  width: 30%;
}

.plantinfo-right {
  width: 30%;
  text-align: center;
  font-size: small;
}
.plantinfo-right img {
  width: 100%;
}

.plant-title {
  width: 100%;
  background-color: gray;
  color: white;
  padding: 5px;
  text-align: center;
  font-size: large;
  margin-bottom: 10px;
}

.plant-text {
  width: 100%;
  font-size: small;
  margin-bottom: 30px;
}

ul {
  margin: 0 30 0 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.logo-top {
  width: 100px;
  margin: 10px;
}

.logo-text {
  font-family: "Manrope", sans-serif;
  font-size: xx-large;
}

.menu {
  font-family: "Manrope", sans-serif;
}

/*アニメーション*/
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */