@keyframes checking-move {
  0% {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

.checkquestion-inner {
  display: flex;
}

.checkquestion-item {
  min-width: 100vw;
}

.checkquestion-item.is-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.checkquestion-item-num {
  font-family: AvenirLTPro-Black;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.13em;
}

.checkquestion-item-num span {
  display: inline-block;
  border-bottom: 2px solid #fff;
}

.checkquestion-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.7;
  color: #fff;
  letter-spacing: 0.1em;
}

.checkquestion-item-title span {
  display: block;
  width: 100%;
}

.checkquestion-item-btnlist {
  margin: 0 auto;
}

.checkquestion-item-btnlist > li {
  box-sizing: border-box;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.13em;
}

.checkquestion-item-btnlist > li label {
  position: relative;
  display: block;
}

.checkquestion-item-btnlist > li input {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.checkquestion-item-btnlist > li span {
  z-index: 1;
  display: block;
  width: 100%;
  padding: 1.15em 2.9em 0.85em;
  cursor: pointer;
  background: #f3c11d;
  border-radius: 100em;
  transition: background-color 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-property: color, background-color;
}

.checkquestion-item-btnlist > li span:hover {
  color: #0c8e86;
  background-color: #fff;
}

.checkquestion-item-btnlist > li input:checked + span {
  color: #0c8e86;
  background: url(../images/common/icon_check.png) no-repeat;
  background-color: #fff;
}

.checkquestion-loading {
  justify-content: center;
}

.checkquestion-loading-title {
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-align: center;
  font-weight: bold;
  font-size: 5rem;
  color: #fff;
}

.checkquestion-loading-status {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  background: #e8e8e8;
  border: solid #fff;
  border-radius: 100em;
}

.checkquestion-loading-bar {
  position: absolute;
  top: -1%;
  right: 0;
  display: block;
  width: 100%;
  height: 102%;
  overflow: hidden;
  transition: transform 1s ease-out;
  transition-delay: 0.1s;
  transform: translateX(-100%);
}

.is-checking .checkquestion-loading-bar {
  transform: translateX(0);
}

.is-checking .checkquestion-loading-bar span {
  background-position: 0 0;
}

.checkquestion-loading-bar span {
  position: relative;
  display: block;
  width: 1000%;
  height: 100%;
  background-repeat: repeat;
  background-position: -1000px 0;
  transition: background-position 15s linear;
}

.checkquestion-loading-photo {
  margin: 0 auto;
  overflow: hidden;
  line-height: 1;
}

.checkquestion-loading-photo span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  margin-top: -0.5px;
  overflow: hidden;
  vertical-align: top;
}

.checkquestion-loading-photo span img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0);
  animation: checking-move 1.2s steps(3) infinite alternate;
}

.checkquestion-loading-txt {
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 3rem;
}

.checkquestion-pager {
  display: flex;
  align-items: center;
  min-width: 100vw;
  line-height: 1;
}

.checkquestion-pager.is-disabled {
  pointer-events: none;
  opacity: 0;
}

.checkquestion-pager:after {
  display: block;
  content: "";
}

.checkquestion-pager-back {
  cursor: pointer;
}

.checkquestion-pager-back.is-disabled {
  pointer-events: none;
  opacity: 0;
}

.checkquestion-pager-back:before {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-top: -0.1em;
  margin-right: 0.5em;
  vertical-align: middle;
  content: "";
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
}

.checkquestion-pager-dots > li {
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  border: 2px solid #0c8e86;
  border-radius: 50%;
}

.checkquestion-pager-dots > li.is-active {
  background-color: #0c8e86;
  border-color: #fff;
  transform: scale(1.2);
  transform-origin: 50% 50%;
}

.checkquestion-pager-dots > li:last-child {
  display: none;
}

.checkresult {
  opacity: 0;
}

.checkresult.is-checked {
  opacity: 1;
  transition: opacity 1s ease;
}

.checkresult-ttl {
  line-height: 1;
  text-align: center;
}

.checkresult-ttl small,
.checkresult-ttl strong {
  display: block;
}

.checkresult-ttl strong {
  letter-spacing: 0.3em;
}

.checkresult-ttl small {
  margin-top: 0.5em;
  font-family: AvenirLTPro-Black;
  color: #0c8e86;
}

.checkresult-item {
  display: flex;
  overflow: hidden;
}

.checkresult-item-inner {
  text-align: center;
}

.checkresult-item-ttl strong {
  color: #0c8e86;
  letter-spacing: 0.15em;
}

.checkresult-item-ttl-ed {
  font-family: AvenirLTPro-Black;
  letter-spacing: 0.2em;
}

.checkresult-item-cap {
  line-height: 1.3;
  letter-spacing: 0.13em;
}

.checkresult-item-cap span {
  position: relative;
  display: inline-block;
}

