#information {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 5em;
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: ease-in-out;
}
#information .title {
  width: 10%;
  min-width: 50px;
  opacity: 0;
  transform: translateX(20%);
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}
#information .title.animate {
  opacity: 1;
  transform: none;
}
#information .title img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#information .info-list {
  width: 90%;
  opacity: 0;
  transform: translateX(-20%);
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}
#information .info-list.animate {
  transform: none;
  opacity: 1;
}
#information .info-list .info-item {
  width: 70%;
  margin: 2em auto 0 auto;
  position: relative;
  background-color: #F99B07;
  padding: 1em;
}
#information .info-list .info-item .info-wrapper {
  width: 100%;
  text-align: left;
}
#information .info-list .info-item .info-wrapper .info-title {
  font-size: 14px;
  color: white;
  font-weight: 500;
}
#information .info-list .info-item .info-wrapper .info-date {
  font-size: 18px;
  position: absolute;
  color: #023692;
  font-weight: 600;
  top: 0;
  left: 0;
  transform: translate(-10%, -50%);
}
#information .info-list .to-info {
  display: block;
  width: 70%;
  margin: 1em auto;
  color: #023692;
  font-weight: 600;
  font-size: 20px;
}

#body.kotei-page h2.wp-block-heading {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  color: #023692;
  font-weight: 800;
  margin-top: 0.5em;
  padding-left: 0.1em;
  padding-right: 1em;
  border-bottom: #F99B07 solid 3px;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.8s;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
}
#body.kotei-page h2.wp-block-heading.animate {
  opacity: 1;
  transform: none;
}
#body.kotei-page .wp-block-latest-posts__list {
  width: 100%;
  margin-top: 2em;
  opacity: 0;
  transform: translateY(50%);
  transition: all 0.8s;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
}
#body.kotei-page .wp-block-latest-posts__list.animate {
  opacity: 1;
  transform: none;
}
#body.kotei-page .wp-block-latest-posts__list li {
  position: relative;
  width: 65%;
  margin: 0 auto;
  background-color: #F99B07;
  margin-top: 1em;
  padding: 1em;
}
#body.kotei-page .wp-block-latest-posts__list li a.wp-block-latest-posts__post-title {
  color: white;
  font-size: 12px;
}
#body.kotei-page .wp-block-latest-posts__list li time {
  position: absolute;
  top: 0;
  left: -2%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #023692;
  font-weight: 600;
}

#body.toukou-single h2.wp-block-heading {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  color: #023692;
  font-weight: 800;
  margin-top: 0.5em;
  padding-left: 0.1em;
  padding-right: 1em;
  border-bottom: #F99B07 solid 3px;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.8s;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
}
#body.toukou-single h2.wp-block-heading.animate {
  opacity: 1;
  transform: none;
}
#body.toukou-single .info-card {
  width: 70%;
  margin: 2em auto;
  background-color: #F99B07;
  padding: 1em;
  opacity: 0;
  transform: translateY(50%);
  transition: all 0.8s;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
}
#body.toukou-single .info-card.animate {
  opacity: 1;
  transform: none;
}
#body.toukou-single .info-card .date {
  color: white;
  font-weight: 600;
}
#body.toukou-single .info-card .title {
  margin-top: 0.5em;
  padding-bottom: 0.5em;
  color: white;
  font-weight: 600;
  border-bottom: #fff solid 3px;
  font-size: 18px;
}
#body.toukou-single .info-card .content {
  margin-top: 0.5em;
  color: white;
  font-weight: 600;
  font-size: 16px;
}
#body.toukou-single .go-back {
  color: #023692;
  font-weight: 900;
  width: 70%;
  margin: 0 auto;
  display: block;
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.8s, color 0.1s, opacity 0.8s;
  transition-timing-function: ease-in-out;
}
#body.toukou-single .go-back.animate {
  opacity: 1;
  transform: none;
}
#body.toukou-single .go-back:hover {
  color: #F99B07;
}

@media screen and (min-width: 1024px) {
  #information {
    width: 100%;
    margin: 15em auto 0 auto;
  }
  #information h2.title {
    font-size: 120px;
  }
  #information .info-list {
    width: 90%;
  }
  #information .info-list .info-item {
    width: 60%;
    margin: 2.5em auto 0 auto;
    position: relative;
    background-color: #F99B07;
    padding: 2em 1em;
  }
  #information .info-list .info-item .info-wrapper {
    width: 100%;
    text-align: left;
  }
  #information .info-list .info-item .info-wrapper .info-title {
    font-size: 20px;
    color: white;
    font-weight: 500;
  }
  #information .info-list .info-item .info-wrapper .info-date {
    font-size: 32px;
    position: absolute;
    color: #023692;
    font-weight: 1000;
    top: 0;
    left: 0;
    transform: translate(-10%, -50%);
  }
  #information .info-list .to-info {
    display: block;
    width: 60%;
    margin: 1em auto;
    color: #023692;
    font-weight: 1000;
    font-size: 32px;
  }
  #body.kotei-page h2.wp-block-heading {
    margin-top: 2em;
    font-size: 40px;
    font-weight: 1000;
    width: 80%;
  }
  #body.kotei-page .wp-block-latest-posts__list li {
    padding: 1.5em;
    margin-top: 2em;
  }
  #body.kotei-page .wp-block-latest-posts__list li a.wp-block-latest-posts__post-title {
    font-size: 20px;
  }
  #body.kotei-page .wp-block-latest-posts__list li time {
    font-weight: 1000;
    font-size: 24px;
  }
  #body.toukou-single {
    width: 80%;
    margin: 0 auto;
  }
  #body.toukou-single h2.wp-block-heading {
    margin-top: 2em;
    font-size: 40px;
    font-weight: 1000;
    width: 80%;
  }
  #body.toukou-single .info-card {
    padding: 3em;
  }
  #body.toukou-single .info-card .date {
    font-size: 32px;
    font-weight: 1000;
  }
  #body.toukou-single .info-card .title {
    font-size: 24px;
    font-weight: 1000;
  }
  #body.toukou-single .info-card .content {
    font-size: 20px;
    font-weight: 500;
  }
  #body.toukou-single .go-back {
    font-size: 24px;
  }
}/*# sourceMappingURL=info.css.map */