@charset "UTF-8";

.only_pc {
  display: block;
}

@media screen and (max-width: 750px) {
  .only_pc {
    display: none;
  }
}

.only_sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .only_sp {
    display: block;
  }
}

.sp_br {
  display: none;
}

@media screen and (max-width: 750px) {
  .sp_br {
    display: inline;
  }
}

.diagnosis_main_img {
  width: 100%;
}

.diagnosis_main_img .diagnosis_main_img_inner {
  position: relative;
  padding-top: calc(662 / 1600 * 100%);
  background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/top_pc.png?20191226);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}

@media screen and (max-width: 750px) {
  .diagnosis_main_img .diagnosis_main_img_inner {
    padding-top: calc(720 / 637 * 100%);
    background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/sp/top_sp.png?20191226);
  }
}

.btn_start {
  width: 461px;
  margin: 60px auto 80px;
  text-align: center;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 750px) {
  .btn_start {
    width: 90%;
  }
}

.mu__img {
  width: 200px;
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
  -webkit-animation-name: muu;
  animation-name: muu;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media screen and (max-width: 750px) {
  .mu__img {
    width: 45%;
  }
}

@-webkit-keyframes muu {
  0% {
    top: -20%;
  }

  10% {
    top: -20%;
  }

  50% {
    top: -80%;
  }

  90% {
    top: -80%;
  }

  100% {
    top: -20%;
  }
}

@keyframes muu {
  0% {
    top: -20%;
  }

  10% {
    top: -20%;
  }

  50% {
    top: -80%;
  }

  90% {
    top: -80%;
  }

  100% {
    top: -20%;
  }
}

.question_block {
  display: none;
  opacity: 0;
  background-size: 100%;
  min-height: 740px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  padding: 10% 0;
}

@media screen and (max-width: 750px) {
  .question_block {
    min-height: 0;
    height: 100vh;
    padding: 20% 0 5%;
    margin: 0 -2.5%;
  }
}

.question_block.block_1 {
  display: block;
  opacity: 1;
  background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/bg_1.png);
}

@media screen and (max-width: 750px) {
  .question_block.block_1 {
    background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/sp/bg_1.png);
  }
}

.question_block.block_2 {
  background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/bg_2.png);
}

@media screen and (max-width: 750px) {
  .question_block.block_2 {
    background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/sp/bg_2.png);
  }
}

.question_block.block_3 {
  background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/bg_3.png);
}

@media screen and (max-width: 750px) {
  .question_block.block_3 {
    background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/sp/bg_3.png);
  }
}

.question_block.block_4 {
  background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/bg_night.png);
}

@media screen and (max-width: 750px) {
  .question_block.block_4 {
    background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/sp/bg_night.png);
    padding: 35% 0 0;
  }
}

.question_block .question_text {
  width: 530px;
  margin: 0 auto;
  background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/question_frame.png) no-repeat;
  background-size: 100%;
  background-position: center center;
  color: #fff;
  text-align: center;
  padding-top: calc(213 / 678 * 45%);
  font-size: 20px;
  position: relative;
  opacity: 0;
}

@media screen and (max-width: 750px) {
  .question_block .question_text {
    width: 90%;
    background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/sp/question_frame.png) no-repeat;
    background-size: 100%;
    height: auto;
    padding-top: calc(145 / 480 * 90%);
    font-size: 14px;
  }
}

.question_block .question_text .question_muu {
  display: block;
  width: 25%;
  position: absolute;
  right: -5%;
  bottom: -10%;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-name: bottomMuu;
  animation-name: bottomMuu;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.question_block .question_text span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

@-webkit-keyframes bottomMuu {
  0% {
    bottom: -10%;
  }

  50% {
    bottom: 10%;
  }

  100% {
    bottom: -10%;
  }
}

@keyframes bottomMuu {
  0% {
    bottom: -10%;
  }

  50% {
    bottom: 10%;
  }

  100% {
    bottom: -10%;
  }
}

.answer_list {
  width: 60%;
  margin: 70px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .answer_list {
    width: 80%;
    margin: 30px auto 0;
  }
}

.answer_list li {
  width: 47.5%;
  margin-right: 5%;
  margin-bottom: 30px;
  opacity: 0;
}

@media screen and (max-width: 750px) {
  .answer_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6%;
  }
}

.answer_list li:nth-child(2n) {
  margin-right: 0;
}

.answer_list li a {
  font-size: 26px;
  color: #3a242c;
  display: block;
  background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/select_frame.png) no-repeat;
  background-size: 100%;
  background-position: center center;
  text-align: center;
  position: relative;
  padding-top: calc(168 / 655 * 100%);
}

@media screen and (max-width: 750px) {
  .answer_list li a {
    font-size: 18px;
    background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/sp/select_frame.png) no-repeat;
    background-size: 100%;
    padding-top: calc(105 / 408 * 100%);
  }
}

.answer_list li span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.question_end__wrap {
  position: relative;
  padding-top: 20%;
}

