@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
html, body {
  min-width: 0;
}

#wrapper {
  box-sizing: border-box;
  background: #ffffff;
}

#topics_area {
  margin: 0 auto;
  max-width: 920px;
  box-sizing: border-box;
  padding: 0 20px;
}
@media screen and (max-width: 820px) {
  #topics_area {
    padding: 0 15px;
  }
}
#topics_area > h3 {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  background: none;
  color: #222;
  line-height: 1.4;
  font-weight: bold;
  font-size: 28px;
  margin: 40px auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 820px) {
  #topics_area > h3 {
    margin: 0 auto 2.5em;
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.03em;
    margin: 20px auto 40px;
  }
}
#topics_area > h3[data-label]:before {
  content: attr(data-label);
  display: inline-block;
  font-size: 14px;
  background: #3C3C3C;
  color: #ffffff;
  line-height: 1;
  padding: 0.3em 0.7em;
  margin-right: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 820px) {
  #topics_area > h3[data-label]:before {
    font-size: 12px;
  }
}
#topics_area > h3 .date {
  flex-grow: 1;
  flex-shrink: 1;
  font-weight: normal;
  display: inline-block;
  font-size: 16px;
  color: #787878;
  margin-bottom: 0.75em;
  width: 70%;
}
@media screen and (max-width: 820px) {
  #topics_area > h3 .date {
    font-size: 14px;
  }
}
#topics_area > h3 .sorcial_lower {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  font-size: 14px;
  font-weight: normal;
}
#topics_area > h3 .sorcial_lower li {
  display: flex;
}
#topics_area > h3.residents::before {
  background-color: #E35D54;
}
#topics_area > h3.anyone::before {
  background-color: #53A96D;
}

.topics_text p img {
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  margin-bottom: 2em;
}
.topics_text p {
  line-height: 1.7;
  font-size: 16px;
  margin: 0 !important;
}
@media screen and (max-width: 820px) {
  .topics_text p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.topics_text p a {
  color: #E35D54;
  text-decoration: underline;
}
.topics_archive {
  margin: 100px auto 0;
  max-width: 920px;
  box-sizing: border-box;
  margin-top: 100px;
}
@media screen and (max-width: 820px) {
  .topics_archive {
    margin: 50px 15px 0;
  }
}
.topics_archive ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 820px) {
  .topics_archive ul {
    justify-content: center;
  }
}
.topics_archive ul li {
  text-align: center;
  width: 33.3%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .topics_archive ul li {
    width: auto;
  }
  .topics_archive ul li + li {
    margin-left: 2em;
  }
}
.topics_archive ul li.is-disable {
  opacity: 0.4;
  pointer-events: none;
}
.topics_archive ul a {
  text-decoration: underline;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .topics_archive ul a {
    font-size: 12px;
  }
}
.topics_archive ul a.prev::before, .topics_archive ul a.next::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(/svg/icn-arrow_carousel.svg) no-repeat center center/cover;
  display: inline-block;
}
.topics_archive ul a.prev::before {
  margin-right: 0.5em;
  transform: scale(-1, 1);
}
.topics_archive ul a.next::after {
  margin-left: 0.5em;
}
@media screen and (max-width: 820px) {
  .topics_archive ul a.list {
    display: none;
  }
}
.topics_conversion {
  max-width: 920px;
  margin-inline: auto;
}
@media screen and (max-width: 820px) {
  .topics_conversion {
    margin: 0 15px;
  }
}

.event_information {
  margin: 60px auto;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .event_information {
    display: block;
    margin-top: 40px;
  }
}
.event_information tr {
  border-bottom: 1px solid #efefef;
}
@media screen and (max-width: 820px) {
  .event_information tr {
    display: block;
  }
}
.event_information td {
  text-align: left;
  box-sizing: border-box;
}
.event_information td iframe {
  max-width: 100%;
}
@media screen and (max-width: 820px) {
  .event_information td {
    display: block;
    padding-top: 0;
  }
  .event_information td iframe {
    margin-top: 0.5em;
  }
}
.event_information th {
  box-sizing: border-box;
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .event_information th {
    display: block;
    text-align: left;
    padding-bottom: 0;
  }
}

.topics_conversion {
  display: flex;
  align-items: center;
  justify-content: center;
  clear: both;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 820px) {
  .topics_conversion {
    margin-top: 40px;
  }
}
.topics_conversion_wrapper {
  position: fixed;
  z-index: 1000;
  box-sizing: border-box;
  left: 50%;
  width: 100%;
  bottom: 0;
  transform: translate(-50%, 0);
  transition: bottom 0.4s cubic-bezier(0.75, 0.01, 0.31, 1);
  background: rgba(255, 255, 255, 0.9);
}
.topics_conversion_wrapper > div {
  padding: 15px;
  box-sizing: border-box;
  border: 3px solid #E35D54;
  border-radius: 7px;
}
@media screen and (max-width: 820px) {
  .topics_conversion_wrapper > div {
    padding: 10px 15px;
  }
}
.topics_conversion_body {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  box-sizing: border-box;
  color: #E35D54;
}
@media screen and (max-width: 820px) {
  .topics_conversion_body {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
  }
}
.topics_conversion_body p {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 820px) {
  .topics_conversion_body p {
    font-size: 14px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.topics_conversion_body p a {
  margin-top: 0.5em;
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  text-decoration: underline;
}
@media screen and (max-width: 820px) {
  .topics_conversion_body p a {
    font-size: 12px;
  }
}
.topics_conversion_body p a:hover {
  text-decoration: none;
}
.topics_conversion_body p a:before {
  display: inline-block;
  content: "";
  background: url(/svg/icn-arrow_banner_black.svg) no-repeat center center/cover;
  width: 14px;
  height: 14px;
  margin-right: 0.2em;
}
.topics_conversion_body > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1em;
}
.topics_conversion_body > div a:hover {
  opacity: 0.7;
}
.topics_conversion_body a + a {
  margin-left: 0.5em;
}
.topics_conversion_body a img {
  height: 60px;
  width: auto;
}
@media screen and (max-width: 820px) {
  .topics_conversion_body a img {
    height: 42px;
  }
}
.topics_conversion.is-active .topics_conversion_wrapper {
  bottom: 0;
}
.topics_conversion.is-static .topics_conversion_wrapper {
  position: static;
  transform: none;
}
.topics_conversion:not(.is-static) .topics_conversion_wrapper > div {
  border: none;
  border-radius: 0;
  border-top: 3px solid #E35D54;
}