/* Contents
=========================================== */
/* overwrite
--------------------------------- */
.main {
  display: block;
  max-width: none;
  padding-top: 30px;
  background-image: url(../images/main_bg-pc.png);
  background-repeat: repeat;
  background-position: center top;
  color: #6C6C6C;
  letter-spacing: 0; }
  .main b, .main em, .main strong {
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0; }
  .main--index {
    min-height: 1000px;
    padding-top: 200px;
    background-image: url(../images/index/main_bg-pc.png), url(../images/main_bg-pc.png);
    background-repeat: no-repeat, repeat;
    background-position: center top 10px, center top;
    text-align: center; }
  .main--input, .main--result {
    padding-top: 30px;
    padding-bottom: 80px; }
  .main--input {
    background: #75BBE4 none !important; }
  .main__inner {
    max-width: 1024px;
    margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .main {
      background-image: url(../images/main_bg-sp.png);
      background-repeat: repeat;
      background-position: center top;
      background-size: 107.3333333333vw auto; }
      .main--index {
        min-height: 0;
        padding: 8vw 0 13.3333333333vw;
        background-image: url(../images/index/main_bg-sp.png), url(../images/main_bg-sp.png);
        background-repeat: no-repeat, repeat;
        background-position: center top 4.5333333333vw, center top;
        background-size: 82.8vw auto, 107.3333333333vw auto; }
      .main--input, .main--result {
        padding-top: 5.3333333333vw;
        padding-bottom: 10.6666666667vw; }
        .main--input .main__inner, .main--result .main__inner {
          padding: 0; }
      .main__inner {
        padding: 0 4vw; } }

.footer {
  margin-top: 0; }

/* index page
--------------------------------- */
.index__tagline {
  margin-bottom: 1em;
  font-size: 24px;
  line-height: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #75BBE4; }
.index__title {
  margin-bottom: 1em; }
.index__lead {
  margin-bottom: 2em;
  line-height: 1.875;
  font-size: 16px; }
.index__shindan__title {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 2em;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #75BBE4;
  line-height: 1; }
  .index__shindan__title span {
    font-size: 16px; }
  .index__shindan__title em {
    font-size: 24px;
    font-family: 'Zen Maru Gothic', sans-serif; }
.index__shindan__btn {
  padding: 0 4vw; }
  .index__shindan__btn > li + li {
    margin-top: 1.75em; }
@media only screen and (max-width: 767px) {
  .index__tagline {
    margin-bottom: 1.7333333333vw;
    font-size: 6.4vw;
    line-height: 1.25; }
  .index__title {
    margin-bottom: 9.3333333333vw; }
  .index__lead {
    margin-bottom: 8vw;
    font-size: 4.2666666667vw;
    line-height: 1.5325; }
  .index__shindan__title {
    gap: 2vw;
    margin-bottom: 5.3333333333vw; }
    .index__shindan__title span {
      font-size: 4.2666666667vw; }
    .index__shindan__title em {
      font-size: 6.4vw;
      line-height: 1.25; }
  .index__shindan__btn > li + li {
    margin-top: 6vw; } }

/* input page
--------------------------------- */
.input__title {
  margin-bottom: 15px;
  text-align: center; }
  .input__title img {
    max-width: 281px; }
.input__question {
  margin-bottom: 1.35em;
  font-size: 30px;
  font-weight: 500;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #fff;
  line-height: 1.3;
  text-align: center; }
.input__form__items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  margin-bottom: 65px; }
.input__form__item {
  flex: 0 0 calc(1 / 2 * 100% - 20px); }
.input__form__radio {
  position: relative;
  transition: opacity .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 88px;
  border-radius: 44px;
  background-color: #fff;
  font-size: 16px;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 1.4;
  color: #6C6C6C;
  cursor: pointer; }
  .input__form__radio::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: solid 2px #EDA724;
    border-right: solid 2px #EDA724;
    transform: translateY(-50%) rotate(45deg); }
  .input__form__radio > span {
    text-align: center; }
    .input__form__radio > span span, .input__form__radio > span em {
      display: inline-block; }
  .input__form__radio em {
    padding-bottom: 4px;
    background: url("../images/input/wave.svg") repeat-x left bottom;
    font-size: 18px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    color: #EDA724; }
  .input__form__radio input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -10; }
  .input__form__radio:hover {
    opacity: .75; }
  .input__form__radio:has(input[type=radio]:checked) {
    background-color: rgba(255, 255, 255, 0.75);
    pointer-events: none; }
