@charset "UTF-8";
/* CSS Document */

body {
  background: #000000;
  color: #FFFFFF;
  overflow-wrap: break-word;
}

.background {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;

}

.header,
footer {
  display: none;
}

.support__header,
.support__footer {
  display: block;
}

.support__header {
  width: 90%;
  max-width: 1440px;
  padding: 30px 0;
  margin: 0 auto;
}

.support__header h1 {
  width: 100px;
}

.support__footer {
  width: 90%;
  max-width: 1440px;
  border-top: solid 1px #FFFFFF;
  padding: 20px 0 50px;
  background: #000000;
  margin: 0 auto;
  text-align: center;
  font-family: var(--en-font);
}


main {
  position: relative;
  width: 90%;
  max-width: 1440px;
  padding: 100px 0 300px;
  margin: 0 auto;
  display: flex;
}

.main__contents {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.main__contents__title {
  width: 300px;
  margin-bottom: 75px;
}

.main__contents__subtitle {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
}

.main__contents__text {
  font-weight: 400;
  padding-bottom: 50px;
  border-bottom: solid 1px #505050;
  margin-bottom: 30px;
}

.main__contents__h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.main__contents__ul__li {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding-bottom: 30px;
}

.main__contents__ul__li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 25%;
  width: 1px;
  height: 100%;
  background: #FFFFFF;
}

.main__contents__ul__li:last-child:after {
  content: none;
}

.main__contents__ul__li:last-child {
  padding-bottom: 0;
}

.main__contents__ul__li span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
}