.checkresult-item-cap span:after {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.checkresult-item-note {
  color: #9d9d9d;
}

.checkresult-item-note span {
  display: inline-block;
}

.checkresult-item-catch {
  font-family: AvenirLTPro-Black;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.1em;
}

.checkresult-item-catch span {
  display: inline-block;
  font-family: inherit;
  background: #f3c11d;
}

.checkresult-item-lead {
  letter-spacing: 0.06em;
}

.checkresult-item-lead strong {
  color: #0c8e86;
}

.checkresult-item-lead em {
  display: inline-block;
  padding: 0.25em 0.15em 0.05em;
  margin-top: -0.1em;
  margin-right: 0.2em;
  font-style: normal;
  line-height: 1.2;
  color: #fff;
  vertical-align: middle;
  background: #0c8e86;
}

.checkresult-item-lead-ed {
  font-family: AvenirLTPro-Black;
}

.checkconsult-inner {
  position: relative;
}

.checkconsult-medicine {
  pointer-events: none;
}

.checkconsult-ttl {
  font-family: AvenirLTPro-Black;
  text-align: center;
}

.checkconsult-ttl span {
  font-family: inherit;
}

.checkconsult-txt {
  text-align: center;
  letter-spacing: 0.08em;
}

.checkconsult-txt strong {
  color: #0c8e86;
}

.checkconsult-txt span {
  display: inline-block;
}

@media screen and (min-width: 834px) {
  .checkquestion {
    padding: 6.4rem 0;
  }

  .checkquestion-item-inner {
    max-width: 124.8rem;
    margin: 0 auto;
  }

  .checkquestion-item-num {
    font-size: 1.6rem;
  }

  .checkquestion-item-title {
    min-height: 6em;
    padding: 2.5rem 0;
    font-size: 3.2rem;
  }

  .checkquestion-item-btnlist {
    display: flex;
    flex-wrap: wrap;
    max-width: 76rem;
    padding-bottom: 14rem;
    margin-top: -2rem;
    font-size: 2rem;
  }

  .checkquestion-item-btnlist > li {
    width: 50%;
    padding: 0 1.6rem;
    margin-top: 2rem;
  }

  .checkquestion-item-btnlist > li input:checked + span {
    background-position: 3rem;
    background-size: 1.9rem auto;
  }

  .checkquestion-loading-status {
    width: 56.4rem;
    height: 2rem;
    margin-top: 5.2rem;
    border-width: 0.4rem;
  }

  .checkquestion-loading-bar span {
    background-image: repeating-linear-gradient(
      135deg,
      #f3c11d,
      #f3c11d 0.8rem,
      #f9e08e 0,
      #f9e08e 1.6rem
    );
  }

  .checkquestion-loading-photo {
    max-width: 30.4rem;
    margin-top: 5rem;
  }

  .checkquestion-loading-photo span {
    border-radius: 1.6rem;
  }

  .checkquestion-loading-txt {
    margin-top: 3.5rem;
  }

  .checkquestion-pager {
    justify-content: center;
  }

  .checkquestion-pager:after {
    width: 20rem;
  }

  .checkquestion-pager-back {
    width: 20rem;
    font-size: 1.6rem;
  }

  .checkquestion-pager-dots > li {
    width: 1rem;
    height: 1rem;
    margin: 0 1rem;
  }

  .checkresult-inner {
    max-width: 124.8rem;
    padding: 19rem 0 16rem;
    margin: 0 auto;
  }

  .checkresult-ttl strong {
    font-size: 4rem;
  }

  .checkresult-ttl small {
    padding-top: 1rem;
    font-size: 2.2rem;
  }

  .checkresult-item {
    margin-top: 5.8rem;
    background: #fff;
    border-radius: 1.6rem;
  }

  .checkresult-item-inner {
    flex: 1;
    align-self: center;
    padding: 2rem;
  }

  .checkresult-item-ttl {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .checkresult-item-ttl strong {
    font-size: 6.4rem;
  }

  .checkresult-item-cap {
    margin-top: 2.5rem;
    font-size: 1.6rem;
  }

  .checkresult-item-note {
    margin-top: 1.5rem;
    font-size: 1.2rem;
  }

  .checkresult-item-catch {
    margin-top: 3.5rem;
    font-size: 2.2rem;
  }

  .checkresult-item-catch span {
    padding: 0.25em 0.3em 0.05em;
  }

  .checkresult-item-lead {
    margin-top: 2rem;
    font-size: 3.2rem;
    line-height: 1.7;
  }

  .checkresult-item-img {
    width: 50%;
  }

  .checkresult-item-img img {
    width: 100%;
  }

  .checkconsult-inner {
    max-width: 124.8rem;
    padding: 0 0 7rem;
    margin: 0 auto;
  }

  .checkconsult-medicine > li {
    position: absolute;
    top: 0;
    left: 50%;
  }

  .checkconsult-medicine > li:first-child {
    width: 10.2rem;
    padding-top: 13rem;
    margin-left: -51rem;
  }

  .checkconsult-medicine > li:nth-child(2) {
    width: 12rem;
    padding-top: 15rem;
    margin-left: 36rem;
  }

  .checkconsult-ttl {
    font-size: 5rem;
    line-height: 1.3;
    color: #f3c11d;
    letter-spacing: 0.15em;
  }

  .checkconsult-txt {
    padding: 0 2.6rem 0 8rem;
    margin-top: 2.7rem;
    font-size: 2.4rem;
    line-height: 2;
  }
}

@media screen and (max-width: 833px) {
  .checkquestion {
    padding: 4.8rem 0;
  }

  .checkquestion-item-inner {
    padding: 0 5.5rem;
  }

  .checkquestion-item-num {
    font-size: 2.6rem;
  }

  .checkquestion-item-title {
    min-height: 7em;
    padding: 2.5rem 0;
    font-size: 4rem;
  }

  .checkquestion-item-btnlist {
    padding-bottom: 5rem;
    margin-top: -2rem;
    font-size: 3.6rem;
  }

  .checkquestion-item-btnlist > li {
    margin-top: 2rem;
  }

  .checkquestion-item-btnlist > li input:checked + span {
    background-position: 6rem;
    background-size: 3.8rem auto;
  }

  .checkquestion-loading-status {
    width: 56.4rem;
    height: 2.8rem;
    margin-top: 7rem;
    border-width: 0.6rem;
  }

  .checkquestion-loading-bar span {
    background-image: repeating-linear-gradient(
      135deg,
      #f3c11d,
      #f3c11d 1rem,
      #f9e08e 0,
      #f9e08e 2rem
    );
  }

  .checkquestion-loading-photo {
    max-width: 40rem;
    margin-top: 6.8rem;
  }

  .checkquestion-loading-photo span {
    border-radius: 3.2rem;
  }

  .checkquestion-loading-txt {
    margin-top: 6rem;
  }

  .checkquestion-pager {
    justify-content: space-between;
    padding: 0 5.5rem;
  }

  .checkquestion-pager:after {
    width: 10rem;
  }

  .checkquestion-pager-back {
    width: 10rem;
    font-size: 2.6rem;
  }

  .checkquestion-pager-dots > li {
    width: 2rem;
    height: 2rem;
    margin: 0 1.2rem;
    border-width: 1px;
  }

  .checkresult-inner {
    padding: 16rem 5.5rem;
  }

  .checkresult-ttl strong {
    font-size: 5.6rem;
  }

  .checkresult-ttl small {
    font-size: 2.8rem;
  }

  .checkresult-item {
    flex-direction: column-reverse;
    margin-top: 6rem;
  }

  .checkresult-item-inner {
    margin-top: 6rem;
  }

  .checkresult-item-ttl {
    font-size: 2.4rem;
    line-height: 1.4;
  }

  .checkresult-item-ttl strong {
    font-size: 8rem;
  }

  .checkresult-item-cap {
    margin-top: 4rem;
    font-size: 2.8rem;
  }

  .checkresult-item-note {
    margin-top: 4rem;
    font-size: 2rem;
  }

  .checkresult-item-catch {
    margin-top: 6rem;
    font-size: 2.8rem;
  }

  .checkresult-item-catch span {
    padding: 0.34em 0.5em 0.05em;
  }

  .checkresult-item-lead {
    margin-top: 2rem;
    font-size: 4.8rem;
    line-height: 1.7;
  }

  .checkresult-item-img img {
    width: 74%;
    border-radius: 2.4rem;
  }

  .checkconsult-inner {
    padding: 0 5.5rem 11rem;
  }

  .checkconsult-medicine {
    position: relative;
    left: 1.4rem;
    display: flex;
    justify-content: space-between;
    max-width: 44rem;
    margin: 0 auto 3rem;
  }

  .checkconsult-medicine > li:first-child {
    width: 10rem;
  }

  .checkconsult-medicine > li:nth-child(2) {
    width: 13.4rem;
    padding-top: 3.4rem;
  }

  .checkconsult-ttl {
    margin-top: -0.5em;
    font-size: 6.2rem;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.15em;
  }

  .checkconsult-ttl span {
    box-sizing: border-box;
    display: inline-block;
    padding: 0.25em 0.15em 0.05em;
    margin-top: 0.5em;
    background: #f3c11d;
  }

  .checkconsult-txt {
    margin-top: 6rem;
    font-size: 3.6rem;
    line-height: 1.7;
  }
}

.checkquestion-item {
  position: relative;
  background: #4a92b7;
  max-width: 600px;
  margin: 0 auto;
  min-width: auto;
  inset: 0;
  transition: 0.4s;
  position: absolute;
  z-index: 1;
}

.checkquestion-item__deco {
  position: absolute;
  top: 0;
  z-index: 1;
}

.loading-area {
  position: relative;
  z-index: 6000;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  padding: 0;
}

.loading-area.is-checking {
  opacity: 1;
  visibility: visible;
  padding: 30rem 0 27rem;
}

.c-fixedBtn {
  z-index: 7000;
  margin-top: -17rem;
}

.cp-wrap .c-fixedBtn {
  display: none !important;
}

body:not(.ajax-contented) .c-fixedBtn {
  display: none !important;
}
