@charset "utf-8";

.header,
.eventBnr,
.sp-fixedAction {
  display: none;
}

.gogyo_box {
  background-color: #f5f3ef;
  padding-block: 70px 100px;
}

input[type='checkbox'] {
  border: 1px solid #aaaaaa;
  vertical-align: -4px;
  -webkit-appearance: none;
  position: relative;
  margin-right: 5px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  width: 26px;
  aspect-ratio: 1;
  /*Other Browser*/
  background: #e2e2e2;
  /*For Old WebKit*/
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #e2e2e2));
  /*For Modern Browser*/
  background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%);
}

input[type='checkbox']:checked {
  /*Other Browser*/
  background: #99cc00;
  /*For Old WebKit*/
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #99cc00), color-stop(1, #87b400));
  /*For Modern Browser*/
  background: linear-gradient(to bottom, #99cc00 0%, #87b400 100%);
  border: 1px solid #336600;
}

input[type='checkbox']:checked:before {
  position: absolute;
  left: 1px;
  top: 16px;
  display: block;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  content: '';
  width: 10px;
  height: 4px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: right center;
}

input[type='checkbox']:checked:after {
  display: block;
  position: absolute;
  left: 9px;
  top: 16px;
  content: '';
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  width: 16px;
  height: 4px;
  background: #ffffff;
  -webkit-transform: rotate(-53deg);
  -webkit-transform-origin: left center;
}

.gogyo_box {
  width: 100%;
}
.gogyo_form__title {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  margin-bottom: 40px;
  padding: 0;
}
.gogyo_form__title img {
  width: 70px;
}
.gogyo_form__title .text {
  font-size: 50px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 1;
}
.gogyo_form--jupiter .gogyo_form__title .text {
  color: #79894f;
}
.gogyo_form--mars .gogyo_form__title .text {
  color: #c67a4f;
}
.gogyo_form--saturn .gogyo_form__title .text {
  color: #7e644d;
}
.gogyo_form--venus .gogyo_form__title .text {
  color: #ba8d4c;
}
.gogyo_form--mercury .gogyo_form__title .text {
  color: #5aa4ae;
}

.gogyo_form_wrap {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.gogyo_form {
  width: 100%;
  text-align: left;
  margin-bottom: 100px;
}
/* .gogyo_form img {
  padding-left: 30px;
} */

.gogyo_list {
  font-size: 150%;
  list-style: none;
  margin: 0;
  padding: 0 30px;
}
.gogyo_list li {
  border-bottom: 1px dashed #999999;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.gogyo_list li label {
  display: block;
  width: 100%;
}

.resultBtn {
  display: block;
  max-width: 480px;
  margin-top: 40px;
  margin-inline: auto;
}

.result,
.check {
  display: block;
  width: 100%;
  opacity: 0;
  transition: .4s;
  visibility: hidden;
  position: absolute;
  z-index: 0;
}

.result.is-show,
.check.is-show {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
}

.checkBtn {
  width: calc(480 / 760 * 100%);
  max-width: 480px;
  aspect-ratio: 480 / 120;
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  input[type='checkbox'] {
    width: 18px;
    vertical-align: -3px;
  }
  input[type='checkbox']:checked:before {
    left: -2px;
    top: 12px;
  }
  input[type='checkbox']:checked:after {
    left: 6px;
    top: 12px;
  }

  .gogyo_form {
    margin-bottom: 50px;
  }
  .gogyo_list {
    font-size: inherit;
  }

  .gogyo_form__title {
    column-gap: 12px;
    margin-bottom: 25px;
  }
  .gogyo_form__title img {
    width: 35px;
  }
  .gogyo_form__title .text {
    font-size: 25px;
  }

  .resultBtn {
    max-width: 240px;
    margin-top: 0;
  }
}