.contents .Tittle {
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3;
  border-bottom: 1px solid #dedede;
}
.contents p {
  margin-bottom: 1em;
  line-height: 1.7;
}

.popupCheck {
  display: none;
}

label {
  cursor: pointer;
}

.button {
  text-align: center;
}
.button label {
  display: inline-block;
  padding: 0.8em 4.0em;
  margin: 2.0em;
  color: #FFFFFF;
  font-size: 20px;
  background-color: #FF1493;
  text-decoration: none;
  border-radius: 5px;
  -webkit-transition: 0.3s cubic-bezier(1, 0, 0, 1);
  transition: 0.3s cubic-bezier(1, 0, 0, 1);
  -webkit-transition-property: background-color, -webkit-box-shadow;
  transition-property: background-color, -webkit-box-shadow;
  transition-property: background-color, box-shadow;
  transition-property: background-color, box-shadow, -webkit-box-shadow;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
}
.button label:hover {
  color: #FFFFFF;
  background-color: #00FFFF;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
}

.popupWrap, .popupBg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 10;
}

.popupWrap {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s cubic-bezier(1, 0, 0, 1);
  transition: 0.3s cubic-bezier(1, 0, 0, 1);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  will-change: opacity;
}

.popupBg {
  cursor: pointer;
  opacity: 0.7;
  background-color: #000;
  z-index: 2;
}
.popupBg label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.popupCon {
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  width: 92%;
  max-width: 640px;
  height: 86%;
  margin: auto;
  z-index: 3;
}

.popupInner {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  height: 100%;
  padding: 0 1.5em 1.5em;
  cursor: default;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.popupButton_Close {
  position: absolute;
  top: 0;
  right: 0;
}
.popupButton_Close label {
  display: inline-block;
  padding: 0.5em;
  color: #333;
  text-decoration: none;
  font-size: 2em;
}

.popupCheck:not(:checked) ~ .wrapper > *:not(.popupWrap) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.popupCheck:not(:checked) ~ .wrapper .popupWrap {
  opacity: 0;
  visibility: hidden;
}

.popupCheck:checked ~ .wrapper > *:not(.popupWrap) {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}



#popup01:checked ~ .wrapper #popup01Con {
  opacity: 1;
  visibility: visible;
}



.popupTittle {
  padding: 2em 0.5em 1.5em;
  font-size: 2em;
  line-height: 1.3;
  text-align: center;
  color:#000;
}

.popupText .popupCover {
  margin: 0 -1.5em 1em;
}
.popupText p {
  margin-bottom: 1em;
  line-height: 1.7;
  color:#000;
}
