@charset "UTF-8";
* {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --ink: #1a1a1a;
  --black: #333;
  --white: #fff;
  --blue: #00f;
  --error: #ec0000;
  --primary: #ff9100;
  --secondary: #fffaeb;
  --tertiary: #ffc146;
  --quaternary: #fff0c7;
  --area-primary: #ffd045;
  --bg: #fffaec;
  --bg-gray: #eee;
  --shadow: #e2ae3e;
  --shadow-dark: #ff5e00;
  --shadow-send: #dc7d00;
  --bronze: #ebb664;
  --green: #7ec95f;
  --line-green-mid: #02a802;
  --line-green: #00b900;
  --yellow: #ff0;
  --gray: #838d8f;
  --light-gray: #f7f7f7;
  --border: #ddd;
  --border-light: #efefef;
  --area-hokkaido-tohoku: #646bb3;
  --area-chubu-koshinetsu: #16aa82;
  --area-chugoku-shikoku: #ec994d;
  --area-kanto: #5bc3dc;
  --area-kansai: #cbda3f;
  --area-kyushu-okinawa: #e75076;
  --pale-green: #9bbac8;
  --related-title-bg: #657072;
  --service-cta-border: #cbd5e0;
  --marker-yellow: linear-gradient(180deg, #fff 40%, #ff6 60%);
  --max: 1000px;
  --z-index--contents: 1;
  --z-index--bg: -1;
  --z-index--header: 200;
  --z-index--modal: 100;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 10px;
  color: var(--ink);
  margin: 0 !important;
}

body {
  position: relative;
  z-index: 1;
  min-width: var(--max);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
  overflow-y: scroll;
  background: var(--white);
}
body._blue {
  background: #f3f8fc;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
}

.container {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.preload *,
.preload *:before,
.preload *:after {
  -webkit-transition: none !important;
  transition: none !important;
}

a {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a:hover {
  opacity: 0.7;
}
a:focus-visible {
  outline: none;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button {
  display: block;
}

textarea {
  resize: vertical;
}

input:-moz-focus-inner,
button:-moz-focus-inner {
  border: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--ink);
}

input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: var(--ink);
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--ink);
}

input:placeholder-shown,
textarea:placeholder-shown {
  color: var(--ink);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--ink);
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--ink);
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--ink);
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--ink);
}
input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: var(--ink);
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: var(--ink);
}
input:focus:placeholder-shown,
textarea:focus:placeholder-shown {
  color: var(--ink);
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: var(--ink);
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: var(--ink);
  opacity: 1;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: var(--ink);
  opacity: 1;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: var(--ink);
}

option {
  height: 1.8em;
}

.customize-support {
  isolation: isolate;
}