.question_end__wrap .mu__img {
  top: 20%;
  z-index: 1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-name: end_muu;
  animation-name: end_muu;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.result_btn {
  text-align: center;
}

@media screen and (max-width: 750px) {
  .result_btn {
    margin: 25% 0px;
  }
}

.result_btn a {
  display: block;
}

@-webkit-keyframes end_muu {
  0% {
    top: 20%;
  }

  50% {
    top: -10%;
  }

  100% {
    top: 20%;
  }
}

@keyframes end_muu {
  0% {
    top: 20%;
  }

  50% {
    top: -10%;
  }

  100% {
    top: 20%;
  }
}

.ansewer_img {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto 30px;
}

@media screen and (max-width: 750px) {
  .ansewer_img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 750px) {
  .ansewer_img .ansewer_img_inner {
    margin: 0 -2.5%;
  }
}

.result_block__wrap {
  background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/mascot_op.png);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: bottom right;
}

@media screen and (max-width: 750px) {
  .result_block__wrap {
    background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/sp/mascot_op.png);
    background-size: 55%;
    background-position: 135% 15%;
    padding: 30px 2.5% 0;
    margin: 0 -2.5%;
  }
}

.dgs_text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  text-align: center;
}

.neon_yellow_color {
  margin-bottom: 40px;
  font-size: 42px;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 0 3px #fff,
    0 0 10px #6e512c;
}

@media screen and (max-width: 750px) {
  .neon_yellow_color {
    font-size: 5vw;
    margin-bottom: 20px;
  }
}

.neon_red_color {
  font-size: 48px;
  color: #fff;
  text-shadow: 0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #FF1177,
    0 0 35px #FF1177;
}

@media screen and (max-width: 750px) {
  .neon_red_color {
    font-size: 6vw;
  }
}

.big_neon_yellow_color {
  font-size: 65px;
  color: #fff;
  text-shadow: 0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #6e512c,
    0 0 35px #6e512c;
}

@media screen and (max-width: 750px) {
  .big_neon_yellow_color {
    font-size: 9vw;
  }
}

.twitter_of_btn.tw_logo {
  position: relative;
}

.twitter_of_btn.tw_logo:before {
  content: "";
  display: inline-block;
  background: url(/wp-content/themes/ikemen/title/vampire/original/images/common/twitter_logo.png) no-repeat;
  background-size: 100%;
  width: 60px;
  padding-top: 60px;
  position: absolute;
  top: 0px;
  left: 15px;
}

@media screen and (max-width: 750px) {
  .twitter_of_btn.tw_logo:before {
    width: 35px;
    padding-top: 35px;
    top: 15%;
    left: 8px;
  }
}

.twitter_of_btn.result_share {
  width: 320px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .twitter_of_btn.result_share {
    width: 75%;
  }
}

.twitter_of_btn a {
  text-align: center;
  font-size: 16px;
  padding: 15px 0;
  text-indent: 1.5em;
}

@media screen and (max-width: 750px) {
  .twitter_of_btn a {
    font-size: 14px;
  }
}

.result_share__text {
  margin-top: 10px;
  text-align: center;
  color: #dece83;
  font-size: 18px;
}

@media screen and (max-width: 750px) {
  .result_share__text {
    font-size: 4vw;
  }
}

.result_btn__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 45px 0 0;
}

@media screen and (max-width: 750px) {
  .result_btn__list {
    display: block;
    width: 80%;
    margin: 20px auto 0;
  }
}

.result_btn__list li {
  width: 250px;
  margin-right: 25px;
}

@media screen and (max-width: 750px) {
  .result_btn__list li {
    width: 100%;
    margin-right: 4%;
    margin-bottom: 10px;
  }
}

.result_btn__list li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 750px) {
  .result_btn__list li:last-child {
    margin-bottom: 0;
  }
}

.result_btn__list li .content_btn a {
  font-size: 18px;
}

@media screen and (max-width: 750px) {
  .result_btn__list li .content_btn a {
    font-size: 14px;
    padding: 4% 0;
  }
}

.result_recommend__wrap {
  width: 584px;
  margin: 90px auto 80px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .result_recommend__wrap {
    width: 95%;
    margin: 20px auto;
  }
}

.result_recommend__wrap:before {
  content: "";
  display: block;
  background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/recommend_frame_top.png) no-repeat;
  background-size: 100%;
  background-position: center bottom;
  padding-top: calc(28 / 584 *100%);
}

.result_recommend__wrap:after {
  content: "";
  display: block;
  background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/recommend_frame_bottom.png) no-repeat;
  background-size: 100%;
  background-position: center top;
  padding-top: calc(28 / 584 *100%);
}

.result_recommend__wrap .result_recommend__inner {
  position: relative;
  background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/recommend_frame_middle.png) repeat-y;
  background-size: 100%;
  background-position: center center;
  padding-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .result_recommend__wrap .result_recommend__inner {
    padding: 5% 5%;
  }
}

