body {
  min-height: 100vh;
  background-image: url(/images/bg.png);
  background-size: contain;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

article.start {
  display: block;
}

article.shindan {
  display: none;
}

footer {
  width: 100%;
  text-align: center;
  background: #FFF;
  font-size: 10px;
}

footer .footerInner {
  padding: 12px 0;
}

footer .footerInner .sepalator {
  font-size: 11px;
}

footer .footerInner a {
  color: #000;
  text-decoration: none;
}

footer .copyright {
  padding: 5px;
  background-color: #000;
  color: #FFF;
}

p {
  margin: 26px 0;
}

p.alignLeft {
  max-width: 650px;
  margin: 18px auto 40px;
  font-size: 16px;
  text-align: left;
  line-height: 30px;
}

@media screen and (max-width: 650px) {
  p.alignLeft {
    font-size: 14px;
    line-height: 22px;
  }
}

.main {
  display: block;
  overflow: hidden;
}

.sp_hide {
  display: none;
}

@media screen and (max-width: 650px) {
  .sp_hide {
    display: block;
  }
  .pc_hide {
    display: none;
  }
}

article {
  width: 920px;
  margin: 80px auto;
  border-radius: 30px;
  background-color: #FFF;
}

@media screen and (max-width: 650px) {
  article {
    margin: 40px auto;
    width: 95%;
  }
}

.scene {
  position: relative;
}

.scene .sceneHeader {
  position: absolute;
  top: 16px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media screen and (max-width: 650px) {
  .scene .sceneHeader {
    width: 25%;
    top: 18px;
  }
}

.scene .sceneHeader a {
  display: block;
  width: 178px;
}

.scene .sceneHeader a.small {
  width: 120px;
}

@media screen and (max-width: 650px) {
  .scene .sceneHeader a {
    width: 100%;
  }
}

.scene .sceneHeader a img {
  width: 100%;
}

.scene .titleImage {
  position: absolute;
  width: 394px;
  top: 77px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.scene.start {
  padding-top: 65%;
  background-image: url(/images/start_pc.png);
  background-repeat: no-repeat;
  background-size: 101%;
}

@media screen and (max-width: 650px) {
  .scene.start {
    padding-top: 95%;
    background-image: url(/images/start_sp.png);
  }
}

.scene.shindan {
  padding-top: 32%;
  background-image: url(/images/shindan_pc.png);
  background-repeat: no-repeat;
  background-size: 101%;
}

@media screen and (max-width: 650px) {
  .scene.shindan {
    padding-top: 55%;
    background-image: url(/images/shindan_sp.png);
  }
}

.contentsWrap {
  padding: 19px 43px;
}

@media screen and (max-width: 650px) {
  .contentsWrap {
    padding: 19px 25px;
  }
}

.contentsWrap .center {
  text-align: center;
}

.contentsWrap .small {
  font-size: 16px;
}

.contentsWrap .tips {
  margin: 15px;
}

.contentsWrap .hr {
  width: 100%;
  text-align: center;
}

.contentsWrap .hr img {
  max-width: 290px;
}

@media screen and (max-width: 650px) {
  .contentsWrap .hr img {
    max-width: 50%;
  }
}

.contentsWrap .hr_long img {
  max-width: 596px;
}

@media screen and (max-width: 650px) {
  .contentsWrap .hr_long img {
    max-width: 60%;
  }
}

@media screen and (max-width: 650px) {
  .contentsWrap .small {
    font-size: 12px;
  }
  .contentsWrap .hr_long img {
    max-width: 60%;
  }
}

.btn {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 30px;
  background-color: #A32600;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 650px) {
  .btn {
    max-width: 95%;
    font-size: 17px;
    padding: 13px 0;
  }
}

.btn::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 19px;
  margin-top: -4px;
}

.contentsWrap_shindan {
  position: relative;
  text-align: center;
}

.contentsWrap_shindan .question {
  display: none;
}

.contentsWrap_shindan .question.active {
  display: block;
}

.contentsWrap_shindan .question_title {
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 650px) {
  .contentsWrap_shindan .question_title {
    font-size: 14px;
  }
}

.contentsWrap_shindan .choices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  padding: 21px 0;
  max-width: 600px;
}

@media screen and (max-width: 650px) {
  .contentsWrap_shindan .choices {
    display: block;
    padding-bottom: 65px;
  }
}

.contentsWrap_shindan .choices .choice {
  width: 290px;
  padding: 18px 0;
  margin-bottom: 15px;
  border: solid 2px #000;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

@media screen and (max-width: 650px) {
  .contentsWrap_shindan .choices .choice {
    max-width: 250px;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.contentsWrap_shindan .progress_icon {
  position: absolute;
  bottom: 24px;
  right: 20px;
}

.contentsWrap_shindan .progress_icon img {
  width: 60px;
}

.contentsWrap_result {
  display: none;
  text-align: center;
  font-size: 20px;
}

.contentsWrap_result .result {
  display: none;
}

@media screen and (max-width: 650px) {
  .contentsWrap_result {
    font-size: 14px;
  }
}

.contentsWrap_result .resultImage {
  width: 100%;
  max-width: 640px;
  padding: 20px 5px;
}

.contentsWrap_result .resultImage.smallSize {
  max-width: 50%;
}

.contentsWrap_result .resultImage.mediumSize {
  max-width: 70%;
}

.contentsWrap_result .resultTitle {
  max-width: 600px;
  margin: 0 auto;
  font-weight: bold;
}

.contentsWrap_result .resultTitle p {
  margin: 5px 0;
}

.contentsWrap_result .resultTitle .resultName {
  padding: 10px 0;
  border-radius: 10px;
  border: solid 2px #A32600;
  color: #A32600;
}

.contentsWrap_result .resultName {
  font-size: 40px;
}

@media screen and (max-width: 650px) {
  .contentsWrap_result .resultName {
    font-size: 24px;
  }
}

.contentsWrap_result .heading {
  margin: 5px 0;
  color: #A32600;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 650px) {
  .contentsWrap_result .heading {
    font-size: 18px;
  }
}

.shareBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 650px) {
  .shareBtns {
    width: 100%;
  }
}

.shareBtns .shareBtn {
  width: calc(50% - 5px);
  margin-bottom: 10px;
  padding: 12px 0;
  cursor: pointer;
  border-radius: 30px;
}

.shareBtns .shareBtn a {
  display: block;
  padding-left: 30px;
  text-decoration: none;
}

.shareBtns .shareBtn span {
  position: relative;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
}

.shareBtns .shareBtn span img {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: -20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 650px) {
  .shareBtns .shareBtn span img {
    width: 20px;
    height: 20px;
  }
}

.shareBtns .shareBtn_tw {
  width: 100%;
  background: #4B9BE8;
}

.shareBtns .shareBtn_fb {
  background: #3975E6;
}

.shareBtns .shareBtn_fb span img {
  width: 33px;
  height: 33px;
}

@media screen and (max-width: 650px) {
  .shareBtns .shareBtn_fb span img {
    width: 30px;
    height: 30px;
  }
}

.shareBtns .shareBtn_ln {
  background: #00B900;
}

.orderBtn {
  max-width: 400px;
  margin: 30px auto;
  text-align: center;
  background: #A32600;
  padding: 10px 0;
  border-radius: 100px;
  font-weight: bold;
}

.orderBtn .orderLink {
  color: #FFF;
  text-decoration: none;
}

.orderTextLarge {
  font-size: 18px;
}

.orderTextMiddle {
  font-size: 16px;
}

.orderTextSmall {
  margin-top: 3px;
  font-size: 14px;
}
/*# sourceMappingURL=style.css.map */