@charset "UTF-8";
:root {
  --h2: 2rem;
  --h3: 1.5rem;
  --h4: 0.8rem;
}
@media screen and (max-width: 800px) {
  :root {
    font-size: 10px;
  }
}

body {
  position: relative;
  width: 100vw;
  margin: 0;
  background: black;
  overflow-x: hidden;
}

#header {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0.4;
  background: black;
  z-index: 999;
  padding: 0 10px;
}
#header h1 {
  flex: 1;
  font-size: 1rem;
  color: white;
}
@media screen and (max-width: 800px) {
  #header h1 {
    font-size: 1.5rem;
  }
}

.intro {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
}
.intro .video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kv {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.kv .video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}

.match_word {
  color: #f5deb3;
  background: linear-gradient(transparent 40%, white 200%);
}

main {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding-bottom: 20px;
}

.content {
  position: relative;
  width: 100%;
  height: 100vh;
  display: block;
}
.content__box {
  position: relative;
  display: block;
  text-align: center;
  top: 23%;
  margin: 0 auto;
}
.content__box__title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content__box__title img {
  width: 100%;
  max-width: 870px;
}
.content__box__message {
  height: 5.5rem;
}
.content__box__message .textTyping {
  display: inline;
  margin: auto;
  color: white;
  font-size: var(--h2);
}
.content__box__message .textTyping span {
  display: none;
}
.content__box__message .textTyping .typingElement .fromWord {
  display: inline;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa, 0 0 82px #0fa, 0 0 92px #0fa, 0 0 102px #0fa, 0 0 151px #0fa;
}
.content__box__message .textTyping .typingElement .toWord {
  display: none;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa, 0 0 82px #0fa;
}
.content__box__message .textTyping .typingElement.active .fromWord {
  display: none;
}
.content__box__message .textTyping .typingElement.active .toWord {
  display: inline;
}
.content__box__message .textTyping .typingElement.visited {
  display: inline;
}
.content__box__message .textTyping .typingElement.visited .fromWord {
  display: none;
}
.content__box__message .textTyping .typingElement.visited .toWord {
  display: inline;
}
.content__box .formWrapper {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.content__box .formWrapper.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.content__box__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1.3vw auto 0;
  width: 768px;
}
@media screen and (max-width: 800px) {
  .content__box__form {
    width: 85%;
    margin-top: 5vw;
  }
}
.content__box__form .textbox {
  position: relative;
  width: 100%;
  height: 57.6px;
  border-radius: 5px;
}
@media screen and (max-width: 800px) {
  .content__box__form .textbox {
    height: 45px;
  }
}
.content__box__form .textbox__element {
  border: none;
  box-shadow: none;
  background: transparent;
  color: white;
  border: 2px solid #ccc;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #fff, 0 0 82px #fff, 0 0 92px #fff, 0 0 102px #fff, 0 0 151px #fff;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.content__box__form .textbox__element:focus {
  outline: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 1px #fff, 0 0 4px #fff, 0 0 15px #fff, 0 0 38px #0fa;
}
@-webkit-keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.content__box__form .option {
  width: 100%;
  color: white;
  margin-top: 0.5vw;
}
@media screen and (max-width: 800px) {
  .content__box__form .option {
    margin-top: 2.5vw;
  }
}
.content__box__form .option__header {
  display: flex;
  text-align: left;
  align-items: center;
  width: 100%;
}
.content__box__form .option__header__icon {
  position: relative;
  width: 24.96px;
  height: 24.96px;
  margin-right: 1vw;
}
@media screen and (max-width: 800px) {
  .content__box__form .option__header__icon {
    width: 18px;
    height: 18px;
    margin-right: 2vw;
  }
}
.content__box__form .option__header__icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3.84px;
  top: 43%;
  margin: auto;
  background: white;
  box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 800px) {
  .content__box__form .option__header__icon::before {
    top: 38%;
  }
}
.content__box__form .option__header__icon::after {
  content: "";
  position: absolute;
  width: 3.84px;
  height: 100%;
  top: 0;
  left: 43%;
  margin: auto;
  background: white;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa;
}
@media screen and (max-width: 800px) {
  .content__box__form .option__header__icon::after {
    left: 41%;
  }
}
.content__box__form .option__header__title {
  font-size: 1.5rem;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa;
  transition: 0.3s all ease-in-out;
}
.content__box__form .option__header.active .option__header__icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.content__box__form .option__header:hover .option__header__icon::before, .content__box__form .option__header:hover .option__header__icon::after {
  background: #0fa;
}
.content__box__form .option__header:hover .option__header__title {
  color: #0fa;
}
.content__box__form .option__content {
  display: none;
  flex-direction: column;
  list-style: none;
}
@media screen and (max-width: 800px) {
  .content__box__form .option__content {
    padding-left: 26px;
  }
}
.content__box__form .option__content.active {
  display: flex;
}
.content__box__form .option__content__element {
  display: flex;
  align-items: center;
  height: 1.5rem;
  margin-bottom: 20px;
}
.content__box__form .option__content .checkbox {
  display: none;
}
.content__box__form .option__content .checkbox_label {
  position: relative;
  padding-left: 2rem;
  font-size: 1.2rem;
  color: #afeeee;
  text-shadow: 0 0 7px #afeeee, 0 0 10px #afeeee, 0 0 21px #afeeee, 0 0 42px white;
}
.content__box__form .option__content .checkbox_label::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 0.1rem;
  left: 0;
  border: #afeeee solid 2px;
  text-shadow: 0 0 7px #afeeee, 0 0 10px #afeeee, 0 0 21px #afeeee, 0 0 42px white;
  transition: all 0.2s;
}
.content__box__form .option__content .checkbox:checked + .checkbox_label::before {
  background: #afeeee;
}
.content__box__form .option__content .category_group {
  display: flex;
}
.content__box__form .option__content .category_group .category_label {
  font-size: 1.2rem;
  margin-right: 10px;
  width: 120px;
  text-align: left;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa;
}
@media screen and (max-width: 800px) {
  .content__box__form .option__content .category_group .category_label {
    width: 70px;
  }
}
.content__box__form .option__content .category_group input {
  width: 90px;
  margin-right: 10px;
  background: transparent;
  border: white solid 2px;
  transition: all 0.3s ease-in-out;
  color: white;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff;
}
.content__box__form .option__content .category_group input:focus {
  box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa;
  outline: none;
}
.content__box__form .log {
  width: 100%;
  color: white;
  margin-top: 0.5vw;
}
@media screen and (max-width: 800px) {
  .content__box__form .log {
    margin-top: 2.5vw;
  }
}
.content__box__form .log__header {
  display: flex;
  text-align: left;
  align-items: center;
  width: 100%;
}
.content__box__form .log__header__icon {
  position: relative;
  width: 24.96px;
  height: 24.96px;
  margin-right: 1vw;
}
@media screen and (max-width: 800px) {
  .content__box__form .log__header__icon {
    width: 18px;
    height: 18px;
    margin-right: 2vw;
  }
}
.content__box__form .log__header__icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3.84px;
  top: 43%;
  margin: auto;
  background: white;
  box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa;
  transition: 0.3s all;
}
@media screen and (max-width: 800px) {
  .content__box__form .log__header__icon::before {
    top: 38%;
  }
}
.content__box__form .log__header__title {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa;
  transition: 0.3s all;
}
.content__box__form .log__header:hover .log__header__icon::before {
  background: #0fa;
}
.content__box__form .log__header:hover .log__header__title {
  color: #0fa;
}
.content__box__form .btn_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .content__box__form .btn_wrapper {
    flex-direction: column;
  }
}
.content__box__form .button {
  margin-top: 0.8vw;
  display: inline-block;
  font-size: 1.5rem; /* 文字サイズ */
  text-align: center; /* 文字位置   */
  cursor: pointer; /* カーソル   */
  padding: 12px 12px; /* 余白       */
  background: transparent; /* 背景色     */
  color: #ffffff; /* 文字色     */
  line-height: 1em; /* 1行の高さ  */
  transition: 0.3s; /* なめらか変化 */
  border: 2px solid #ffffff; /* 枠の指定 */
}
.content__box__form .button:nth-child(n+2) {
  margin-left: 25px;
}
@media screen and (max-width: 800px) {
  .content__box__form .button:nth-child(n+2) {
    margin-left: 0;
    margin-top: 25px;
  }
}
.content__box__form .button:hover {
  box-shadow: 0 0 1px #fff, 0 0 4px #fff, 0 0 15px #fff, 0 0 38px #fff, 0 0 76px #fff;
  /* カーソル時の影消去 */
  color: black; /* 背景色     */
  background: #ffffff; /* 文字色     */
}
.content__box__form #spec_btn {
  display: none;
  color: #afeeee;
  border-color: #afeeee;
}
.content__box__form #spec_btn.active {
  display: inline-block;
}
.content__box__form #spec_btn:hover {
  color: black;
  background: #afeeee;
  box-shadow: 0 0 1px #afeeee, 0 0 4px #afeeee, 0 0 15px #afeeee, 0 0 38px #afeeee, 0 0 76px #afeeee;
}

