@charset "UTF-8";
/* Scss Document */
/*------------------------------mixin フォント------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/Inter-Bold.woff2") format("woff2"), url("../font/Inter-Bold.woff") format("woff");
}
/*------------------------------mixin bg------------------------------*/
/*------------------------------mixin flex------------------------------*/
/*------------------------------基本設定------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 0.694444444vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  letter-spacing: 0em;
  color: #333333;
  font-size: 1.3rem;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  body {
    background-color: #F8F9FA;
    font-size: 1.4rem;
  }
}

img, source {
  width: 100%;
  height: 100%;
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

main {
  flex: 1;
  width: 100vw;
}

.pc-only {
  display: none;
}
@media only screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media only screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.bold {
  font-weight: bold;
}

section {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

picture {
  display: block;
}

a {
  text-decoration: none;
  color: #0085DE;
  transition: color 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

.orange {
  color: #DE8300;
}

.container {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 90rem;
    padding: 0 2rem;
    margin: 0 auto;
  }
}

.main-content {
  padding: 4rem 2.5rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .main-content {
    background-color: #FFFFFF;
    border-radius: 1.2rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.05);
    margin: 2rem auto 4rem;
    padding: 3rem 5rem 4rem;
  }
}

.article-header {
  padding-bottom: 4rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .article-header {
    padding-bottom: 5rem;
  }
}
.article-header::before {
  content: "PR";
  font-size: 1rem;
  position: absolute;
  right: -0.5rem;
  top: -2rem;
  padding: 0 0.5rem;
  border: 0.1rem solid #ccc;
}
@media only screen and (min-width: 768px) {
  .article-header::before {
    font-size: 1.2rem;
    top: 0;
    right: 0;
    padding: 0 1rem;
  }
}
.article-header h1 {
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .article-header h1 {
    margin-bottom: 3rem;
  }
}
.article-header h1 .main {
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .article-header h1 .main {
    font-size: 4rem;
  }
}
.article-header h1 .main .small {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .article-header h1 .main .small {
    font-size: 2.4rem;
  }
}
.article-header h1 .sub {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .article-header h1 .sub {
    font-size: 2.4rem;
  }
}

.feature {
  background: #0085DE;
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  width: calc(100% + 5rem);
  transform: translateX(-2.5rem);
}
@media only screen and (min-width: 768px) {
  .feature {
    width: 100%;
    padding: 3rem 6rem;
    transform: translateX(0);
  }
}
.feature h2 {
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .feature h2 {
    font-size: 1.8rem;
  }
}
.feature h2 .sub {
  display: inline-block;
  position: relative;
}
.feature h2 .sub::before, .feature h2 .sub::after {
  content: "";
  display: block;
  background: #FFFFFF;
  width: 0.1rem;
  height: 80%;
  transform: rotate(-30deg);
  position: absolute;
  left: -1rem;
  bottom: 0.25rem;
}
.feature h2 .sub::after {
  left: auto;
  right: -1rem;
  transform: rotate(30deg);
}
.feature h2 .main {
  color: #ffdf5a;
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .feature h2 .main {
    font-size: 2.8rem;
  }
}
.feature .content {
  margin-top: 2rem;
  background: #FFFFFF;
  padding: 2rem;
}
@media only screen and (min-width: 768px) {
  .feature .content {
    padding: 3rem;
  }
}
.feature .content figure {
  width: 25rem;
  margin: 0 auto;
}
.feature .content .table {
  margin-top: 1rem;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .feature .content .table {
    display: flex;
    flex: start;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.3rem;
  }
}
.feature .content .table dl {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.1rem solid #E5E7EB;
  padding: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .feature .content .table dl {
    width: 50%;
    padding: 1rem 0.5rem;
  }
}
.feature .content .table dl dt {
  width: 38%;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .feature .content .table dl dt {
    width: 30%;
    text-align: left;
  }
}
.feature .content .table dl dd {
  width: 62%;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .feature .content .table dl dd {
    width: 70%;
  }
}
.feature .content .strength_weakness {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .feature .content .strength_weakness {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .feature .content .strength_weakness .strength {
    width: 50%;
  }
}
.feature .content .strength_weakness .strength h3 {
  background: #0085DE;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  border-radius: 999px;
}
.feature .content .strength_weakness .strength ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
.feature .content .strength_weakness .strength ul li {
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  color: #0085DE;
}
.feature .content .strength_weakness .strength ul li::before {
  content: "・";
  position: absolute;
  left: -1.5rem;
  top: 0;
}
.feature .content .strength_weakness .weakness {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .feature .content .strength_weakness .weakness {
    width: 50%;
    margin-top: 0;
  }
}
.feature .content .strength_weakness .weakness h3 {
  background: #999;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  border-radius: 999px;
}
.feature .content .strength_weakness .weakness ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
.feature .content .strength_weakness .weakness ul li {
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  color: #999;
}
.feature .content .strength_weakness .weakness ul li::before {
  content: "・";
  position: absolute;
  left: -1.5rem;
  top: 0;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #6B7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.article-meta .author {
  display: flex;
  align-items: center;
}
.article-meta .author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #eef7fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  font-weight: 700;
  color: #0085DE;
}
.article-meta .date {
  display: flex;
  align-items: center;
}
.article-meta .date svg {
  margin-right: 0.25rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.article-tags .article-tag {
  background-color: #eef7fd;
  color: #0085DE;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  border: solid #E5E7EB 0.1rem;
}

.table-of-contents {
  background-color: #F9FAFB;
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .table-of-contents {
    padding: 2.5rem 5rem;
    margin-bottom: 3rem;
  }
}
.table-of-contents h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .table-of-contents h2 {
    font-size: 1.6rem;
  }
}
.table-of-contents h2 svg {
  margin-right: 0.5rem;
}
.table-of-contents ul {
  list-style: none;
  margin-left: 1rem;
}
.table-of-contents ul li {
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 1.3rem;
}
@media only screen and (min-width: 768px) {
  .table-of-contents ul li {
    font-size: 1.4rem;
  }
}
.table-of-contents ul li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #0085DE;
  border-radius: 50%;
}
.table-of-contents ul li a {
  color: #4B5563;
}
.table-of-contents ul li a:hover {
  opacity: 0.6;
}

.article-section h2 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 3.5rem;
  line-height: 1.4;
  padding: 0.7rem 1rem 0.7rem 1.5rem;
  border-left: 0.3rem solid #0085DE;
  background-color: #eef7fd;
  color: #1F2937;
}
@media only screen and (min-width: 768px) {
  .article-section h2 {
    font-size: 2.4rem;
    padding: 1rem 2rem 1rem 2.5rem;
    margin-bottom: 2.5rem;
    margin-top: 5rem;
  }
}
.article-section h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: #1F2937;
}
@media only screen and (min-width: 768px) {
  .article-section h3 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
  }
}
.article-section ul, .article-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.article-section ul li, .article-section ol li {
  margin-bottom: 0.5rem;
}
.article-section .mt-2 {
  margin-top: 2rem;
}
.article-section p .strong {
  font-weight: bold;
  color: #0085DE;
  background: rgba(255, 223, 90, 0.45);
}
.article-section p .strong2 {
  font-weight: bold;
  color: #0085DE;
}
.article-section .note {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .article-section .note {
    font-size: 1.2rem;
  }
}
.article-section .font-en {
  font-family: "Inter", sans-serif;
  font-weight: bold;
}
.article-section table {
  margin-top: 0.5rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .article-section table {
    margin-top: 0.5rem;
  }
}
.article-section table .primary-color {
  color: #0085DE;
}
.article-section table th, .article-section table td {
  border: 0.1rem solid #E5E7EB;
  padding: 0.3rem 1rem;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .article-section table th, .article-section table td {
    padding: 0.3rem 2rem;
  }
}
.article-section table th {
  width: 50%;
  background: #eef7fd;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .article-section table th {
    font-size: 1.6rem;
    width: 40%;
  }
}
.article-section table td {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .article-section table td {
    font-size: 1.4rem;
  }
}
.article-section table td .font-en {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .article-section table td .font-en {
    font-size: 2.2rem;
  }
}
.article-section table td.orange .font-en {
  background: linear-gradient(transparent 70%, #faf6ca 70%);
}
@media only screen and (min-width: 768px) {
  .article-section .direct-img {
    margin: 0 auto;
    width: 50rem;
  }
}

.testimonials-slider-container {
  margin: 2rem 0;
  margin-left: 2rem;
  position: relative;
  width: 100%;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .testimonials-slider-container {
    margin: 3rem 0;
  }
}
@media only screen and (min-width: 768px) {
  .testimonials-slider-container#user-reviews .testimonials-slider .testimonials-track {
    justify-content: center;
  }
}

.testimonials-slider {
  width: 100%;
  overflow: visible;
  border-radius: 0.8rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  margin: 0 -1rem;
}

.testimonial-slide {
  flex: 0 0 90%;
  padding: 0 1rem;
  transition: all 0.3s ease;
  opacity: 0.7;
  transform: scale(0.95);
}
@media only screen and (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 45%;
    padding: 0 0.75rem;
  }
}
.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card {
  background-color: #fff;
  border: solid 0.1rem #ccc;
  padding: 1.5rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}
.testimonial-card .testimonial-header {
  margin-bottom: 1rem;
  text-align: center;
}
.testimonial-card .testimonial-header figure {
  width: 8rem;
  margin: 0 auto;
}
.testimonial-card .testimonial-header .info {
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 0.1rem #E5E7EB;
  margin-bottom: 1rem;
}
.testimonial-card .testimonial-header .info .name {
  font-size: 1.2rem;
  background: #555;
  color: #fff;
  display: inline-block;
  padding: 0rem 1rem;
  border-radius: 0.3rem;
}
.testimonial-card .testimonial-header .info .head {
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #0085DE;
}
.testimonial-card .testimonial-text {
  font-size: 1.2rem;
}
.testimonial-card .testimonial-text .strong2 {
  color: #DE8300;
}
.testimonial-card.bad-reviews .testimonial-header .info .head {
  color: #888;
}
.testimonial-card.user-reviews .testimonial-header {
  margin-bottom: 0;
}
.testimonial-card.user-reviews .testimonial-header .info {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.testimonial-card.user-reviews .testimonial-header .before_after {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-weight: bold;
}
.testimonial-card.user-reviews .testimonial-header .before_after p {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  font-size: 1.2rem;
}
.testimonial-card.user-reviews .testimonial-header .before_after p .label {
  display: inline-block;
  border: solid 0.1rem #ccc;
  padding: 0.3rem 1rem;
  margin-right: 1rem;
  transform: translateY(-20%);
  font-weight: normal;
}
.testimonial-card.user-reviews .testimonial-header .before_after p .font-en {
  font-size: 2.2rem;
}
.testimonial-card.user-reviews .testimonial-header .before_after p .after {
  color: #DE8300;
}
.testimonial-card.user-reviews .testimonial-header .before_after p .after .font-en {
  font-size: 3.2rem;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .testimonials-nav.sp-only {
    display: none;
  }
}

.testimonials-prev,
.testimonials-next {
  background-color: #FFFFFF;
  border: 0.1rem solid #E5E7EB;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-prev:hover,
.testimonials-next:hover {
  background-color: #0085DE;
  border-color: #0085DE;
  color: #FFFFFF;
}
.testimonials-prev svg,
.testimonials-next svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #E5E7EB;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-dot.active {
  background-color: #0085DE;
}
.testimonial-dot:hover {
  background-color: #c8ccd5;
}
.testimonial-dot:hover.active {
  background-color: #0066ab;
}

.cta-box {
  margin-top: 2.5rem;
  text-align: center;
}
.cta-box .bubble {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  margin: 0;
  position: relative;
}
.cta-box .bubble::before, .cta-box .bubble::after {
  content: "";
  display: block;
  background: #333;
  width: 0.1rem;
  height: 80%;
  transform: rotate(-30deg);
  position: absolute;
  left: -1rem;
  bottom: 0.3rem;
}
.cta-box .bubble::after {
  left: auto;
  right: -1rem;
  transform: rotate(30deg);
}
.cta-box .bubble .font-en {
  color: #DE8300;
  font-size: 2rem;
}

.btn {
  display: block;
  background: #DE8300;
  color: #FFFFFF;
  margin-top: 1rem;
  margin: 0 auto;
  width: 33rem;
  padding: 1rem 0;
  border-radius: 9999px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.8rem;
  box-shadow: 0 0.5rem 0rem #d07610;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .btn {
    font-size: 1.8rem;
    width: 40rem;
  }
}
.btn:hover {
  opacity: 0.6;
}
.btn::before {
  content: "";
  background: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .btn::before {
    width: 2rem;
    height: 2rem;
    right: 2rem;
  }
}

.cta-note {
  font-size: 0.875rem;
  margin-top: 1rem;
  opacity: 0.8;
}

.box_wrap {
  background: #eef7fd;
  padding: 2rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .box_wrap {
    padding: 2.5rem 6rem;
    margin-top: 3rem;
  }
}
.box_wrap h4 {
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #0085DE;
  color: #0085DE;
}
@media only screen and (min-width: 768px) {
  .box_wrap h4 {
    font-size: 2rem;
    padding-bottom: 2rem;
  }
}
.box_wrap ul {
  padding-left: 2rem;
  font-size: 1.4rem;
  margin: 0;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .box_wrap ul {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}
.box_wrap ul li {
  position: relative;
  font-weight: bold;
}
.box_wrap ul li::before {
  content: "";
  background: url(../img/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: -2rem;
  top: 0.6rem;
}
.box_wrap.demerit {
  background: #eee;
}
.box_wrap.demerit h4 {
  color: #333;
  border-bottom: 0.1rem solid #aaa;
}
.box_wrap.demerit ul li::before {
  background: url(../img/check_gray.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.related-articles {
  margin: 3rem 0;
}
.related-articles h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.related-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .related-articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer {
  background-color: #1F2937;
  color: #FFFFFF;
  padding: 2rem;
}
.footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.footer ul li a {
  color: #FFFFFF;
  font-size: 1.2rem;
}
.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.3);
}
.footer-bottom p {
  color: #D1D5DB;
  font-size: 1rem;
}

.recommend-steps {
  margin: 2rem 0;
}
.recommend-steps .step-item {
  display: flex;
  align-items: center;
  padding: 2rem;
  padding-top: 0;
}
.recommend-steps .step-item .strong {
  color: #DE8300;
}
.recommend-steps .step-item:not(:first-child) {
  border-top: 0.1rem #ccc solid;
  padding-top: 2rem;
}
.recommend-steps .step-item:nth-last-child(1) {
  padding-bottom: 0;
}
.recommend-steps .step-item .step-number {
  background: #0085DE;
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.6rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.recommend-steps .step-item .step-content {
  display: flex;
  align-items: center;
  flex: 1;
}
.recommend-steps .step-item .step-content .step-icon {
  color: #0085DE;
  margin-right: 1rem;
  flex-shrink: 0;
}
.recommend-steps .step-item .step-content .step-text {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .recommend-steps .step-item .step-content .step-text {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */