body {
  margin: 0;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
}

p {
  margin: 0;
}

/* header style */
.header {
  background-color: #0E1123;
  padding: 0 85px;
}

.title-head {
  position: relative;
}
.title-head img {
  width: 100%;
}
.title-head img.image-sp {
  display: none;
}
.title-head-text {
  color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 45px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
.title-head-text p {
  width: 100%;
  max-width: 976px;
  margin: auto;
}

.title-head-text p span {
  padding: 0 20px;
}

/* body style */
.body {
  max-width: 976px;
  width: 100%;
  margin: 64px auto;
}

.body .container {
  margin: 0 20px;
}

.body .container .terms-of-use {
  padding-bottom: 32px;
}

.body .container .line {
  width: 160px;
  background-color: #000;
  height: 1px;
  margin: 24px auto;
}

.body .container .container_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
}

.body .container .container_main .row-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #1D1B20;
  font-weight: 500;
  letter-spacing: 0.15px;
  line-height: 1.5;
}

.body .container .container_main .row-content .title {
  font-size: 22px;
  line-height: 28px;
}

.body .container .container_main .row-content .content {
  font-size: 16px;
  line-height: 24px;
}

.body .container .container_main .row-content .content .list {
  padding: 0 0 0 15px;
}

/* footer style */
.footer_sub {
  background-color: #2F313C;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 20px 68px;
}

.footer_sub_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer_sub .footer_sub_text {
  width: max-content;
  display: flex;
  gap: 20px;
}
.footer_sub .footer_sub_text a,
.footer_sub .footer_sub_text span a {
  text-decoration: none !important;
  color: #fff !important;
}
.footer_sub .footer_sub_text span {
  border-right: 1px solid;
  padding-right: 20px;
}

.footer_sub .footer_sub_text span:last-child {
  border-right: unset;
}

.footer {
  background-color: #000;
  text-align: center;
  color: #FEF7FF;
  padding: 8px 0;
}

@media (max-width: 976px) {
  .footer_sub {
    font-size: 12px;
    padding: 20px 0;
  }

  .footer_sub .footer_sub_text {
    gap: 13px !important;
    width: fit-content;
  }
  .footer_sub_content {
    margin: auto;
    width: fit-content;
  }
  .footer_sub .footer_sub_text span {
    padding-right: 13px !important;
  }
  
  .footer {
    font-size: 8.1px;
  }
}

@media (max-width: 600px) {
  .image-pc {
    display: none;
  }
  .image-sp {
    display: block !important;
  }

  .title-head-text p span{
    font-size: 28px;
  }
}