.search {
  display: none;
  width: 1152px;
  margin: auto;
  overflow-x: hidden;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1152px) {
  .search {
    width: 90%;
  }
}
.search__result {
  margin: 20px 0 10px;
  color: white;
  font-size: var(--h2);
  display: flex;
  flex-direction: column;
}
.search__result__type span {
  display: none;
}
.search__result__type .typingElement .fromWord {
  display: inline;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa, 0 0 82px #0fa, 0 0 92px #0fa, 0 0 102px #0fa, 0 0 151px #0fa;
}
.search__result__type .typingElement .toWord {
  display: none;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa, 0 0 82px #0fa;
}
.search__result__type .typingElement.active .fromWord {
  display: none;
}
.search__result__type .typingElement.active .toWord {
  display: inline;
}
.search__border {
  position: relative;
  font-size: 18px;
  width: 100%;
  height: 2px;
  margin: 0 0 10px;
  background: #0fa;
  z-index: 0;
}
.search__border:before {
  content: "";
  position: absolute;
  width: 3%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background: white;
  -webkit-animation: border_anim 2s linear infinite;
          animation: border_anim 2s linear infinite;
  box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #fff, 0 0 82px #fff, 0 0 92px #fff, 0 0 102px #fff, 0 0 151px #fff;
  z-index: 1;
}
@-webkit-keyframes border_anim {
  0% {
    left: -3%;
  }
  100% {
    left: 100%;
  }
}
@keyframes border_anim {
  0% {
    left: -3%;
  }
  100% {
    left: 100%;
  }
}
.search__content {
  list-style: none;
  margin: 30px 0;
  padding-left: 30px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .search__content {
    padding-left: 10px;
  }
}
.search__content__element {
  width: 100%;
}
.search__content__element__inner {
  display: block;
  width: 100%;
  text-decoration: none;
}
.search__content__element__inner .search_header {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.search__content__element__inner .search_header__title {
  flex: 1;
}
.search__content__element__inner .search_header__title .title {
  color: white;
  font-size: var(--h3);
  margin-bottom: 10px;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
}
.search__content__element__inner .search_header__title .category {
  color: white;
  font-size: 1.2rem;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
}
.search__content__element__inner .search_header__icon {
  position: relative;
  width: 28px;
  height: 28px;
  margin-right: 1vw;
}
@media screen and (max-width: 800px) {
  .search__content__element__inner .search_header__icon {
    width: 24px;
    height: 24px;
  }
}
.search__content__element__inner .search_header__icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3.84px;
  top: 43%;
  margin: auto;
  background: white;
  box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa;
}
.search__content__element__inner .search_header__icon::after {
  content: "";
  position: absolute;
  width: 3.84px;
  height: 100%;
  top: 0;
  left: 43%;
  margin: auto;
  background: white;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa;
}
.search__content__element__inner .search_header.active .search_header__icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search__content__element__inner .search_header:hover {
  background: rgba(255, 255, 255, 0.3);
}
.search__content__element__inner .desc {
  display: none;
  color: white;
  font-size: 1.2rem;
  line-height: 2rem;
  padding-bottom: 20px;
  text-shadow: 0 0 4px #fff;
}
.search__content__element__inner .desc__copy {
  display: inline;
  position: relative;
}
.search__content__element__inner .desc__copy svg {
  display: inline;
  width: 30px;
  fill: #0fa;
  transition: all 0.2s ease-in-out;
}
.search__content__element__inner .desc__copy:hover svg {
  fill: white;
}
.search__content__element__inner .desc b {
  color: #0fa;
  text-shadow: 0 0 7px #2fc, 0 0 10px rgba(255, 255, 255, 0.5);
}
.search__content__element.--research .search_header__title .title, .search__content__element.--research .search_header__title .category {
  color: #FEECD2;
  text-shadow: 0 0 7px #FEECD2, 0 0 10px #FEECD2;
}
.search__content__element.--research .search_header__icon::before, .search__content__element.--research .search_header__icon::after {
  box-shadow: 0 0 7px #FEECD2, 0 0 10px #FEECD2, 0 0 21px #FEECD2, 0 0 42px #fff;
}
.search__content__element.--research .desc {
  color: #FEECD2;
  text-shadow: 0 0 4px #FEECD2;
}
.search__content__element.--taur .search_header__title .title, .search__content__element.--taur .search_header__title .category {
  color: #ff99d4;
  text-shadow: 0 0 7px #ff99d4, 0 0 10px #ff99d4;
}
.search__content__element.--taur .search_header__icon::before, .search__content__element.--taur .search_header__icon::after {
  box-shadow: 0 0 7px #ff99d4, 0 0 10px #ff99d4, 0 0 21px #ff99d4, 0 0 42px #fff;
}
.search__content__element.--taur .desc {
  color: #ff99d4;
  text-shadow: 0 0 4px #ff99d4;
}
.search__content__element.--emigration .search_header__title .title, .search__content__element.--emigration .search_header__title .category {
  color: #aa8bf2;
  text-shadow: 0 0 7px #aa8bf2, 0 0 10px #aa8bf2;
}
.search__content__element.--emigration .search_header__icon::before, .search__content__element.--emigration .search_header__icon::after {
  box-shadow: 0 0 7px #aa8bf2, 0 0 10px #aa8bf2, 0 0 21px #aa8bf2, 0 0 42px #fff;
}
.search__content__element.--emigration .desc {
  color: #aa8bf2;
  text-shadow: 0 0 4px #aa8bf2;
}
.search__content__element.--emphasis .search_header__title .title, .search__content__element.--emphasis .search_header__title .category {
  color: #ff5555;
  text-shadow: 0 0 7px #ff5555, 0 0 10px #ff5555;
}
.search__content__element.--emphasis .search_header__icon::before, .search__content__element.--emphasis .search_header__icon::after {
  box-shadow: 0 0 7px #ff5555, 0 0 10px #ff5555, 0 0 21px #ff5555, 0 0 42px #fff;
}
.search__content__element.--emphasis .desc {
  color: #ff5555;
  text-shadow: 0 0 4px #ff5555;
}
.search__content__element.--specialized .search_header__title .title, .search__content__element.--specialized .search_header__title .category {
  color: #afeeee;
  text-shadow: 0 0 7px #afeeee, 0 0 10px #afeeee;
}
.search__content__element.--specialized .search_header__icon::before, .search__content__element.--specialized .search_header__icon::after {
  box-shadow: 0 0 7px #afeeee, 0 0 10px #afeeee, 0 0 21px #afeeee, 0 0 42px #fff;
}
.search__content__element.--specialized .desc {
  color: #afeeee;
  text-shadow: 0 0 4px #afeeee;
}
.search__content__element.--aniita .search_header__title .title, .search__content__element.--aniita .search_header__title .category {
  color: #5f5ff0;
  text-shadow: 0 0 7px #5f5ff0, 0 0 10px #5f5ff0;
}
.search__content__element.--aniita .search_header__icon::before, .search__content__element.--aniita .search_header__icon::after {
  box-shadow: 0 0 7px #5f5ff0, 0 0 10px #5f5ff0, 0 0 21px #5f5ff0, 0 0 42px #fff;
}
.search__content__element.--aniita .desc {
  color: #5f5ff0;
  text-shadow: 0 0 4px #5f5ff0;
}
.search__content__element:nth-child(n+2) {
  border-top: white solid 2px;
  padding-top: 15px;
}
.search__content__log {
  width: 100%;
  display: flex;
}
.search__content__log:nth-child(n+2) {
  border-top: white solid 2px;
  padding-top: 15px;
}
.search__content__log__main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.search__content__log__main__date {
  color: white;
  font-size: var(--h4);
  margin-bottom: 10px;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
}
.search__content__log__main__text {
  color: white;
  font-size: var(--h3);
  margin-bottom: 10px;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
}
.search__content__log__sub {
  display: flex;
}
.search__content__log__sub__element {
  display: flex;
  flex-direction: column;
  margin-left: 0.3rem;
  justify-content: flex-end;
}
.search__content__log__sub__element__title {
  color: white;
  font-size: var(--h4);
  margin-bottom: 10px;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
}
.search__content__log__sub__element__text {
  flex: 1;
  color: white;
  font-size: var(--h4);
  margin-bottom: 10px;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
}
.search__content__log__sub__element__research {
  color: white;
  font-size: var(--h4);
  margin-bottom: 10px;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
  margin-bottom: 1rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.search__content__log__sub__element svg {
  display: inline;
  position: relative;
  width: 30px;
  fill: white;
  transition: all 0.2s ease-in-out;
  margin-bottom: 10px;
  margin-left: 1.3rem;
  margin-right: 1.3rem;
}
.search__content__log__sub__element:hover .search__content__log__sub__element__research {
  color: #0fa;
}
.search__content__log__sub__element:hover svg {
  fill: #0fa;
}
.search__pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.search__pager__number {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.search__pager__number > *:nth-child(n+2) {
  margin-left: 10px;
}
@media screen and (max-width: 800px) {
  .search__pager__number > *:nth-child(n+2) {
    margin-left: 15px;
  }
}
.search__pager__btn {
  margin: 20px;
}
.search__pager__link {
  color: white;
  font-size: 1.2rem;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .search__pager__link {
    font-size: 2rem;
  }
}
.search__pager__link:hover {
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #fff, 0 0 82px #fff;
}
.search__pager__link.active {
  color: #0fa;
}

#footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  background: black;
  justify-content: flex-end;
}
#footer .copy {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  color: white;
}
#footer .copy .normal {
  opacity: 0.5;
}
#footer .copy a {
  text-decoration: none;
  color: white;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
