/* helper/adjust */
.quiz_wrap {
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", "MS PGothic", sans-serif;
  font-size: 10px;
  line-height: 1.6;
}
.quiz_wrap p:first-child {
  margin-top: 0;
}
.quiz_wrap .only-sp {
  display: none;
}
.quiz_wrap.is-mobile .only-pc {
  display: none;
}
.quiz_wrap.is-mobile .only-sp {
  display: inline;
}
/* button */
.quiz_button {
  border-radius: 8px;
  background-color: #fff;
  font-size: 1em;
}
.quiz_button > button {
  width: 100%;
  min-height: 58px;
  padding: 3px 4px;
  border: 3px solid #fff;
  border-radius: 8px;
  font-size: 1.8em;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, left bottom, from(#f19849), to(#d46f03));
  background: -webkit-linear-gradient(top, #f19849, #d46f03);
  background: linear-gradient(to bottom, #f19849, #d46f03);
  color: #fff;
  cursor: pointer;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  outline: none;
}
.quiz_button > button:hover,
.quiz_button > button:active {
  opacity: .8;
  filter: alpha(opacity=80);
}
.quiz_button > button.is-disabled {
  background: -webkit-gradient(linear, left top, left bottom, from(#d4d4d4), to(#aaaaaa)) !important;
  background: -webkit-linear-gradient(top, #d4d4d4, #aaaaaa) !important;
  background: linear-gradient(to bottom, #d4d4d4, #aaaaaa) !important;
  opacity: 1;
  filter: alpha(opacity=100);
  pointer-events: none;
}
.is-mobile .quiz_button {
  border-radius: 20px;
}
.is-mobile .quiz_button > button {
  min-height: 123px;
  padding: 8px 5px;
  border-width: 8px;
  border-radius: 20px;
  font-size: 1.5em;
}
.is-disabled .quiz_button {
  pointer-events: none !important;
}
.quiz_button.opt-shadow > button {
  border-width: 0;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
}
.is-mobile .quiz_button.opt-shadow > button {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}
.quiz_button.opt-answer > button {
  min-height: 162px;
  line-height: 1.6;
}
.is-mobile .quiz_button.opt-answer > button {
  min-height: 200px;
}
.quiz_button.opt-middle > button {
  min-height: 60px;
  font-size: 2.2em;
}
.is-mobile .quiz_button.opt-middle > button {
  min-height: 133px;
  font-size: 1.8em;
}
.quiz_button.opt-large > button {
  min-height: 78px;
  font-size: 2.8em;
}
.is-mobile .quiz_button.opt-large > button {
  min-height: 148px;
  font-size: 2.6em;
}
.quiz_button.theme-blue > button {
  background: -webkit-gradient(linear, left top, left bottom, from(#4f9cd7), to(#196bc0));
  background: -webkit-linear-gradient(top, #4f9cd7, #196bc0);
  background: linear-gradient(to bottom, #4f9cd7, #196bc0);
}
.quiz_button.theme-green > button {
  background: -webkit-gradient(linear, left top, left bottom, from(#7ad464), to(#44af16));
  background: -webkit-linear-gradient(top, #7ad464, #44af16);
  background: linear-gradient(to bottom, #7ad464, #44af16);
}
.quiz_button.theme-orange > button {
  background: -webkit-gradient(linear, left top, left bottom, from(#f07c48), to(#ca4801));
  background: -webkit-linear-gradient(top, #f07c48, #ca4801);
  background: linear-gradient(to bottom, #f07c48, #ca4801);
}
.quiz_button.theme-yellow > button {
  background: -webkit-gradient(linear, left top, left bottom, from(#deb920), to(#c78d00));
  background: -webkit-linear-gradient(top, #deb920, #c78d00);
  background: linear-gradient(to bottom, #deb920, #c78d00);
}
.quiz_button.theme-skyblue > button {
  background: -webkit-gradient(linear, left top, left bottom, from(#74d4d8), to(#29aaaf));
  background: -webkit-linear-gradient(top, #74d4d8, #29aaaf);
  background: linear-gradient(to bottom, #74d4d8, #29aaaf);
}
.quiz_button.theme-brown > button {
  background: -webkit-gradient(linear, left top, left bottom, from(#c5a981), to(#9f7943));
  background: -webkit-linear-gradient(top, #c5a981, #9f7943);
  background: linear-gradient(to bottom, #c5a981, #9f7943);
}
.quiz_button.theme-gray > button {
  background: -webkit-gradient(linear, left top, left bottom, from(#bfbfbf), to(#6d6d6d));
  background: -webkit-linear-gradient(top, #bfbfbf, #6d6d6d);
  background: linear-gradient(to bottom, #bfbfbf, #6d6d6d);
}
.quiz_button.theme-red > button {
  background: -webkit-gradient(linear, left top, left bottom, from(#df5b49), to(#be321e));
  background: -webkit-linear-gradient(top, #df5b49, #be321e);
  background: linear-gradient(to bottom, #df5b49, #be321e);
}
/* button icon */
.quiz_button_icon {
  display: inline-block;
  margin: -3px auto;
}
.quiz_button_icon > span {
  display: inline-block;
  vertical-align: middle;
}
.quiz_button_icon > span:first-child {
  padding-right: 10px;
}
.quiz_button_icon > span > img {
  height: 52px;
  max-height: 100%;
}
.is-mobile .quiz_button_icon {
  margin: -8px auto;
}
.is-mobile .quiz_button_icon > span:first-child {
  padding-right: 14px;
}
.is-mobile .quiz_button_icon > span > img {
  height: 107px;
  max-height: 100%;
}
.quiz_wrap {
  position: relative;
  padding-bottom: 58px;
  overflow: hidden;
  -webkit-transition: height .5s ease;
  transition: height .5s ease;
}
.quiz_wrap.is-mobile {
  padding-bottom: 105px;
  font-size: 25.6px;
}
.quiz {
  position: relative;
  padding: 14px 35px 50px;
  background: url(/library/bousai/cafe/quiz/img/quiz_wrap_bg01_pc.png) no-repeat center bottom;
  background-size: 99.27%;
}
.quiz h1,
.quiz h2,
.quiz h3,
.quiz h4,
.quiz h5,
.quiz h6,
.quiz dt,
.quiz dd,
.quiz li,
.quiz caption,
.quiz col,
.quiz th,
.quiz td,
.quiz p,
.quiz address,
.quiz figcaption {
  color: #fff;
}
.quiz::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 99.27%;
  height: 86px;
  margin: 0 auto;
  background: url(/library/bousai/cafe/quiz/img/quiz_wrap_bg02_pc.png) no-repeat center top;
  background-size: 100% 100%;
}
.is-mobile .quiz {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_wrap_bg01_sp.png);
  background-size: 95.73%;
  padding: 51px 60px;
}
.is-mobile .quiz::before {
  width: 95.73%;
  height: 145px;
  background-image: url(/library/bousai/cafe/quiz/img/quiz_wrap_bg02_sp.png);
}
.quiz_inner {
  position: relative;
  z-index: 1;
}
.quiz_title {
  text-align: center;
}
.is-mobile .quiz_title img {
  width: 704px;
}
.quiz_content {
  display: none;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  pointer-events: none;
}
.quiz_content::before,
.quiz_content::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -85px;
  width: 221px;
  height: 100%;
  background: no-repeat center bottom;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}
.quiz_content::before {
  left: -17px;
}
.quiz_content::after {
  right: -17px;
}
.is-mobile .quiz_content::before,
.is-mobile .quiz_content::after {
  bottom: -102px;
  width: 320px;
}
.is-mobile .quiz_content::before {
  left: auto;
  right: 50%;
}
.is-mobile .quiz_content::after {
  right: auto;
  left: 50%;
}
.quiz_content.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.quiz_content.is-disabled {
  pointer-events: none !important;
}
.quiz_content.opt-scene00 {
  padding: 163px 0;
}
.quiz_content.opt-scene00::before,
.quiz_content.opt-scene00::after {
  display: none;
}
.is-mobile .quiz_content.opt-scene00 {
  padding: 200px 0;
}
.quiz_content.opt-scene01 {
  margin-top: 25px;
}
.quiz_content.opt-scene01::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene01_bg01_02_pc.png);
}
.quiz_content.opt-scene01::after {
  width: 209px;
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene01_bg02_pc.png);
}
.is-mobile .quiz_content.opt-scene01 {
  margin-top: 56px;
  padding-bottom: 643px;
}
.is-mobile .quiz_content.opt-scene01::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene01_bg01_02_sp.png);
}
.is-mobile .quiz_content.opt-scene01::after {
  width: 292px;
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene01_bg02_sp.png);
}
.quiz_content.opt-scene02 {
  margin-top: 44px;
}
.quiz_content.opt-scene02::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene02_bg01_02.png);
}
.quiz_content.opt-scene02::after {
  width: 209px;
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene02_bg02.png);
}
.is-mobile .quiz_content.opt-scene02 {
  margin-top: 38px;
  padding-bottom: 554px;
}
.is-mobile .quiz_content.opt-scene02::after {
  width: 292px;
}
.quiz_content.opt-scene03,
.quiz_content.opt-scene04 {
  margin-top: 4px;
  padding-bottom: 16px;
}
.quiz_content.opt-scene03::before,
.quiz_content.opt-scene04::before {
  left: auto;
  right: 0;
  width: 201px;
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene03_bg07_02.png);
  z-index: 1;
}
.quiz_content.opt-scene03::after,
.quiz_content.opt-scene04::after {
  display: none;
}
.is-mobile .quiz_content.opt-scene03,
.is-mobile .quiz_content.opt-scene04 {
  margin-top: 59px;
  padding-bottom: 365px;
}
.is-mobile .quiz_content.opt-scene03::before,
.is-mobile .quiz_content.opt-scene04::before {
  left: 0;
  right: 0;
  width: 289px;
  margin: 0 auto;
}
.quiz_content.opt-scene03.is-correct.opt-result01::before,
.quiz_content.opt-scene04.is-correct.opt-result01::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene03_bg08_02.png);
}
.quiz_content.opt-scene03.is-correct.opt-result02::before,
.quiz_content.opt-scene04.is-correct.opt-result02::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene03_bg09_02.png);
}
.quiz_content.opt-scene03.is-incorrect.opt-result01::before,
.quiz_content.opt-scene04.is-incorrect.opt-result01::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene03_bg10_02.png);
}
.quiz_content.opt-scene03.is-incorrect.opt-result02::before,
.quiz_content.opt-scene04.is-incorrect.opt-result02::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene03_bg11_02.png);
}
.quiz_content.opt-scene05 {
  margin-top: 4px;
}
.quiz_content.opt-scene05::before {
  left: auto;
  right: 169px;
  z-index: 2;
}
.quiz_content.opt-scene05::after {
  width: 209px;
  z-index: 1;
}
.is-mobile .quiz_content.opt-scene05 {
  margin-top: 59px;
  padding-bottom: 365px;
}
.is-mobile .quiz_content.opt-scene05::before {
  right: 50%;
}
.is-mobile .quiz_content.opt-scene05::after {
  width: 320px;
}
.quiz_content.opt-scene05.opt-result01::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg06_02.png);
}
.quiz_content.opt-scene05.opt-result01::after {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg07.png);
}
.quiz_content.opt-scene05.opt-result02::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg08_02.png);
}
.quiz_content.opt-scene05.opt-result02::after {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg09.png);
}
.quiz_content.opt-scene05.opt-result03::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg10_02.png);
}
.quiz_content.opt-scene05.opt-result03::after {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg11.png);
}
.quiz_content_inner {
  position: relative;
  background-color: #fff;
}
.quiz_content_inner::before,
.quiz_content_inner::after {
  content: '';
  display: block;
  height: 30px;
  position: absolute;
  background: no-repeat left center, no-repeat right center;
}
.quiz_content_inner::before {
  top: 4px;
  left: 5px;
  right: 6px;
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene03_bg02.png), url(/library/bousai/cafe/quiz/img/quiz_scene03_bg03.png);
  background-size: 29px, 27px;
}
.quiz_content_inner::after {
  bottom: 3px;
  left: 10px;
  right: 8px;
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene03_bg04.png), url(/library/bousai/cafe/quiz/img/quiz_scene03_bg05.png);
  background-size: 26px, 29px;
}
.quiz_content .quiz_content_inner h1,
.quiz_content .quiz_content_inner h2,
.quiz_content .quiz_content_inner h3,
.quiz_content .quiz_content_inner h4,
.quiz_content .quiz_content_inner h5,
.quiz_content .quiz_content_inner h6,
.quiz_content .quiz_content_inner dt,
.quiz_content .quiz_content_inner dd,
.quiz_content .quiz_content_inner li,
.quiz_content .quiz_content_inner caption,
.quiz_content .quiz_content_inner col,
.quiz_content .quiz_content_inner th,
.quiz_content .quiz_content_inner td,
.quiz_content .quiz_content_inner p,
.quiz_content .quiz_content_inner address,
.quiz_content .quiz_content_inner figcaption {
  color: #444;
}
.is-mobile .quiz_content_inner::before,
.is-mobile .quiz_content_inner::after {
  height: 77px;
}
.is-mobile .quiz_content_inner::before {
  top: 20px;
  left: 18px;
  right: 18px;
  background-size: 74px, 72px;
}
.is-mobile .quiz_content_inner::after {
  bottom: 15px;
  left: 28px;
  right: 18px;
  background-size: 64px, 72px;
}
.opt-scene03 .quiz_content_inner,
.opt-scene04 .quiz_content_inner {
  padding: 31px 212px 44px 39px;
}
.is-mobile .opt-scene03 .quiz_content_inner,
.is-mobile .opt-scene04 .quiz_content_inner {
  padding: 61px 44px 164px;
}
.opt-scene05 .quiz_content_inner {
  padding: 31px 383px 44px 60px;
}
.is-mobile .opt-scene05 .quiz_content_inner {
  padding: 61px 44px 164px;
}
.quiz_header_wrap {
  display: none;
  margin-top: 16px;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  pointer-events: none;
}
.is-mobile .quiz_header_wrap {
  margin-top: 38px;
}
.quiz_header_wrap.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.quiz_header_wrap.is-disabled {
  pointer-events: none !important;
}
.quiz_header {
  display: table;
  width: 100%;
}
.is-mobile .quiz_header {
  display: block;
  width: auto;
}
.quiz_header_title,
.quiz_header_table {
  display: table-cell;
  vertical-align: middle;
}
.is-mobile .quiz_header_title,
.is-mobile .quiz_header_table {
  display: block;
}
.quiz_header_title {
  padding: 7px 25px 0 0;
}
.quiz_header_title > h2 {
  display: table;
  width: 100%;
  font-size: 2.8em;
  font-weight: normal;
}
.quiz_header_title > h2 > span {
  display: table-cell;
  padding-right: 20px;
  vertical-align: middle;
  word-break: keep-all;
  white-space: nowrap;
}
.quiz_header_title > h2 > span:first-child {
  padding-right: 13px;
}
.quiz_header_title > h2 > span img {
  position: relative;
  top: -8px;
}
.quiz_header_title > h2::after {
  content: '';
  display: table-cell;
  width: 300px;
  background: url(/library/bousai/cafe/quiz/img/quiz_header_bg01.png) no-repeat center center;
  background-size: contain;
}
.quiz_header_title > h2 rt {
  font-size: 35%;
  margin-bottom: -6px;
}
.is-mobile .quiz_header_title {
  padding: 0;
}
.is-mobile .quiz_header_title > h2 {
  width: auto;
  margin: 0 auto;
  font-size: 2.8em;
}
.is-mobile .quiz_header_title > h2 > span {
  padding-top: .6em;
  padding-right: 0;
  vertical-align: middle;
}
.is-mobile .quiz_header_title > h2 > span:first-child {
  padding-top: 0;
  padding-right: 26px;
}
.is-mobile .quiz_header_title > h2 > span img {
  position: static;
  height: 141px;
}
.is-mobile .quiz_header_title > h2::after {
  display: none;
}
.is-mobile .quiz_header_title > h2 rt {
  font-size: 25%;
  margin-bottom: -18px;
}
.quiz_header_table {
  width: 502px;
}
.quiz_header_table > table {
  width: 100%;
  table-layout: fixed;
}
.quiz_header_table > table th,
.quiz_header_table > table td {
  border: 2px solid #fff;
  text-align: center;
  vertical-align: middle;
}
.quiz_header_table > table th {
  padding: 1px;
  font-size: 1.8em;
  line-height: 1;
}
.quiz_header_table > table td {
  height: 28px;
  position: relative;
}
.quiz_header_table > table td > span {
  display: block;
  text-indent: 100%;
  overflow: hidden;
}
.quiz_header_table > table td::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 34px;
  height: 37px;
  margin: auto;
  background: no-repeat center center;
  background-size: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.quiz_header_table > table td.is-correct::before,
.quiz_header_table > table td.is-incorrect::before {
  opacity: 1;
}
.quiz_header_table > table td.is-correct::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_header_img01.png);
}
.quiz_header_table > table td.is-incorrect::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_header_img02.png);
}
.is-mobile .quiz_header_table {
  width: auto;
  margin-top: 26px;
}
.is-mobile .quiz_header_table > table th,
.is-mobile .quiz_header_table > table td {
  border-width: 5px;
}
.is-mobile .quiz_header_table > table th {
  padding: 14px 10px 12px;
}
.is-mobile .quiz_header_table > table td {
  height: 87px;
}
.is-mobile .quiz_header_table > table td::before {
  width: 69px;
  height: 77px;
}
#header p.corp_logo {
  width: 269px;
}
@-webkit-keyframes anm_scene00_title {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
@keyframes anm_scene00_title {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
.quiz_scene00_title {
  text-align: center;
  -webkit-animation: anm_scene00_title .5s ease infinite alternate;
          animation: anm_scene00_title .5s ease infinite alternate;
}
.quiz_scene00_progress {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 300px;
  margin: 9px auto 0;
  border: 3px solid #fff;
  border-radius: 2px;
}
.quiz_scene00_progress > span {
  display: block;
  width: 0;
  background-color: #f9b9df;
  -webkit-transition: width .1s linear;
  transition: width .1s linear;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.is-mobile .quiz_scene00_progress {
  width: 60%;
}
.quiz_scene00_text {
  margin-top: 19px;
  text-align: center;
}
.quiz_scene01_title {
  font-size: 2.8em;
  font-weight: normal;
  text-align: center;
}
.quiz_scene01_title rt {
  font-size: 33%;
  margin-bottom: -6px;
}
.is-mobile .quiz_scene01_title {
  font-size: 2.2em;
}
.is-mobile .quiz_scene01_title rt {
  margin-bottom: -16px;
}
.quiz_scene01_text {
  margin-top: -6px;
  font-size: 2.2em;
  text-align: center;
}
.quiz_scene01_text rt {
  font-size: 40%;
  margin-bottom: -4px;
}
.is-mobile .quiz_scene01_text {
  font-size: 1.8em;
}
.is-mobile .quiz_scene01_text rt {
  margin-bottom: -12px;
}
.quiz_scene01_category {
  width: 456px;
  margin: 10px auto 0;
}
.quiz_scene01_category + .quiz_scene01_category {
  margin-top: 18px;
}
.is-mobile .quiz_scene01_category {
  width: auto;
  margin-top: 54px;
}
.quiz_scene01_category_title {
  font-size: 2.4em;
  font-weight: normal;
  text-align: center;
}
.quiz_scene01_category_title > span {
  display: inline-block;
  padding-left: 44px;
  background: url(/library/bousai/cafe/quiz/img/quiz_scene01_category_title_bg01.png) no-repeat left center;
  background-size: 36px;
}
.quiz_scene01_category_title rt {
  font-size: 40%;
  margin-bottom: -4px;
}
.is-mobile .quiz_scene01_category_title {
  font-size: 2em;
}
.is-mobile .quiz_scene01_category_title > span {
  padding-left: 87px;
  background-size: 77px;
}
.is-mobile .quiz_scene01_category_title rt {
  margin-bottom: -14px;
}
.quiz_scene01_category_list {
  margin: 2px -2px 0 !important;
  text-align: center;
}
.quiz_scene01_category_list > li {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  margin-top: 4px;
  padding: 0 2px;
  font-size: 1em;
}
.quiz_scene01_category_list > li:nth-child(-n+2) {
  margin-top: 0;
}
.is-mobile .quiz_scene01_category_list {
  margin: 10px -4px 0 !important;
}
.is-mobile .quiz_scene01_category_list > li {
  margin-top: 8px;
  padding: 0 4px;
}
.is-mobile .quiz_scene01_category_list > li:nth-child(-n+2) {
  margin-top: 0;
}
.quiz_scene02_title {
  display: table;
  margin: 0 auto;
  font-size: 4.4em;
  font-weight: normal;
}
.quiz_scene02_title > span {
  display: table-cell;
  vertical-align: middle;
  padding-top: .6em;
}
.quiz_scene02_title > span:first-child {
  padding-top: 0;
  padding-right: 20px;
}
.quiz_scene02_title rt {
  font-size: 25%;
  margin-bottom: -8px;
}
.is-mobile .quiz_scene02_title {
  font-size: 2.8em;
}
.is-mobile .quiz_scene02_title > span:first-child {
  padding-right: 26px;
}
.is-mobile .quiz_scene02_title > span img {
  height: 141px;
}
.is-mobile .quiz_scene02_title rt {
  margin-bottom: -18px;
}
.quiz_scene02_text {
  margin-top: 18px;
  padding: 0 190px;
  font-size: 2.2em;
  text-align: center;
}
.quiz_scene02_text rt {
  font-size: 40%;
  margin-bottom: -4px;
}
.is-mobile .quiz_scene02_text {
  margin-top: 24px;
  padding: 0;
  font-size: 1.6em;
  text-align: left;
}
.is-mobile .quiz_scene02_text rt {
  margin-bottom: -12px;
}
.quiz_scene02_button {
  width: 276px;
  margin: 18px auto 0;
}
.is-mobile .quiz_scene02_button {
  width: 520px;
  margin-top: 36px;
}
.quiz_scene03_title {
  position: relative;
  display: table;
  padding-right: 59px;
  font-size: 3.6em;
  font-weight: normal;
  opacity: 0;
  -webkit-transition: opacity .5s ease .5s;
  transition: opacity .5s ease .5s;
  pointer-events: none;
}
.quiz_scene03_title rt {
  font-size: 27%;
  margin-bottom: -11px;
}
.is-mobile .quiz_scene03_title {
  margin: 0 auto;
  padding-right: 136px;
  font-size: 3.2em;
}
.is-mobile .quiz_scene03_title rt {
  font-size: 20%;
  margin-bottom: -22px;
}
.opt-scene04 .quiz_scene03_title {
  padding-right: 0;
}
.is-mobile .opt-scene04 .quiz_scene03_title {
  padding-right: 0;
}
.is-visible .quiz_scene03_title {
  opacity: 1;
  pointer-events: auto;
}
.is-disabled .quiz_scene03_title {
  pointer-events: none !important;
}
.quiz_scene03_title_number {
  position: absolute;
  right: 0;
  bottom: .3em;
  display: table;
  width: 52px;
  height: 50px;
  line-height: 1;
  opacity: 0;
  -webkit-transition: opacity .5s ease .5s;
  transition: opacity .5s ease .5s;
  pointer-events: none;
}
.quiz_scene03_title_number > span {
  display: table-cell;
  background: url(/library/bousai/cafe/quiz/img/quiz_scene03_bg06.png) no-repeat center center;
  background-size: 100% 100%;
  text-align: center;
  vertical-align: middle;
}
.is-mobile .quiz_scene03_title_number {
  top: 6px;
  width: 118px;
  height: 113px;
}
.is-visible .quiz_scene03_title_number {
  opacity: 1;
  pointer-events: auto;
}
.is-disabled .quiz_scene03_title_number {
  pointer-events: none !important;
}
.quiz_scene03_text {
  margin-top: -6px;
  font-size: 2.1em;
  opacity: 0;
  -webkit-transition: opacity .5s ease 1s;
  transition: opacity .5s ease 1s;
  pointer-events: none;
}
.quiz_scene03_text rt {
  font-size: 45%;
  margin-bottom: -6px;
}
.is-mobile .quiz_scene03_text {
  margin-top: 21px;
  font-size: 1.6em;
}
.is-mobile .quiz_scene03_text rt {
  margin-bottom: -12px;
}
.is-visible .quiz_scene03_text {
  opacity: 1;
  pointer-events: auto;
}
.is-disabled .quiz_scene03_text {
  pointer-events: none !important;
}
.quiz_scene03_choice {
  margin: 18px -13px 0 !important;
}
.quiz_scene03_choice::after {
  content: '';
  display: block;
  clear: both;
}
.quiz_scene03_choice > li {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 33.33%;
  padding: 0 13px;
  font-size: 1em;
}
.is-mobile .quiz_scene03_choice {
  margin: 58px 0 0 !important;
}
.is-mobile .quiz_scene03_choice > li {
  float: none;
  width: auto;
  margin-top: 26px;
  padding: 0;
}
.is-mobile .quiz_scene03_choice > li:first-child {
  margin-top: 0;
}
.quiz_scene03_choice > li {
  opacity: 0;
  pointer-events: none;
}
.quiz_scene03_choice > li:nth-child(1) {
  -webkit-transition: opacity .5s ease 1.5s;
  transition: opacity .5s ease 1.5s;
}
.quiz_scene03_choice > li:nth-child(2) {
  -webkit-transition: opacity .5s ease 2s;
  transition: opacity .5s ease 2s;
}
.quiz_scene03_choice > li:nth-child(3) {
  -webkit-transition: opacity .5s ease 2.5s;
  transition: opacity .5s ease 2.5s;
}
.is-visible .quiz_scene03_choice > li {
  opacity: 1;
  pointer-events: auto;
}
.is-disabled .quiz_scene03_choice > li {
  pointer-events: none !important;
}
.quiz_scene03_result {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 173px;
  width: 240px;
  height: 100%;
  margin: 0 auto;
  background: no-repeat center center;
  background-size: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, transform .5s ease;
  transition: opacity .5s ease, transform .5s ease, -webkit-transform .5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.is-correct .quiz_scene03_result,
.is-incorrect .quiz_scene03_result {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.is-correct .quiz_scene03_result {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene03_img03.png);
}
.is-incorrect .quiz_scene03_result {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene03_img04.png);
}
.is-mobile .quiz_scene03_result {
  right: 0;
  width: 594px;
}
.quiz_scene04_button {
  margin-top: 18px;
  width: 190px;
  opacity: 0;
  -webkit-transition: opacity .5s ease 1.5s;
  transition: opacity .5s ease 1.5s;
  pointer-events: none;
}
.is-mobile .quiz_scene04_button {
  margin: 58px auto 0;
  width: 422px;
}
.is-visible .quiz_scene04_button {
  opacity: 1;
  pointer-events: auto;
}
.is-disabled .quiz_scene04_button {
  pointer-events: none !important;
}
.quiz_scene05_result {
  position: relative;
  margin-top: -71px;
  padding: 84px 111px 0 100px;
}
.quiz_scene05_result::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 219px;
  height: 100%;
  pointer-events: none;
  background: no-repeat center top;
  background-size: 100%;
}
.quiz_content_inner .quiz_scene05_result > p {
  padding-bottom: 10px;
  font-size: 4.8em;
  line-height: 1;
  color: #d3503e;
  text-align: center;
  background: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg01.png) no-repeat center bottom;
  background-size: 100%;
}
.quiz_content_inner .quiz_scene05_result > p > span {
  display: inline-block;
  font-size: 2.08em;
  line-height: 1;
}
.is-mobile .quiz_scene05_result {
  position: relative;
  margin-top: -146px;
  padding: 253px 130px 0;
}
.is-mobile .quiz_scene05_result::before {
  width: 474px;
}
.is-mobile .quiz_content_inner .quiz_scene05_result > p {
  padding-left: 50px;
  padding-bottom: 36px;
  font-size: 3em;
  background-size: 85.85%;
}
.is-mobile .quiz_content_inner .quiz_scene05_result > p > span {
  padding-right: 22px;
  font-size: 2.33em;
}
.opt-result01 .quiz_scene05_result::before {
  top: 60px;
  left: 9px;
  width: 403px;
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg02.png);
}
.is-mobile .opt-result01 .quiz_scene05_result::before {
  top: 217px;
  left: 41px;
  width: 673px;
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg02.png);
}
.opt-result02 .quiz_scene05_result::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg03.png);
}
.opt-result03 .quiz_scene05_result::before {
  background-image: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg04.png);
}
.quiz_scene05_detail {
  margin: 11px 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 206px;
  padding: 36px 0;
  background: url(/library/bousai/cafe/quiz/img/quiz_scene05_bg05.png) no-repeat center center;
  background-size: 100% 100%;
}
.is-mobile .quiz_scene05_detail {
  margin: 44px 0 0;
  min-height: 0;
  padding: 0;
  background: none;
}
.quiz_scene05_text {
  font-size: 2em;
  text-align: center;
}
.quiz_scene05_text rt {
  margin-bottom: -5px;
}
.is-mobile .quiz_scene05_text {
  font-size: 1.6em;
}
.is-mobile .quiz_scene05_text rt {
  margin-bottom: -12px;
}
.quiz_scene05_button {
  margin-top: 10px !important;
  text-align: center;
}
.quiz_scene05_button > li {
  display: inline-block;
  margin-left: 10px;
  font-size: 1em;
  vertical-align: middle;
}
.quiz_scene05_button > li:first-child {
  margin-left: 0;
}
.is-mobile .quiz_scene05_button {
  width: 420px;
  margin: 58px auto 0 !important;
}
.is-mobile .quiz_scene05_button > li {
  display: block;
  margin-top: 26px;
  margin-left: 0;
}
.is-mobile .quiz_scene05_button > li:first-child {
  margin-top: 0;
}
.quiz_advisor {
  position: absolute;
  bottom: 0;
  right: 7px;
  font-size: 1.1em;
  color: #333;
}
.is-mobile .quiz_advisor {
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}
#footer p {
  font-size: 1.2rem;
}
