@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media screen and (max-width: 750px) {
  .font-size-S {
    font-size: 14px;
  }
  .font-size-M {
    font-size: 16px;
  }
  .font-size-M2 {
    font-size: 20px;
  }
  .font-size-L {
    font-size: 24px;
  }
}
@media screen and (min-width: 750px) {
  .font-size-S {
    font-size: 18px;
  }
  .font-size-M {
    font-size: 20px;
  }
  .font-size-M2 {
    font-size: 24px;
  }
  .font-size-L {
    font-size: 32px;
  }
}
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background: #e9e9e9;
  color: #333;
}
a {
  text-decoration: none;
  transition-duration: 0.2s;
}
p {
  line-height: 1.6em;
}
.bold {
  font-weight: 700;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
  height: auto;
}
*:focus {
  outline: none;
}
.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}
small {
  font-size: 0.8em;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 6px;
  gap: 30px;
  background: #ff8221;
  box-shadow: 2px 3px 0 #c35602;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s;
}
.btn:hover {
  box-shadow: none;
  transform: translateY(3px);
}
.body-wrapper {
  position: relative;
  overflow: visible;
  background: #fff;
  max-width: 750px;
  margin: auto;
  box-shadow: 0 0 30px rgba(62, 35, 48, 0.1);
}
header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  transform: translateX(-50%);
  margin: 0 auto;
  background-color: #fff;
  color: #fff;
  padding: 10px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 5px;
}
.logo img {
  width: auto;
  height: 30px;
}
.header-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  flex-grow: 1;
  justify-content: center;
}
.header-link {
  color: rgba(74, 205, 98, 1);
  text-decoration: none;
  font-size: 10px;
  transition: color 0.3s;
  position: relative;
  text-align: center;
  line-height: 1.4rem;
  font-weight: 700;
}
.header-link img {
  width: 30px;
}
.header-link:nth-child(2) {
  padding: 0 5px;
}
.header-link:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 40px;
  background-color: #999;
}
.hamburger-overlay {
  position: relative;
  z-index: 10000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: gray;
  transition: all 0.6s;
}
.hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
}
.hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
}
.hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
}
.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(20, 19, 19, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-overlay__content {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 5%;
}
.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
  position: relative;
  margin-bottom: 8px;
}
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.1s;
  font-weight: 700;
}
.fv {
  position: relative;
  margin-top: 68px;
}
.ranking {
  background-color: #fff;
  padding: 17px;
}
.ranking-title {
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
}
.ranking-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}
.ranking-card {
  background-color: #fff;
  border: 2px solid #0bad78;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.ranking-card__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 2px solid #0bad78;
}
.ranking-card__head-rank {
  width: 44px;
}
.ranking-card__head-title {
  color: #0bad78;
  font-size: 20px;
  font-weight: 700;
}
.ranking-card__head-stars {
  font-weight: 700;
}
.ranking-card__head-stars span {
  margin-right: 5px;
  color: rgba(254, 111, 0, 1);
}
.ranking-card__body {
  padding: 10px 10px 20px 10px;
}
.ranking-card__bodyhead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ranking-card__bodyhead .ranking-card__point {
  margin-top: 0;
  height: 100%;
}
@media (max-width: 600px) {
  .ranking-card__bodyhead .ranking-card__point {
    margin-top: 0;
    padding: 7px;
  }
  .ranking-card__bodyhead .ranking-card__point-title {
    font-size: 14px;
  }
  .ranking-card__bodyhead .ranking-card__point-lists {
    margin-top: 7px;
  }
  .ranking-card__bodyhead .ranking-card__point-lists li {
    font-size: 12px;
    padding-left: 17px;
    text-indent: -17px;
  }
  .ranking-card__bodyhead .ranking-card__point-title img {
    width: 13px;
  }
  .ranking-card__bodyhead .ranking-card__point-lists li img {
    width: 13px;
  }
}
.ranking-card__limited {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(255, 249, 220, 1) url(../img/ranking/bg-limited.png) center
    center;
  height: 100%;
  border-radius: 10px;
}
.ranking-card__limited-time {
  padding: 5px 2px;
  text-align: center;
  background-color: #fff;
  background: #fff;
  border: 1px solid #0bad78;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
}
.ranking-card__limited-time p {
  font-weight: 700;
  font-size: 18px;
}
.ranking-card__limited-time p span {
  color: rgba(254, 111, 0, 1);
  font-size: 20px;
}
@media (max-width: 600px) {
  .ranking-card__limited-time {
    font-size: 11px;
  }
  .ranking-card__limited-time p {
    font-size: 12px;
  }
  .ranking-card__limited-time p span {
    color: rgba(254, 111, 0, 1);
    font-size: 13px;
  }
}
.rateTable {
  margin-top: 16px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.rateTable__grid {
  display: grid;
}
.rateTable__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.rateTable__grid--2 {
  grid-template-columns: 1fr 2fr;
  border-top: 1px solid var(--border);
}
.rateTable__cell {
  padding: 10px 12px;
  text-align: center;
  background: #fff;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-size: 15px;
  line-height: 1.2;
}
.rateTable__cell--head {
  background: #00a86b;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.rateTable__grid--3 > .rateTable__cell:nth-child(3n) {
  border-right: 0;
}
.rateTable__grid--2 > .rateTable__cell:nth-child(2n) {
  border-right: 0;
}
.rateTable__grid--3 > .rateTable__cell:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.rateTable__grid--2 > .rateTable__cell:nth-last-child(-n + 2) {
  border-bottom: 0;
}
@media (max-width: 420px) {
  .rateTable__cell {
    padding: 9px 8px;
    font-size: 14px;
  }
  .rateTable__cell--head {
    font-size: 13px;
  }
}
.ranking-card__point {
  margin-top: 16px;
  padding: 20px;
  background-color: rgba(231, 251, 248, 1);
  border-radius: 10px;
}
.ranking-card__point-title {
  color: rgba(11, 173, 120, 1);
  text-align: center;
}
.ranking-card__point-title img {
  width: 20px;
  margin-right: 5px;
  vertical-align: text-bottom;
}
.ranking-card__point-lists {
  width: fit-content;
  margin: 12px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ranking-card__point-lists li {
  font-weight: 700;
  font-size: 14px;
  padding-left: 26px;
  text-indent: -25px;
}
.ranking-card__point-lists li img {
  width: 20px;
}
.ranking-card__point-lists li span {
  color: rgba(172, 133, 29, 1);
}
.ranking-card__btn {
  position: relative;
  margin-top: 20px;
  font-size: 20px;
  padding: 10px 6px;
}
.ranking-card__btn img {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 24px;
  transform: translateY(-50%);
}
.ranking-card__voiceTrigger {
  display: block;
  width: fit-content;
  margin: 10px auto;
  color: #00a86b;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #00a86b;
  background-color: transparent;
}
.ranking-card__voices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.voice-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  border: 1px solid #00a86b;
  padding: 14px;
  border-radius: 5px;
}
.voice-item img {
  width: 70px;
  height: auto;
}
.voice-item__title {
  font-weight: 700;
  font-size: 16px;
}
.voice-item__text {
  margin-top: 10px;
  font-size: 14px;
}
.ranking-lists__btn {
  display: block;
  margin: auto;
  padding: 10px 3px;
  background: #fff;
  border: 2px solid #8c8c8c;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  color: rgba(140, 140, 140, 1);
  font-weight: 700;
  width: 70%;
  max-width: 200px;
  font-size: 16px;
}
.qa {
  padding: 8% 0;
  text-align: center;
}
.qa h2 {
  color: rgba(7, 152, 105, 1);
  font-size: 30px;
}
.qa_inner {
  width: 95%;
  margin: auto;
  margin-top: 20px;
}
.accordion-item {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  background-color: rgba(231, 251, 248, 1);
}
.accordion-button {
  width: 100%;
  padding: 15px 30px 15px 10px;
  text-align: left;
  background-color: rgba(231, 251, 248, 1);
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s;
  position: relative;
  color: #333;
}
.accordion-button::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(11, 173, 120, 1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.3s, content 0.3s;
}
.accordion-button.active::after {
  content: "-";
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 15px;
  text-align: center;
}
.accordion-content p {
  margin: 15px 0;
  text-align: left;
}
.column {
  background-color: rgba(237, 237, 237, 1);
  padding: 8% 0;
}
.column h2 {
  text-align: center;
  color: rgba(11, 173, 120, 1);
  font-size: 30px;
}
.column__list {
  width: 95%;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}
.column-item a {
  display: flex;
  border: 1px solid rgba(11, 173, 120, 1);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 2px;
  border-radius: 4px;
  background: #fff;
  position: relative;
  min-height: 55px;
  color: #333;
  text-align: center;
}
.column-item a p {
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  .column-item a p {
    font-size: 13px;
  }
}
@media screen and (min-width: 600px) {
  .column-item a {
    min-height: 65px;
  }
}
.footer {
  padding: 20px 10px;
  font-size: 15px;
  color: #fff;
  background: rgba(11, 173, 120, 1);
  text-align: center;
}
.footer__navi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer__navi li {
  display: inline-block;
}
.footer__navi li a {
  color: #fff;
}
.copyright {
  font-size: 12px;
  background-color: rgba(11, 173, 120, 1);
  color: #fff;
}
.column_page {
  padding: 22% 5% 5%;
}
.column_page h2 {
  padding: 1rem;
  border-left: 5px solid rgba(11, 173, 120, 1);
  background: #f4f4f4;
  font-size: 18px;
}
.column_page p {
  padding: 2%;
  margin-bottom: 5%;
  line-height: 1.5rem;
  font-size: 14px;
}
.column_page h3 {
  padding: 0.5em 0;
  border-top: solid 3px rgba(11, 173, 120, 1);
  border-bottom: solid 3px rgba(11, 173, 120, 1);
  font-size: 16px;
}
.column_page h4 {
  position: relative;
  padding: 0.5rem;
  border-bottom: 2px solid #ccc;
  text-align: left;
  font-size: 16px;
}
.column_page h4:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 10%;
  height: 2px;
  content: "";
  background: rgba(11, 173, 120, 1);
}
.column_page ul {
  padding: 0 5% 5%;
}
@media screen and (min-width: 600px) {
  .column_page p {
    line-height: 1.8rem;
  }
}
.admin {
  max-width: 800px;
  padding-top: 15%;
  text-align: center;
  margin: 10% auto 30px;
}
@media screen and (min-width: 768px) {
  .admin {
    padding-top: 80px;
  }
}
.admin_page {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-bottom: 50px;
}
.admin_page h2 {
  color: rgba(11, 173, 120, 1);
}
.admin_page h3 {
  padding: 0.5rem 2rem;
  border-left: 5px solid rgba(11, 173, 120, 1);
  background: #f4f4f4;
  margin-top: 30px;
  text-align: left;
  color: rgba(11, 173, 120, 1);
}
.admin_page p {
  text-align: left;
  margin-top: 10px;
  padding-left: 10px;
  font-size: 16px;
}
.privacy_text {
  margin-top: 20px;
  border: solid 1px gray;
  padding: 10px;
  font-size: 12px;
  text-align: left;
}
.top3 {
  padding: 17px;
  background-color: rgba(237, 255, 252, 1);
}
.top3 h2 {
  margin: 0 auto;
  max-width: 350px;
  width: 70%;
}
.top3-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.top3-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  background: #fff;
  border: 2px solid #0bad78;
  border-radius: 5px;
}
.top3-card .btn {
  font-size: 12px;
}
.top3 dl {
  width: 100%;
  margin: 10px auto;
  background-color: rgba(246, 246, 246, 1);
  text-align: center;
}
.top3 dt {
  padding: 3px;
  background: #0bad78;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.top3 dd {
  padding: 3px;
  font-size: 13px;
}
.top3 dd span {
  font-weight: 700;
  font-size: 16px;
}
.top3-rank {
  max-width: 50px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 750px) {
  .top3-rank {
    max-width: 30px;
    margin-bottom: 5px;
  }
}
.point {
  padding: 20px;
  background-color: rgba(237, 255, 252, 1);
}
.point h2 {
  margin: 0 auto;
  max-width: 350px;
  width: 70%;
}
.point-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.point-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  background: #fff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 20px;
}
.point-card__title-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.point-card__title-icon {
  width: 58px;
}
.point-card__title-text span {
  display: block;
  background: #0bad78;
  border-radius: 40px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  max-width: 120px;
}
.point-card__title-text strong {
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.point-card__text {
  font-weight: 700;
  font-size: 18px;
}
.point-card__text span {
  color: rgba(11, 173, 120, 1);
}
.point-card__note {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .point-card__note {
    font-size: 12px;
  }
}
.point-note {
  margin-top: 20px;
  font-size: 12px;
}
.expensive {
  padding: 15px;
  background: url(../img/bg1.png) top right;
  background-size: cover;
}
.expensive h2 {
  margin: 0 auto;
  max-width: 350px;
  width: 70%;
}
.expensive-wrap {
  margin-top: 20px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  border: 3px solid #cd9c1e;
}
.expensive-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.expensive-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  font-weight: 700;
}
.expensive-list__title {
  text-align: center;
  color: rgba(11, 173, 120, 1);
  font-size: 16px;
}
.expensive-list__text {
  font-size: 14px;
}
.expensive-points {
  margin-top: 16px;
  padding: 20px;
  background-color: rgba(255, 248, 231, 1);
  border-radius: 10px;
}
.expensive-points__title {
  color: rgba(172, 133, 29, 1);
  text-align: center;
}
.expensive-points__title img {
  width: 20px;
  margin-right: 5px;
  vertical-align: text-bottom;
}
.expensive-points__lists {
  width: fit-content;
  margin: 12px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.expensive-points__lists li {
  font-weight: 700;
  font-size: 14px;
  padding-left: 26px;
  text-indent: -25px;
}
.expensive-points__lists li img {
  width: 20px;
}
.expensive-points__lists li span {
  color: rgba(172, 133, 29, 1);
}
.excellent-store {
  padding: 30px 15px;
  background: url(../img/bg1.png) top right;
  background-size: cover;
}
.excellent-store__wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.excellent-store__wrap img {
  max-width: 360px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.excellent-store__wrap a {
  display: block;
  margin-top: 16px;
}
.service-diagnosis {
  padding: 20px;
  background-color: rgba(11, 173, 120, 1);
}
.service-diagnosis h2 {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  width: 80%;
}
.service-diagnosis__wrap {
  margin-top: 20px;
  padding: 15px 20px 18px;
  background: #f6faf0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.service-diagnosis__progress {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-diagnosis__progress .progressbar {
  position: relative;
  width: 88%;
  height: 5px;
  border-radius: 30px;
  background-color: rgba(194, 194, 194, 1);
}
.service-diagnosis__progress .progressbar::after {
  display: block;
  content: "";
  border-radius: 30px;
  width: var(--percent, 100%);
  height: 5px;
  background-color: rgba(11, 173, 120, 1);
}
.service-diagnosis__lists p {
  font-weight: 700;
  font-size: 17px;
  margin: 10px auto;
}
.service-diagnosis__lists .radiobox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.service-diagnosis__lists .radiobox._4 {
  grid-template-columns: repeat(4, 1fr);
}
.service-diagnosis__lists .radiobox input[type="radio"] {
  display: none;
}
.service-diagnosis__lists .radiobox label {
  padding: 8px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #8c8c8c;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  color: rgba(136, 136, 136, 1);
}
.service-diagnosis__lists .radiobox._4 label {
  text-align: center;
  line-height: 1;
  font-size: 15px;
}
.service-diagnosis__lists .radiobox._4 label img {
  width: auto;
  max-width: 75%;
  max-height: 30px;
}
.service-diagnosis__lists .btnbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.service-diagnosis__lists .btnbox button {
  background-color: transparent;
  border: 0;
  padding: 0;
  border-bottom: 1px solid;
}
.service-diagnosis__lists .radiobox input:checked + label {
  border-color: rgba(11, 173, 120, 1);
  background-color: rgba(236, 253, 247, 1);
}
.service-diagnosis__lists .btn {
  background-color: rgba(255, 185, 21, 1);
  box-shadow: 2px 3px 0 rgba(197, 145, 24, 1);
  max-width: 200px;
}
.service-diagnosis__lists .btn.disabled {
  pointer-events: none;
  opacity: 0.7;
}
.service-diagnosis__lists .btn:hover {
  box-shadow: none;
}
.result {
  padding: 88px 20px 20px;
  background-color: rgba(237, 255, 252, 1);
}
.result .ranking {
  padding: 0;
  background-color: transparent;
}
.result .ranking .ranking-title {
  display: none;
}
.result .ranking .ranking-lists {
  margin-top: 0;
}
.result-hgroup__h2 {
  padding: 10px;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 16px;
}
.result-hgroup__h2 span {
  color: rgba(255, 0, 0, 1);
}
@media screen and (max-width: 600px) {
  .result-hgroup__h2 {
    font-size: 15px;
  }
}
.result-hgroup__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
}
.result-hgroup__btns .sortbtn {
  padding: 5px;
  background: #fff;
  border: 1px solid #414141;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
}
.result-hgroup__btns .sortbtn.active {
  background: rgba(255, 194, 51, 1);
  color: #fff;
}
@media screen and (max-width: 600px) {
  .result-hgroup__btns .sortbtn {
    font-size: 15px;
  }
}