#footer .copy a:hover {
  opacity: 1;
}
#footer .what {
  z-index: 1;
}
#footer .what a {
  color: white;
  text-decoration: none;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
#footer .what a:hover {
  opacity: 1;
}

#article {
  position: relative;
  width: 100vw;
  z-index: 5;
}
#article .container {
  position: relative;
  width: 1152px;
  margin: 120px auto;
  padding: 30px 0;
}
@media screen and (max-width: 1152px) {
  #article .container {
    width: 90%;
    margin-top: 20px;
    padding-top: 10px;
  }
}
#article .container * {
  color: white;
}
#article .container header {
  width: 100%;
  overflow-x: hidden;
  margin-bottom: 20px;
}
#article .container header h2 {
  color: white;
  font-size: var(--h2);
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa, 0 0 82px #0fa;
}
#article .container header .border {
  position: relative;
  font-size: 18px;
  width: 100%;
  height: 2px;
  margin: 0 0 10px;
  background: #0fa;
  z-index: 0;
}
#article .container header .border:before {
  content: "";
  position: absolute;
  width: 3%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background: white;
  -webkit-animation: border_anim 2s linear infinite;
          animation: border_anim 2s linear infinite;
  box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #fff, 0 0 82px #fff, 0 0 92px #fff, 0 0 102px #fff, 0 0 151px #fff;
  z-index: 1;
}
#article .container main * {
  font-size: 1.2rem;
  line-height: 2rem;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
}
#article .container main h3 {
  font-size: var(--h2);
}
#article .container main h4 {
  font-size: var(--h3);
}
#article .container footer {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
#article .container footer a {
  font-size: var(--h3);
  text-decoration: none;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
  transition: all 0.3s ease-in-out;
}
#article .container footer a:hover {
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa, 0 0 82px #0fa;
}

#error {
  position: relative;
  width: 100vw;
  z-index: 5;
}
#error .container {
  position: relative;
  width: 1152px;
  margin: 120px auto;
  padding: 30px 0;
}
@media screen and (max-width: 1152px) {
  #error .container {
    width: 90%;
    margin-top: 20px;
    padding-top: 10px;
  }
}
#error .container * {
  color: white;
}
#error .container main {
  font-size: 1.2rem;
  line-height: 2rem;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
  font-size: var(--h2);
}
#error .container footer {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
#error .container footer a {
  font-size: var(--h3);
  text-decoration: none;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff;
  transition: all 0.3s ease-in-out;
}
#error .container footer a:hover {
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa, 0 0 82px #0fa;
}/*# sourceMappingURL=main.css.map */