@charset "utf-8";

.section {
  width: 800px;
  padding: 20px;
}
.sectionItems {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:column;
  -ms-flex-wrap:wrap;
  /* flex-wrap:wrap; */
  width: 800px;
}

.sectionItems .title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}
.sectionItems .txt {
  overflow: auto;
  margin-bottom: 8px;
}

.sectionItems .txt a {
  color: #000;
  text-decoration: underline;
}

.sepDot {
  border-top: dashed 1px #ccc;
  padding-top: 8px;
}

#consentAction {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:horizontal;
  -webkit-box-direction:normal;
  -ms-flex-direction:row;
  flex-direction:row;
  -ms-flex-wrap:nowrap;
  flex-wrap:nowrap;
  align-items: center;
  justify-content: center;
}

#consentBtn, #notConsentBtn {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  max-width: 150px;
  white-space: nowrap;
  border: solid 1px #ccc;
  border-radius: 34px;
  margin-left: 24px;
  padding: 8px 24px;
  cursor: pointer;
}


#consentBtn {
  background-color: #fff;
  color: #333;
}

#notConsentBtn {
  background-color: #fff;
  color: #333;
}

@media only screen and (min-width:641px) and (max-width:999px) {
  .section {width: 80%;}
  .sectionItems {margin: 0 auto;}
}

@media only screen and (max-width: 640px) {
  #consentBtn, #notConsentBtn {
    font-size: 16px;
  }
  .section {
    width: 80%;
    margin: 0 auto;
    padding: 4vw;
  }
  .sectionItems {
    width: 100%;
    margin: 0 auto;
  }
  .sectionItems .title {
    font-size: 5vw;
    margin-bottom: 4vw;
  }
  .sectionItems .txt {
    overflow: auto;
    margin-bottom: 4vw;
    font-size: 4.2vw;
  }
  .sepDot {padding-top: 1.5vw;}
}

@media only screen and (max-width: 320px) {
  .sectionItems .txt {
    word-break: break-all;
  }
}

.backBtn {
  position: relative;
  width: auto;
  height: 30;
  text-align: center;
  line-height: 30px;
  margin-top: 20px;
  margin-left: 25px;
  padding-left: 5px;
  padding-right: 15px;
  color: #fff;
  background-color: #555;
  border-radius: 4px;
}

.backBtn img {
  width: 15px;
  vertical-align: middle;
  margin: 0 5px;
}
