@charset "UTF-8";

html {
  scroll-padding-top: 153px;
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 131px;
  }
}

.anchor li:nth-child(2) {
  flex: 2;
}

.service_request {
  background: var(--color-gray);
  border-radius: var(--round);
  display: flex;
  padding: 1.6rem;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 2.4rem;
}
.service_request ul {
  flex: 3;
}
.service_request img {
  flex: 1;
}

.price_list {
  max-width: 1200px;
  margin: auto;
}

table {
  width: 100%;
}
@media (min-width: 961px) {
  table {
    border-spacing: 16px 0;
    border-collapse: separate;
  }
}
table thead .plan {
  font-size: clamp(2rem, 1.92rem + 0.4vw, 2.4rem);
  border-radius: var(--round-m) var(--round-m) 0 0;
  background: var(--color-w);
  padding: 1.6rem;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 961px) {
  table thead .plan {
    width: 25%;
  }
}
table thead .plan.free {
  background: var(--color-blue-m);
  color: var(--color-w);
}
table thead .plan.plus, table thead .plan.basic {
  border: 2px solid var(--border);
}
table tbody tr.best_plan {
  background: #E6ECFC !important;
}
table tbody tr:nth-child(even) {
  background: #ededed;
}
table tbody tr:nth-child(odd) {
  background: var(--color-w);
}
@media (min-width: 961px) {
  table tbody tr:last-of-type .free {
    border-bottom: 6px solid var(--color-blue-m);
  }
  table tbody tr:last-of-type .plus,
  table tbody tr:last-of-type .basic {
    border-bottom: 2px solid var(--border);
  }
}
table tbody tr.price_search th {
  vertical-align: top;
}
table tbody th {
  font-weight: bold;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  vertical-align: middle;
}
@media (min-width: 961px) {
  table tbody th {
    width: 20%;
    text-align: center;
  }
}
table tbody th span {
  font-size: 1.2rem;
  font-weight: normal;
  display: block;
}
@media (min-width: 961px) {
  table tbody td.free {
    border-left: 6px solid var(--color-blue-m);
    border-right: 6px solid var(--color-blue-m);
  }
  table tbody td.plus, table tbody td.basic {
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
  }
}
@media (min-width: 961px) {
  table td,
  table th {
    padding: 1.6rem;
  }
}
table td span,
table th span {
  font-weight: bold;
}
table .plan_price td {
  font-weight: bold;
  text-align: center;
  font-size: clamp(2rem, 1.84rem + 0.8vw, 2.8rem);
  vertical-align: middle;
}
table .plan_price td span {
  font-size: 0.6em;
}
table .plan_price .free {
  color: var(--color-red-m);
  font-size: clamp(4rem, 3.2rem + 4vw, 8rem);
}
table .price_search dl {
  margin-bottom: 2.4rem;
}
table .price_search dl dt {
  font-weight: bold;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
table .price_search dl dd {
  padding: 0.4rem 0;
}

@media (max-width: 960px) {
  .price_list_col_inner h3 {
    font-size: clamp(2rem, 1.92rem + 0.4vw, 2.4rem);
    border-radius: var(--round-m) var(--round-m) 0 0;
    background: var(--color-w);
    padding: 1.6rem;
    text-align: center;
    font-weight: bold;
    margin: 0;
  }
  .price_list_col_inner h3.free {
    background: var(--color-blue-m);
    color: var(--color-w);
  }
  .price_list_col_inner h3.plus, .price_list_col_inner h3.basic {
    border: 2px solid var(--border);
  }
  .price_list_col {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 0 var(--inner-padding);
  }
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }
  tr {
    padding: 1.6rem;
  }
  th {
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .price_list_free tbody tr {
    border-left: 6px solid var(--color-blue-m);
    border-right: 6px solid var(--color-blue-m);
  }
  .price_list_free tbody tr:last-of-type {
    border-bottom: 6px solid var(--color-blue-m);
  }
  .price_list_plus tbody tr,
  .price_list_basic tbody tr {
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
  }
  .price_list_plus tbody tr:last-of-type,
  .price_list_basic tbody tr:last-of-type {
    border-bottom: 2px solid var(--border);
  }
}
.price_micro_conversion h4 {
  text-align: center;
  margin-bottom: 1.6rem;
}
.price_micro_conversion .btn {
  margin: auto;
  width: 48rem;
  max-width: 100%;
}
.price_micro_conversion .btn a {
  width: 100%;
}