@media only screen and (max-width: 767px) {
  .input__title img {
    max-width: 44.4vw; }
  .input__question {
    margin-bottom: 1em;
    font-size: 7.2vw; }
  .input__form__items {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4.2666666667vw;
    margin-bottom: 10.6666666667vw; }
  .input__form__item {
    flex: 0 0 auto; }
  .input__form__radio {
    height: 16vw;
    font-size: 3.4666666667vw; }
    .input__form__radio em {
      padding-bottom: 0.8vw;
      background-size: auto 0.6666666667vw;
      font-size: 4.8vw; }
    .input__form__radio::before {
      width: 2.1333333333vw;
      height: 2.1333333333vw;
      right: 3.4666666667vw; } }

/* result page
--------------------------------- */
.result__title {
  margin-bottom: 30px;
  line-height: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-align: center; }
  .result__title h1, .result__title h2 {
    margin: .2em 0 .5em;
    font-size: 24px;
    font-weight: 700;
    color: #75BBE4; }
  .result__title p {
    font-size: 18px; }
.result__subtitle {
  margin-bottom: 50px;
  line-height: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-align: center; }
  .result__subtitle h2 {
    margin: .65em 0;
    font-size: 18px;
    line-height: 1.5; }
    .result__subtitle h2 em {
      font-size: 30px;
      font-family: 'Zen Maru Gothic', sans-serif;
      color: #75BBE4; }
      .result__subtitle h2 em span {
        font-size: 16px; }
  .result__subtitle p {
    margin: 0;
    font-size: 18px; }
  .result__subtitle p.c-store__att {
    font-size: 14px; }
.result__product {
  margin-bottom: 90px; }
  .result__product__title {
    margin-bottom: 1em;
    padding: .75em;
    background: #75BBE4;
    border-radius: 20px;
    font-size: 30px;
    line-height: 1.3;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #fff;
    text-align: center; }
    .result__product__title span {
      font-size: 16px; }
  .result__product__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px 50px;
    margin-bottom: 30px;
    font-family: 'Zen Maru Gothic', sans-serif; }
  .result__product__item {
    flex: 0 0 auto;
    text-align: center; }
  .result__product__image {
    margin-bottom: 15px; }
    .result__product__image img {
      height: 178px;
      width: auto; }
  .result__product__body h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .25em;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5; }
  .result__product__body > ul > li > a {
    position: relative;
    display: inline-flex;
    gap: 8px;
    padding: 7px 20px 7px 0;
    border-bottom: solid 2px #EDA724;
    align-items: center;
    font-size: 12px;
    color: #EDA724;
    line-height: 1;
    text-decoration: none; }
    .result__product__body > ul > li > a::before {
      content: "";
      position: absolute;
      top: 50%;
      right: 2px;
      width: 8px;
      height: 8px;
      border-top: solid 2px #EDA724;
      border-right: solid 2px #EDA724;
      transform: translateY(-50%) rotate(45deg); }
  .result__product__advice {
    position: relative;
    padding: 30px;
    border: solid 2px #75BBE4;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center; }
    .result__product__advice dt {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translate(-50%, -50%);
      display: inline-block;
      background: #fff;
      padding: 0 2em;
      font-size: 16px;
      font-weight: 700;
      white-space: nowrap;
      color: #75BBE4;
      line-height: 1; }
  .result__product__notes {
    font-size: 12px;
    text-align: center;
    margin-bottom: 50px; }
.result__howto__items {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 100px; }
.result__howto__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
  padding-right: 60px;
  color: #6C6C6C;
  text-decoration: none; }
  .result__howto__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: solid 2px #75BBE4;
    border-right: solid 2px #75BBE4;
    transform: translateY(-50%) rotate(45deg); }
