@charset "UTF-8";
/* -----------------------------------------------
* load only (is_page('result'))
-------------------------------------------------- */
.p-result {
  margin: 80px 0;
  padding: 0 12px;
}

.p-result__inner {
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 56px 40px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4fcff), to(#ddf2ff));
  background: linear-gradient(180deg, #f4fcff 0%, #ddf2ff 100%);
}
.p-result__title {
  color: #5A5351;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}
.p-result__title span {
  color: #BB271A;
  font-size: 32px;
  font-weight: 700;
  vertical-align: sub;
}
.p-result__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.p-result__wrap {
  width: 50%;
  position: relative;
}
.p-result__wrap:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 13.5px solid #ffffff;
  border-bottom: 0;
  -webkit-filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-result__block {
  background: #fff;
  width: 100%;
  border-radius: 8px;
  padding: 16px 20px 8px;
  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;
  gap: 20px;
}
.p-result__block__text {
  color: #5A5351;
  font-size: 18px;
  line-height: 1.2;
}
.p-result__block__price {
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.p-result__block__price span {
  font-size: 16px;
  font-weight: 400;
}
.p-result__block__before {
  margin-bottom: 29.5px;
}
.p-result__block__before .p-result__block__price {
  color: #CCCCCC;
  position: relative;
}

.p-result__block__before .p-result__block__price:after {
  content: "";
  display: block;
  background-color: #CCCCCC;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-result__block__after .p-result__block__price {
  color: #BB271A;
}

.p-result__graph {
  width: 340px;
  height: 170px;
  overflow: hidden;
  position: relative;
  margin-inline: 50px;
}
.p-result__graph img {
  pointer-events: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: -webkit-transform 1s 0.5s ease;
  transition: -webkit-transform 1s 0.5s ease;
  transition: transform 1s 0.5s ease;
  transition: transform 1s 0.5s ease, -webkit-transform 1s 0.5s ease;
}

.p-result__graph__detail {
  width: 100%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-result__graph__text {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.p-result__graph__price {
  font-family: Roboto, sans-serif;
  color: #BB271A;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.p-result__graph__price span {
  font-size: 16px;
}
.p-result__text {
  color: #5A5351;
  font-size: 10px;
}
.p-result .btn-container {
  width: 347px;
  margin: 0 auto;
}
.p-result .btn-container .btn-white {
  background-color: #fff;
  border-radius: 44px;
  display: block;
  padding: 5px;
  text-decoration: none;
  position: relative;
  border: 4px solid #BB271A;
}
.p-result .btn-container .btn-white .btn-wrap {
  display: block;
  text-align: left;
}

.p-result .btn-container .btn-white .btn-wrap:after {
  content: "";
  background: #CC0000;
  position: absolute;
  width: 0;
  height: 84%;
  left: 9%;
  top: 8.5%;
  border-radius: 0 40px 40px 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.p-result .btn-container .btn-white .btn-wrap .icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}

.p-result .btn-container .btn-white .btn-wrap .icon img {
  width: 52px;
  height: 52px;
}
.p-result .btn-container .btn-white .btn-wrap .text {
  font-size: 18px;
  color: #BB271A;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-left: 24px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 940px) and (min-width: 769px) {
  .l-container {
    max-width: 95.7446808511vw;
  }
  .p-result__inner {
    padding: 56px 20px;
  }
  .p-result__block {
    padding: 16px 15px 8px;
    gap: 15px;
  }
  .p-result__block__text {
    font-size: 16px;
  }
  .p-result__block__price {
    font-size: 26px;
  }
  .p-result__block__price span {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {

  .p-result {
    margin: 0 0 min(21.3333333333vw, 240px);
    padding: 0;
  }
  .no-header .p-result {
    margin-top: min(21.3333333333vw, 240px);
  }
  .p-result__inner {
    margin-bottom: min(5.3333333333vw, 60px);
    padding: min(5.3333333333vw, 60px) min(4.6666666667vw, 52.5px) min(10.6666666667vw, 120px);
    border-radius: 0;
  }
  .p-result__title {
    font-size: min(4.8vw, 54px);
    margin-bottom: min(8vw, 90px);
  }
  .p-result__title span {
    font-size: min(8.5333333333vw, 96px);
  }
  .p-result__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: min(8.6666666667vw, 97.5px);
    margin-bottom: min(11.2vw, 114px);
  }
  .p-result__wrap {
    width: 100%;
    padding: 0 min(0.6666666667vw, 7.5px);
  }
  .p-result__wrap:before {
    border-right-width: min(2.4vw, 27px);
    border-left-width: min(2.4vw, 27px);
    border-top-width: min(3.6vw, 40.5px);
    -webkit-filter: drop-shadow(0 min(1.0666666667vw, 12px) min(5.3333333333vw, 60px) rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0 min(1.0666666667vw, 12px) min(5.3333333333vw, 60px) rgba(0, 0, 0, 0.1));
  }
  .p-result__block {
    border-radius: min(2.1333333333vw, 24px);
    padding: min(4.2666666667vw, 48px) min(4.5333333333vw, 51px) min(2.1333333333vw, 24px);
    gap: min(2.6666666667vw, 30px);
  }
  .p-result__block__text {
    font-size: min(3.7333333333vw, 42px);
  }
  .p-result__block__price {
    font-size: min(6.9333333333vw, 78px);
    white-space: nowrap;
  }
  .p-result__block__price span {
    font-size: min(4.2666666667vw, 48px);
  }
  .p-result__block__before {
    margin-bottom: min(7.8666666667vw, 88.5px);
  }
  .p-result__block__before .p-result__block__price:after {
    height: min(0.5333333333vw, 6px);
  }
  .p-result__graph {
    width: 100%;
    height: min(45.3333333333vw, 510px);
  }
  .p-result__graph__text {
    font-size: min(3.7333333333vw, 42px);
  }
  .p-result__graph__price {
    font-size: min(8vw, 90px);
  }
  .p-result__graph__price span {
    font-size: min(4.2666666667vw, 48px);
  }
  .p-result__text {
    font-size: min(2.6666666667vw, 30px);
    padding: 0 min(0.6666666667vw, 7.5px);
  }
  .p-result .btn-container {
    width: min(92.5333333333vw, 1041px);
  }
  .p-result .btn-container .btn-white {
    border-radius: min(11.7333333333vw, 132px);
    padding: min(1.3333333333vw, 15px);
    border-width: min(1.0666666667vw, 12px);
  }
  .p-result .btn-container .btn-white .btn-wrap .icon img {
    width: min(13.8666666667vw, 156px);
    height: min(13.8666666667vw, 156px);
  }
  .p-result .btn-container .btn-white .btn-wrap .text {
    font-size: min(4.8vw, 54px);
    margin-left: min(6.4vw, 51px);
  }
}
@media (any-hover: hover) {
  .p-result .btn-container .btn-white:hover .btn-wrap:after {
    width: 304px;
  }
  .p-result .btn-container .btn-white:hover .btn-wrap .text {
    color: #fff;
  }
}