/* top */
.shindan-top .section__header {
  padding-bottom: 0;
}

.shindan-top .section__header .title.logo {
  display: block;
  width: 90%;
  max-width: 620px;
  margin: 0 auto;
}

.shindan-top {
  background-color: var(--lgray);

}

.shindan-top .shindan-top-inner {
  display: block;
  width: fit-content;
  position: relative;
  margin: -2em auto 0;
}

@media screen and (max-width:767px) {
  .shindan-top .shindan-top-inner .check-1min {
    width: 20vw;
    height: 20vw;
  }

  .shindan-top .shindan-top-inner .check-1min .sml {
    display: none;
  }
}

.shindan-top .section__header .subtitle {
  font-size: min(1.4em, 4vw);
  letter-spacing: .05em;
  margin-bottom: 1em;
  background-color: var(--lgray);
}

.shindan-top .button-wrp {
  margin-top: 1em;
  padding-bottom: min(6em, 10vw);
}

.shindan-top .button {
  font-size: min(1.15em, 3.6vw);
  background-color: var(--orange);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 3px;
}

@media screen and (max-width:767px) {

  .shindan-top .button-wrp {
    margin-top: 6vw;
  }
}

/* check */
.shindan-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: var(--content);
  margin: 0 auto;
  background-color: var(--lgray);
  border-radius: 20px;
  overflow: hidden;
}

.shindan-question .section__header {
  width: 35%;
  padding: min(5%, 5vw) min(2%, 5vw)
}

@media screen and (max-width:767px) {
  .shindan-question .section__header {
    width: 100%;
  }

  .shindan-question .section__header .section__inner {
    padding: 0;
  }
}

.shindan-question .section__header .title.logo {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
}

@media screen and (max-width:767px) {
  .shindan-question .section__header .title.logo {
    max-width: 260px;
  }
}



.shindan-question .section__header .subtitle {
  margin: .5em auto 4em;
  font-size: min(.95em, 3.6vw);
  text-align: center;
}

.shindan-question .section__header .question-img {
  display: block;
  width: 90%;
  margin: 2em auto;
}

@media screen and (max-width:767px) {

  .shindan-question .section__header .subtitle,
  .shindan-question .section__header .question-img {
    display: none;
  }
}

/* Unused in current shindan page
.now {
  padding: 1em;
  position: absolute;
  top: 1em;
  right: 1em;
  display: none;
}
*/

.q-wrp.question {
  width: 65%;
  padding: 5%;
  position: relative;
  display: none;
  background-color: #f4f3ea;
}

@media screen and (max-width:767px) {
  .q-wrp.question {
    width: 100%;
    padding: min(5em, 12vw) 0;

  }
}

.q-wrp.question .question-inner {
  display: block;
  opacity: 1;
  transition: opacity .28s ease;
}

.q-wrp.question .question-inner.is_hide {
  opacity: 0;
}

.q-wrp.question .button-wrp {
  min-height: 3lh;
}

.q-wrp.question .button-wrp .button {
  max-width: 300px;
  margin-bottom: 0;
  font-size: min(.8em, 3vw);
  padding: .75em 5em;
  border-radius: 3em;
}

.q-wrp.question .q-title-wrp {
  line-height: 1.5;
  text-align: center;
  width: 100%;
  min-height: 90px;
}

.q-wrp.question .q-title {
  font-size: min(1.5em, 3.8vw);
  font-weight: bold;
  /* height: 2lh; */
  /* padding: 0 1em; */
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
  margin: 0 auto 1em;
  background-color: #f4f3ea;
}

@media screen and (max-width:767px) {
  .q-wrp.question .q-title {
    font-size: 1.2em;
    margin-bottom: .5em;
  }
}

.find-img-wrp {
  width: 100%;
  max-width: 640px;
  padding: 0 1em;
  margin: 0 auto 1em;
}

.findimg {
  width: 50%;
  text-align: center;
}

.findimg label {
  width: 94%;
  height: 3.5lh;
  margin: 0 auto;
  padding: .75em .2em;
  font-size: min(.8em, 3vw);
  font-weight: 500;
  line-height: 1.5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
  border: 1px solid var(--ink);
  background-color: rgb(255 255 255/0);
  transition: background-color .3s ease-out;
}

.findimg img {
  width: 100%;
  height: auto;
}

.findimg,
.findimg label {
  cursor: pointer;
}

.findimg input[type=radio] {
  display: none;
}

.findimg .checkbox {
  /* display: block; */
  display: none;
  width: 1.8em;
  height: 1.8em;
  border: 2px solid var(--ink);
  border-radius: 100%;
  position: relative;
  margin: .5em auto 0;
  background-color: #fff;
}

.findimg .checkbox::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: .3em;
  left: .4em;
  width: .8em;
  height: .6em;
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transform: rotate(-45deg) scale(0, 0);
  transform-origin: center center;
  border: 3px solid #4297bc;
  border-top-style: none;
  border-right-style: none;
}

.findimg.off.yes .checkbox::before {
  transform: rotate(-45deg) scale(1, 1);
}

.findimg.off.yes {
  opacity: 1;
}

.findimg.off {
  opacity: .5;
}

.button-wrp {
  width: 100%;
}

.button-wrp .button.back {
  width: 100%;
  max-width: 360px;
  text-align: center;
  padding: 1em 3em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: min(.9em, 3.2vw);
  font-family: var(--en);
  color: var(--ink);
  background-color: #fff;
  margin: 2em auto;
  cursor: pointer;
}

.button.back::before,
.button.back::after {
  content: '';
  position: absolute;
  left: 1em;
  top: 50%;
  border-top: solid 1px;
  transition: all .2s ease-out;
}

.button.back::before {
  width: .6em;
  transform: rotate(-30deg);
  transform-origin: left bottom;
}

.button.back::after {
  width: 1.2em;
}

.button.back:hover::before,
.button.back:hover::after {
  left: .7em;
}

.button.back:hover::after {
  width: 1.5em;
}



/* Unused in current shindan page
.button-wrp .button.next {
  cursor: default;
}

.button-wrp .next.active {
  cursor: pointer;
}
*/

.button-wrp .button.back.is_hide {
  display: none;
}