.result__howto__image {
  flex: 0 0 227px; }
  .result__howto__image img {
    width: 100%;
    height: auto;
    border-radius: 20px; }
.result__howto__body {
  flex: 1 0 0%;
  font-size: 18px;
  line-height: 1.66; }
.result__other-type {
  margin-bottom: 50px;
  text-align: center; }
.result__once-again {
  text-align: center; }
@media only screen and (max-width: 767px) {
  .result__title {
    margin-bottom: 6.4vw; }
    .result__title img {
      width: 6.9333333333vw;
      height: auto; }
    .result__title h1, .result__title h2 {
      font-size: 5.3333333333vw; }
    .result__title p {
      font-size: 4.2666666667vw; }
  .result__subtitle {
    margin-bottom: 8.6666666667vw; }
    .result__subtitle h2 {
      margin: 0 0 .5em;
      font-size: 4.2666666667vw;
      line-height: 1.3; }
      .result__subtitle h2 em {
        font-size: 7.2vw;
        font-family: 'Zen Maru Gothic', sans-serif; }
        .result__subtitle h2 em span {
          font-size: 4.2666666667vw; }
    .result__subtitle p {
      font-size: 4.2666666667vw; }
  .result__product {
    margin-bottom: 16vw; }
    .result__product__title {
      margin-bottom: 5.3333333333vw;
      padding: 4vw 2.6666666667vw;
      border-radius: 2.6666666667vw;
      font-size: 9.3333333333vw; }
      .result__product__title span {
        font-size: 4.2666666667vw; }
    .result__product__items {
      flex-direction: column;
      gap: 4vw;
      margin-bottom: 4vw; }
    .result__product__item {
      display: flex;
      gap: 2.6666666667vw;
      align-items: center;
      text-align: left; }
    .result__product__image {
      flex: 0 0 38.6666666667vw;
      margin-bottom: 0;
      text-align: center; }
      .result__product__image img {
        max-height: 23.7333333333vw;
        max-width: none; }
    .result__product__body {
      flex: 1 0 0%; }
      .result__product__body h3 {
        display: block;
        font-size: 5.3333333333vw;
        line-height: 1.25; }
      .result__product__body ul a {
        gap: 1.6vw;
        padding: 7px 20px 7px 0;
        font-size: 3.2vw; }
    .result__product__advice {
      padding: 4vw;
      font-size: 4.2666666667vw;
      border-radius: 2.6666666667vw; }
      .result__product__advice dt {
        padding: 0 1em; }
      .result__product__advice dd {
        line-height: 1.56; }
    .result__product__notes {
      font-size: 3.2vw;
      line-height: 1.4;
      text-align: left;
      margin-bottom: 10vw; }
  .result__howto__items {
    gap: 13.3333333333vw;
    margin-bottom: 14.6666666667vw; }
  .result__howto__link {
    gap: 4vw;
    padding-right: 20px; }
  .result__howto__image {
    flex: 0 0 34.6666666667vw; }
    .result__howto__image img {
      border-radius: 2.6666666667vw; }
  .result__howto__body {
    font-size: 4.2666666667vw;
    line-height: 1.4; }
  .result__other-type {
    margin-bottom: 8vw; } }

/* magnific-popup
--------------------------------- */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #2C3D40;
  opacity: 0.95; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: none;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 25px;
    padding-right: 25px; } }
.mfp-close-movie {
  position: absolute;
  right: 0;
  top: -50px;
  width: 36px;
  height: 36px;
  cursor: pointer; }
  .mfp-close-movie--image {
    top: -20px; }
  .mfp-close-movie::before, .mfp-close-movie::after {
    position: absolute;
    top: 17px;
    left: -3px;
    display: block;
    content: "";
    width: 44px;
    height: 3px;
    background-color: #fff; }
  .mfp-close-movie::before {
    transform: rotate(45deg); }
  .mfp-close-movie::after {
    transform: rotate(-45deg); }

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8; }

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0; }

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0; }

