.header_body {
  justify-content: center;
}

.nav_pc, .header_sp_nav, #hamburger, .footer_sns, .footer_pc_nav {
  display: none !important;
}

.sconsent_header {
  width: 96%;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 32px;
}

.sconsent_ttl {
  font-size: 28px;
  color: #00827E;
}

.sconsent_intro {
  margin-top: 32px;

  & p {
    font-size: 16px;
    line-height: 1.5;

    & + p {
      margin-top: 28px;
    } 

    & a {
      display: block;
    }
  }
}

.sconsent_main {
  width: 96%;
  max-width: 700px;
  margin: 64px auto;

  & .caution {
    margin-top: 8px;
    color: #FF6A00;
  }
}

.inputwrap {
  display: flex;
  margin: 1rem 0 0;

  & .contact-text {
    margin: 0;
  }
}

.contactForm .inputwrap label {
  margin: .5rem .5rem .3rem 0;

}

.checkwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 40px;

  & .checkintro {
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
    background-color: #F4F4F4;
    border-radius: 16px;
    padding: 8px;
  }
  
  & .label {
    margin: 0;
    width: 100%;
  }

  & .checkintro + .inputwrap {
    margin-top: 0;
  }

  & .checktext {
    display: inline-block;
    margin-left: 8px;
    line-height: 1.5;
  }

  & input[type=checkbox] {
    appearance: none;
    position: relative;
    min-width: 20px;
    height: 20px;
    border: 1px solid #00827E;
    border-radius: 2px;
    cursor: pointer;

    &:checked {
      background-color: #00827E;
      min-width: 20px;

      &::after {
        content: "";
        position: absolute;
        top: 5px;
        left: 3px;
        width: 12px;
        height: 6px;
        border-bottom: 2px solid #ffffff;
        border-left: 2px solid #ffffff;
        transform: rotate(-45deg);
      }
    }
  } 
}

input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
}

.sconsent_btn {
  margin-top: 40px;
  padding: 5px 20px;
  font-size: 20px;
  border: #00827E 1px solid;
  color: #00827E;
  border-radius: 8px;
  background-color: #F4F4F4;
}