.result_recommend__wrap .result_recommend__inner .content_btn {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .result_recommend__wrap .result_recommend__inner .content_btn {
    width: 80%;
  }
}

.result_recommend__wrap .result_recommend__inner .content_btn a {
  font-size: 18px;
}

@media screen and (max-width: 750px) {
  .result_recommend__wrap .result_recommend__inner .content_btn a {
    font-size: 14px;
  }
}

.result_recommend__text {
  font-size: 18px;
  line-height: 1.4;
  color: #590707;
  text-shadow: 0 0 5px #fff,
    0 0 10px #fff;
  margin-bottom: 20px;
  padding: 0 5%;
}

@media screen and (max-width: 750px) {
  .result_recommend__text {
    font-size: 4.5vw;
  }
}

.result_recommend__text .bigger {
  font-size: 22px;
}

@media screen and (max-width: 750px) {
  .result_recommend__text .bigger {
    font-size: 5vw;
  }
}

.result_recommend__text .bigger.c_name {
  color: #ae1935;
}

.result_recommend__img {
  margin-bottom: 20px;
}

.pc_registration_block {
  width: 100%;
}

.pc_registration_block .pc_registration_wrap {
  margin-bottom: 1em;
  position: relative;
  width: 100%;
  background: -webkit-linear-gradient(left, transparent 0%, rgba(0, 0, 0, 0.4) 5%, rgba(0, 0, 0, 0.4) 95%, transparent 100%);
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 5%, rgba(0, 0, 0, 0.4) 95%, transparent 100%);
}

.pc_registration_block .pc_registration_wrap:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: -63px;
  background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/line_top.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  padding: calc(34 / 1000 * 100%);
  box-sizing: border-box;
}

.pc_registration_block .pc_registration_wrap:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: -62px;
  background-image: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/line_bottom.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  padding: calc(34 / 1000 * 100%);
  box-sizing: border-box;
}

.pc_registration_block .pc_registration_inner {
  padding: 4% 0 4%;
}

.pc_registration_block .pc_registration_inner .ttl {
  text-align: center;
  font-size: 32px;
  color: #d7c685;
  margin-bottom: .2em;
}

.pc_registration_block .pc_registration_inner ul {
  text-align: center;
  font-size: 0;
  width: 85%;
  margin: 0 auto 1%;
}

.pc_registration_block .pc_registration_inner ul li {
  display: inline-block;
  width: 30%;
  margin-right: 5%;
}

.pc_registration_block .pc_registration_inner ul li:last-child {
  margin-right: 0;
}

.pc_registration_block .pc_registration_inner ul li img {
  width: 100%;
}

.pc_registration_block .content_btn {
  width: 50%;
  margin: 0 auto 20px;
}

@media screen and (max-width: 750px) {
  .registration_block .registration_inner .dl_list__wrap li {
    width: 47.5%;
  }
}

@media screen and (max-width: 750px) {
  .registration_block .registration_wrap:before {
    top: -6%;
  }
}

@media screen and (max-width: 750px) {
  .registration_block .registration_wrap:after {
    bottom: -6%;
  }
}

@media screen and (max-width: 750px) {
  .registration_block .registration_inner .ttl {
    font-size: 5vw;
  }
}

.error {
  margin-bottom: 30px;
}

.error .error_txt {
  width: 80%;
  background-color: #e9e9e9;
  margin: 0 auto 30px;
  text-align: center;
  background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/recommend_frame_middle.png) repeat-y;
  background-size: 100%;
  background-position: center center;
}

@media screen and (max-width: 750px) {
  .error .error_txt {
    width: 90%;
    margin: 65px auto 30px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 750px) {
  .error .error_txt span {
    padding: 0 3%;
    display: block;
  }
}

.error .error_txt:before {
  content: "";
  display: block;
  background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/recommend_frame_top.png) no-repeat;
  background-size: 100%;
  background-position: center bottom;
  padding-top: calc(28 / 584 *100%);
}

.error .error_txt:after {
  content: "";
  display: block;
  background: url(/wp-content/themes/ikemen/title/vampire/original/images/shindan/pc/recommend_frame_bottom.png) no-repeat;
  background-size: 100%;
  background-position: center top;
  padding-top: calc(28 / 584 *100%);
}

.error .content_btn {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .error .content_btn {
    width: 85%;
  }
}

.fade-in-layer {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
}

.fade-layer {
  display: none;
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
}


.main_contents.sgl_content.result {
  margin: 50px auto 0;
}
.breadcrumb_wrap{
  width: 1120px;
  padding-top: 0.6em;
  margin: 0 auto 0.4em;
  position: relative;
  z-index: 100;
}
.breadcrumb_inner li:last-child {
  color: #d7c685;
}
a:visited {
  color: #ddd0ba;
}
.breadcrumb_inner li + li::before{
  background: #ddd0ba;
}
@media screen and (max-width: 750px) {
  .breadcrumb_wrap{
    width: 90%;
    z-index: 5;
  }
  .main_contents.sgl_content.result {
    margin: 4% auto 0;
  }
}