@media screen and (min-width: 1025px) {
  .p-service .c-reviewCard {
    width: calc(50% - 12.5px);
  }
}
.p-service__section {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-service__section {
    padding-inline: 1.5rem;
  }
}
.p-service__section:first-of-type {
  margin-top: 0;
}
.p-service__price {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-service__price {
    margin-top: 20px;
  }
}
.p-service__servicePrice {
  margin-top: 20px;
}
.p-service__review {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
}
.p-service__review + .c-note {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-service__review {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-service__average {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  min-width: 0;
  width: 100%;
}
.p-service__average .c-serviceAvgCost__title {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-service__average {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.p-service__usageFlow {
  margin-top: 4rem;
}
.p-service__usageFlowInner {
  background: var(--bg);
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-service__usageFlowInner {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.p-service__currentPostBtn {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.p-service__categoryServiceFlow {
  margin-top: 20px;
}

.p-serviceArea {
  max-width: var(--max);
  margin-inline: auto;
  padding-top: 3rem;
}
.p-serviceArea .area-menu-wrapper {
  left: 0;
  top: 72px;
}
@media screen and (max-width: 768px) {
  .p-serviceArea .area-menu-wrapper {
    top: 15px;
    left: 50%;
  }
}
.p-serviceArea .area-menu-wrapper:after {
  left: 78%;
}
.p-serviceArea .area-menu-wrapper:before {
  left: 78%;
}
@media screen and (max-width: 768px) {
  .p-serviceArea #js-area-menu .area-menu-wrapper:before {
    content: "";
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: -16px;
    left: -6vw;
    z-index: -10;
    border: none;
  }
}
.p-serviceArea .category-menu-wrapper {
  top: 72px;
}
@media screen and (max-width: 768px) {
  .p-serviceArea .category-menu-wrapper {
    top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-serviceArea .category-menu-wrapper.is-active {
    border-radius: 5px;
    z-index: 1000;
  }
  .p-serviceArea .category-menu-wrapper.is-active:before {
    content: "";
    display: block;
    width: 101vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: -16px;
    left: -6vw;
    z-index: -10;
    border: none;
  }
  .p-serviceArea .category-menu-wrapper.is-active .category-header {
    border-radius: 5px 5px 0 0;
  }
  .p-serviceArea .category-menu-wrapper.is-active .category-content {
    height: calc(100% - 30px);
    background: #fff;
    border-radius: 0 0 5px 5px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768px) {
  .p-serviceArea .category-menu-wrapper .category-slide-menu {
    height: 0;
    position: absolute;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  }
  .p-serviceArea .category-menu-wrapper .category-slide-menu.is-active {
    position: relative;
    height: auto;
    opacity: 1;
  }
}
.p-serviceArea .category-slide-menu.is-active + .back-button-wrapper.back-button--bottom {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.p-serviceArea .back-button-wrapper.back-button--bottom .back-button.back-button--custom.js-back-button-bottom {
  padding: 0;
  pointer-events: all;
  background: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-serviceArea .back-button-wrapper.back-button--bottom .back-button.back-button--custom.js-back-button-bottom:hover {
  opacity: 0.5;
}
.p-serviceArea .back-button-wrapper.back-button--bottom .back-button.back-button--custom.js-back-button-bottom:hover .back-title {
  color: #ff9100;
}
.p-serviceArea .back-button-wrapper.back-button--bottom .back-button.back-button--custom.js-back-button-bottom .back-title {
  color: #333;
  margin: 0 0 0 5px;
  font-size: 12px;
}
.p-serviceArea .back-button-wrapper.back-button--bottom > a {
  color: #333;
  font-size: 12px;
}
.p-serviceArea .back-button-wrapper.back-button--bottom > a:hover {
  color: #ff9100;
  opacity: 0.5;
}
.p-serviceArea .back-button-wrapper.back-button--bottom > a svg {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}
.p-serviceArea .back-button.back-button--top {
  pointer-events: all;
  line-height: 1.5;
}
.p-serviceArea .back-button.back-button--top .back-title.is-active {
  color: #ff9100;
  padding: 0 0 0 15px;
  position: relative;
}
.p-serviceArea .back-button.back-button--top .back-title.is-active:before {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  border-left: 2px solid #bcc5c7;
  border-top: 2px solid #bcc5c7;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  top: 45.5%;
  left: 5px;
}
@media screen and (max-width: 768px) {
  .p-serviceArea .p-serviceArea__search {
    padding: 0;
  }
}
.p-serviceArea .p-serviceArea__search-button.is-active {
  background: #ff9100;
  color: #fff;
}
.p-serviceArea .p-serviceArea__search-button.is-active svg path {
  fill: #fff;
}
.p-serviceArea .p-serviceArea__search-postal-input {
  border: 1px solid #ff9100;
  border-right: none;
  padding: 0 0 0 15px;
  font-size: 16px;
  background: rgb(246, 247, 247);
}
.p-serviceArea .p-serviceArea__search-postal-input::-webkit-input-placeholder {
  color: #838d8f;
}
.p-serviceArea .p-serviceArea__search-postal-input::-moz-placeholder {
  color: #838d8f;
}
.p-serviceArea .p-serviceArea__search-postal-input:-ms-input-placeholder {
  color: #838d8f;
}
.p-serviceArea .p-serviceArea__search-postal-input::-ms-input-placeholder {
  color: #838d8f;
}
.p-serviceArea .p-serviceArea__search-postal-input::placeholder {
  color: #838d8f;
}
.p-serviceArea .p-serviceArea__search-area-selector,
.p-serviceArea .p-serviceArea__search-area-opener,
.p-serviceArea .p-serviceArea__search-area-text,
.p-serviceArea .ellipsis-text.p-topKv__SearchItem__input.area-opener,
.p-serviceArea .p-serviceArea__postal-container,
.p-serviceArea .p-serviceArea__search-postal-input-wrapper {
  width: 100%;
}
.p-serviceArea .p-serviceArea__search-area {
  padding-right: 0;
}
.p-serviceArea__search-postal-container {
  width: 100%;
  padding-left: 8px;
  height: 35px;
  display: none;
}
.p-serviceArea__search-postal-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
}
.p-serviceArea__search-postal-input {
  background-color: #e0e0e0; /* Grayscale background */
  width: 100%;
  height: 35px;
  padding-left: 24px; /* Adjust to match `pl-6` */
  font-size: 1.125rem; /* Equivalent to text-3xl */
  border: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  outline: none;
}
.p-serviceArea__search-postal-input::-webkit-input-placeholder {
  color: #7d7d7d;
}
.p-serviceArea__search-postal-input::-moz-placeholder {
  color: #7d7d7d;
}
.p-serviceArea__search-postal-input:-ms-input-placeholder {
  color: #7d7d7d;
}
.p-serviceArea__search-postal-input::-ms-input-placeholder {
  color: #7d7d7d;
}
.p-serviceArea__search-postal-input::placeholder {
  color: #7d7d7d;
}
.p-serviceArea__search-postal-search-button {
  width: 45px;
  height: 35px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: rgb(255, 145, 0); /* Theme01 */
  -webkit-box-shadow: inset -3px -3px 0 0 #e18001;
  box-shadow: inset -3px -3px 0 0 #e18001;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.p-serviceArea__search-postal-search-button:disabled {
  background-color: #cccccc;
}
.p-serviceArea__search-postal-search-button-icon {
  margin: 0 auto;
}
.p-serviceAreaCard__prLabel {
  width: 45px;
  margin-right: 0.75rem;
  background: #bcc5c7;
  color: var(--white);
}
.p-serviceArea .l-main {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-serviceArea .l-main {
    overflow: inherit;
  }
}
.p-serviceArea__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: var(--max);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-inline: auto;
  max-width: var(--max);
  margin-inline: auto;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__inner {
    padding-inline: 1.5rem;
  }
  .p-serviceArea__inner .c-cta {
    margin: 2rem auto 1rem;
  }
}
.p-serviceArea__contents {
  width: 710px;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__contents {
    width: 100%;
  }
}
.p-serviceArea__search {
  position: relative;
  border: 1px solid var(--gray);
  border-radius: 0.5rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__search {
    padding-inline: 0;
    padding-block: 1rem;
    margin-inline: 1.5rem;
  }
}
.p-serviceArea__search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.p-serviceArea__search-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__search-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.p-serviceArea__search-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__search-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-serviceArea__search-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid var(--border);
  padding-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__search-category {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}
.p-serviceArea__search-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 1rem;
}
.p-serviceArea__search-category-label, .p-serviceArea__search-area-label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: bold;
  color: var(--gray);
}
.p-serviceArea__search-category-opener, .p-serviceArea__search-area-opener {
  width: 100%;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.p-serviceArea__search-area-text {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.p-serviceArea__search-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--primary);
  gap: 0.5rem;
  width: 450px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__search-buttons {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 1rem;
  }
}
.p-serviceArea__search-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  height: 40.5px;
  cursor: pointer;
  padding-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__search-button {
    width: 100%;
  }
}
.p-serviceArea__search-button svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
}
.p-serviceArea__search-button-label {
  -webkit-margin-start: 0.5rem;
  margin-inline-start: 0.5rem;
}
.p-serviceArea__areaTitle {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__areaTitle {
    padding-inline: 1.5rem;
  }
}
.p-serviceArea__contents {
  margin-top: 1.5rem;
}
.p-serviceArea__postsTitle--pr {
  margin-top: 3rem;
}
.p-serviceArea__postsData {
  margin-inline: 3rem;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__postsData {
    margin-inline: 0;
  }
}
.p-serviceArea__postsData .p-note {
  margin-top: 2.5rem;
}
.p-serviceArea__postsData .p-note + .l-pagination {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__postsData .p-note + .l-pagination {
    margin-top: 0;
  }
}
.p-serviceArea__section {
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__section {
    margin-top: 3rem;
  }
}
.p-serviceArea__review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 3rem 0;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__review {
    margin-inline: 0;
  }
}
.p-serviceArea__spContentsTopInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-serviceArea__spContentsInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1rem;
}
.p-serviceArea__spReview {
  background: var(--bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
  width: 100%;
}
.p-serviceArea__spReviewInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__spReviewInner {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
.p-serviceArea__spReviewTitle {
  font-weight: 700;
  white-space: nowrap;
}
.p-serviceArea__spReview .c-reviewStar {
  font-size: 2rem;
  margin: 0.5rem 0 0;
}
.p-serviceArea__spReviewScore {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-serviceArea__spReviewCount {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
  }
}
.p-serviceArea__spAvgCost {
  background: var(--bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  width: 100%;
}
.p-serviceArea__spAvgCostInner {
  text-align: center;
}
.p-serviceArea__spAvgCostPrice {
  color: var(--primary);
  font-weight: 700;
}
.p-serviceArea__spAvgCostPriceTitle {
  font-weight: 700;
}
.p-serviceArea__movie {
  margin-top: 3rem;
  border: 1px solid var(--border);
}
.p-serviceAreaPointList__title {
  background: #bcc5c7;
  color: var(--white);
  margin-top: 1rem;
  text-align: center;
  font-weight: 700;
  padding-block: 0.5rem;
}
.p-serviceAreaPointList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0.25rem;
  gap: 1rem;
  border-bottom: 1px dashed var(--border);
}
.p-serviceArea__exampleTitle {
  margin-top: 30px;
}
.p-serviceArea__averagePrice .l-sidebar__avgCostPrice {
  margin-top: 0;
}

.p-serviceArea__archive {
  background: var(--white) !important;
  padding: 2rem 3rem;
}
.p-serviceArea__archive .l-sidebar__reviewInner {
  margin-top: 2rem;
  background-color: var(--bg);
}
.p-serviceArea__archive .l-sidebar__reviewCount {
  font-size: 2rem;
  -webkit-transform: translateY(0.2rem);
  transform: translateY(0.2rem);
}
@media screen and (max-width: 768px) {
  .p-serviceArea__archive {
    padding: 0;
  }
  .p-serviceArea__archive .l-sidebar__reviewInner {
    width: calc(100% - 3rem);
    margin-inline: auto;
  }
  .p-serviceArea__archive .c-reviewStar {
    font-size: 2.5rem;
  }
}

.is-largeReview .c-reviewSummary {
  padding: 2.5rem;
}
.is-largeReview .c-reviewSummary__ratingWrapper {
  gap: 0;
}
.is-largeReview .c-reviewSummary__rating {
  margin-right: 0.125rem;
}
.is-largeReview .c-reviewSummary__reviewCount {
  margin: 0.25rem 0 0 5rem;
  border: none;
  color: var(--ink);
}
.is-largeReview .c-reviewSummary__reviewCount > div img {
  -webkit-transform: translateY(0.1rem);
  transform: translateY(0.1rem);
}
@media screen and (max-width: 768px) {
  .is-largeReview .c-reviewSummary__reviewCount {
    margin-left: 3rem;
  }
}
@media screen and (max-width: 375px) {
  .is-largeReview .c-reviewSummary__reviewCount {
    margin-left: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .is-largeReview .c-reviewSummary__text {
    display: none;
  }
}
.is-largeReview .c-reviewSummary__textWrapper {
  font-size: 2rem;
  font-weight: normal;
}
.is-largeReview .c-reviewSummary .c-reviewStar {
  font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
  .c-currentPost__item:nth-child(n+4) {
    display: none;
  }
}
/*# sourceMappingURL=p-service.css.map */