/* store
--------------------------------- */
/* store */
.c-store {
  display: none;
  background-color: transparent; }
  .c-store__btns > li a {
    display: block; }
  .c-store-wrap {
    position: relative;
    z-index: 2; }
  @media (min-width: 768px) {
    .c-store {
      position: absolute;
      left: 50%;
      bottom: 100%;
      transform: translateX(-50%);
      padding: 0 0 25px; }
      .c-store__inner {
        position: relative;
        padding: 10px;
        background-color: #EDA724;
        box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25); }
        .c-store__inner::after {
          position: absolute;
          bottom: -12px;
          left: 50%;
          transform: translateX(-50%);
          content: "";
          display: inline-block;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 12px 8px 0 8px;
          border-color: #EDA724 transparent transparent transparent; }
      .c-store__btns {
        display: flex; }
        .c-store__btns > li {
          width: 210px; }
          .c-store__btns > li + li {
            margin-left: 10px; }
      .c-store__att {
        margin-top: 10px;
        color: #fff;
        font-size: 12px;
        line-height: 1.4;
        text-align: left; } }
  @media only screen and (max-width: 767px) {
    .mfp-content .c-store {
      display: block; }
    .c-store__inner {
      padding: 40px 20px 20px;
      background-color: #EDA724; }
    .c-store__title {
      margin-bottom: 40px;
      color: #fff;
      font-size: 22px;
      text-align: center;
      line-height: 1; }
    .c-store__btns {
      margin-bottom: 20px; }
      .c-store__btns li + li {
        margin-top: 25px; }
    .c-store__att {
      font-size: 12px;
      margin-bottom: 20px;
      color: #fff; } }

/* btn
--------------------------------- */
.c-btn {
  position: relative;
  transition: opacity .3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 450px;
  height: 56px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 28px;
  background-color: #EDA724;
  color: #fff;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  outline: none; }
  .c-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: translateY(-50%) rotate(45deg); }
  .c-btn.is-disabled {
    pointer-events: none;
    opacity: .5; }
  .c-btn:hover {
    opacity: .75; }
  .c-btn--notlogin {
    background-color: #75BBE4; }
  .c-btn--prev {
    width: auto;
    min-width: 220px;
    padding: 0 50px;
    background-color: #fff;
    border: solid 2px #75BBE4;
    color: #75BBE4; }
    .c-btn--prev::before {
      right: auto;
      left: 20px;
      border-top: solid 2px #75BBE4;
      border-left: solid 2px #75BBE4;
      transform: translateY(-50%) rotate(-45deg); }
  @media only screen and (max-width: 767px) {
    .c-btn {
      height: 10.6666666667vw;
      max-width: none;
      border-radius: 5.3333333333vw;
      font-size: 3.7333333333vw; }
      .c-btn--close {
        background-color: #cd8c11;
        background-image: url(../images/result/icn_close-sp.png);
        background-repeat: no-repeat;
        background-position: left 20px center;
        background-size: 22px; }
        .c-btn--close::before {
          display: none; } }

/* Utility
=========================================== */
/* display */
@media (min-width: 768px) {
  .u-forsp {
    display: none !important; } }
@media print {
  .u-forsp {
    display: none !important; } }

@media only screen and (max-width: 767px) {
  .u-forpc {
    display: none !important; } }

/* image */
img.u-liquid {
  width: 100%;
  height: auto; }
img.u-liquid--mw {
  width: auto;
  max-width: 100%; }
@media only screen and (max-width: 767px) {
  img.u-liquid--sp {
    width: 100%;
    height: auto; } }

/* others */
.u-oro {
  transition: opacity .3s ease; }
  .u-oro:hover {
    opacity: .75; }

/* font */
.u-ff-zenmaru {
  font-family: 'Zen Maru Gothic', sans-serif; }

/* margin */
.u-mt-0 {
  margin-top: 0 !important; }
.u-mt-5 {
  margin-top: 5px !important; }
.u-mt-10 {
  margin-top: 10px !important; }
.u-mt-15 {
  margin-top: 15px !important; }
.u-mt-20 {
  margin-top: 20px !important; }
.u-mt-25 {
  margin-top: 25px !important; }
.u-mt-30 {
  margin-top: 30px !important; }
.u-mt-40 {
  margin-top: 40px !important; }
.u-mt-50 {
  margin-top: 50px !important; }
.u-mt-60 {
  margin-top: 60px !important; }
.u-mt-70 {
  margin-top: 70px !important; }
.u-mt-80 {
  margin-top: 80px !important; }
.u-mt-90 {
  margin-top: 90px !important; }
.u-mt-100 {
  margin-top: 100px !important; }

.u-mb-0 {
  margin-bottom: 0 !important; }
.u-mb-5 {
  margin-bottom: 5px !important; }
.u-mb-10 {
  margin-bottom: 10px !important; }
.u-mb-15 {
  margin-bottom: 15px !important; }
.u-mb-20 {
  margin-bottom: 20px !important; }
.u-mb-25 {
  margin-bottom: 25px !important; }
.u-mb-30 {
  margin-bottom: 30px !important; }
.u-mb-40 {
  margin-bottom: 40px !important; }
.u-mb-50 {
  margin-bottom: 50px !important; }
.u-mb-60 {
  margin-bottom: 60px !important; }
.u-mb-70 {
  margin-bottom: 70px !important; }
.u-mb-80 {
  margin-bottom: 80px !important; }
.u-mb-90 {
  margin-bottom: 90px !important; }
.u-mb-100 {
  margin-bottom: 100px !important; }

.u-ml-auto {
  margin-left: auto !important; }
.u-ml-0 {
  margin-left: 0 !important; }
.u-ml-5 {
  margin-left: 5px !important; }
.u-ml-10 {
  margin-left: 10px !important; }
.u-ml-15 {
  margin-left: 15px !important; }
.u-ml-20 {
  margin-left: 20px !important; }
.u-ml-25 {
  margin-left: 25px !important; }
.u-ml-30 {
  margin-left: 30px !important; }
.u-ml-40 {
  margin-left: 40px !important; }
.u-ml-50 {
  margin-left: 50px !important; }
.u-ml-60 {
  margin-left: 60px !important; }
.u-ml-70 {
  margin-left: 70px !important; }
.u-ml-80 {
  margin-left: 80px !important; }
.u-ml-90 {
  margin-left: 90px !important; }
.u-ml-100 {
  margin-left: 100px !important; }

.u-mr-auto {
  margin-right: auto !important; }
.u-mr-0 {
  margin-right: 0 !important; }
.u-mr-5 {
  margin-right: 5px !important; }
.u-mr-10 {
  margin-right: 10px !important; }
.u-mr-15 {
  margin-right: 15px !important; }
.u-mr-20 {
  margin-right: 20px !important; }
.u-mr-25 {
  margin-right: 25px !important; }
.u-mr-30 {
  margin-right: 30px !important; }
.u-mr-40 {
  margin-right: 40px !important; }
.u-mr-50 {
  margin-right: 50px !important; }
.u-mr-60 {
  margin-right: 60px !important; }
.u-mr-70 {
  margin-right: 70px !important; }
.u-mr-80 {
  margin-right: 80px !important; }
.u-mr-90 {
  margin-right: 90px !important; }
.u-mr-100 {
  margin-right: 100px !important; }

@media only screen and (max-width: 767px) {
  /* margin */
  .u-mt-0--sp {
    margin-top: 0 !important; }
  .u-mt-5--sp {
    margin-top: 1.3333333333vw !important; }
  .u-mt-10--sp {
    margin-top: 2.6666666667vw !important; }
  .u-mt-15--sp {
    margin-top: 4vw !important; }
  .u-mt-20--sp {
    margin-top: 5.3333333333vw !important; }
  .u-mt-25--sp {
    margin-top: 6.6666666667vw !important; }
  .u-mt-30--sp {
    margin-top: 8vw !important; }
  .u-mt-40--sp {
    margin-top: 10.6666666667vw !important; }
  .u-mt-50--sp {
    margin-top: 13.3333333333vw !important; }
  .u-mt-60--sp {
    margin-top: 16vw !important; }
  .u-mt-70--sp {
    margin-top: 18.6666666667vw !important; }
  .u-mt-80--sp {
    margin-top: 21.3333333333vw !important; }
  .u-mt-90--sp {
    margin-top: 24vw !important; }
  .u-mt-100--sp {
    margin-top: 26.6666666667vw !important; }

  .u-mb-0--sp {
    margin-bottom: 0 !important; }
  .u-mb-5--sp {
    margin-bottom: 1.3333333333vw !important; }
  .u-mb-10--sp {
    margin-bottom: 2.6666666667vw !important; }
  .u-mb-15--sp {
    margin-bottom: 4vw !important; }
  .u-mb-20--sp {
    margin-bottom: 5.3333333333vw !important; }
  .u-mb-25--sp {
    margin-bottom: 6.6666666667vw !important; }
  .u-mb-30--sp {
    margin-bottom: 8vw !important; }
  .u-mb-40--sp {
    margin-bottom: 10.6666666667vw !important; }
  .u-mb-50--sp {
    margin-bottom: 13.3333333333vw !important; }
  .u-mb-60--sp {
    margin-bottom: 16vw !important; }
  .u-mb-70--sp {
    margin-bottom: 18.6666666667vw !important; }
  .u-mb-80--sp {
    margin-bottom: 21.3333333333vw !important; }
  .u-mb-90--sp {
    margin-bottom: 24vw !important; }
  .u-mb-100--sp {
    margin-bottom: 26.6666666667vw !important; }

  .u-ml-auto--sp {
    margin-left: auto !important; }
  .u-ml-0--sp {
    margin-left: 0 !important; }
  .u-ml-5--sp {
    margin-left: 1.3333333333vw !important; }
  .u-ml-10--sp {
    margin-left: 2.6666666667vw !important; }
  .u-ml-15--sp {
    margin-left: 41.3333333333vw !important; }
  .u-ml-20--sp {
    margin-left: 5.3333333333vw !important; }
  .u-ml-25--sp {
    margin-left: 6.6666666667vw !important; }
  .u-ml-30--sp {
    margin-left: 8vw !important; }
  .u-ml-40--sp {
    margin-left: 10.6666666667vw !important; }
  .u-ml-50--sp {
    margin-left: 13.3333333333vw !important; }
  .u-ml-60--sp {
    margin-left: 16vw !important; }
  .u-ml-70--sp {
    margin-left: 18.6666666667vw !important; }
  .u-ml-80--sp {
    margin-left: 21.3333333333vw !important; }
  .u-ml-90--sp {
    margin-left: 24vw !important; }
  .u-ml-100--sp {
    margin-left: 26.6666666667vw !important; }

  .u-mr-auto--sp {
    margin-right: auto !important; }
  .u-mr-0--sp {
    margin-right: 0 !important; }
  .u-mr-5--sp {
    margin-right: 1.3333333333vw !important; }
  .u-mr-10--sp {
    margin-right: 2.6666666667vw !important; }
  .u-mr-15--sp {
    margin-right: 4vw !important; }
  .u-mr-20--sp {
    margin-right: 5.3333333333vw !important; }
  .u-mr-25--sp {
    margin-right: 6.6666666667vw !important; }
  .u-mr-30--sp {
    margin-right: 8vw !important; }
  .u-mr-40--sp {
    margin-right: 10.6666666667vw !important; }
  .u-mr-50--sp {
    margin-right: 13.3333333333vw !important; }
  .u-mr-60--sp {
    margin-right: 16vw !important; }
  .u-mr-70--sp {
    margin-right: 18.6666666667vw !important; }
  .u-mr-80--sp {
    margin-right: 21.3333333333vw !important; }
  .u-mr-90--sp {
    margin-right: 24vw !important; }
  .u-mr-100--sp {
    margin-right: 26.6666666667vw !important; } }

/*# sourceMappingURL=style.css.map */
