@charset "UTF-8";
/* ===============================================
00_foundation
=============================================== */
/*
  Reset
----------------------------------------------- */
/*
  # Global
---------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  # Document & Sections
---------------------------------------------- */
:where(html) {
  block-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
}

:where(body) {
  min-block-size: 100%;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

/*
  # Grouping content
---------------------------------------------- */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  font-size: 100%;
  font: inherit;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(ul, ol) {
  list-style: none;
}

/*
  # Text-level semantics
---------------------------------------------- */
:where(a:not([class])) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*
  # Embedded content
---------------------------------------------- */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* max-with:100%;と同じ */
  block-size: auto;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

/*
  # Tabular data
---------------------------------------------- */
:where(table) {
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
:where(input, button, textarea, select, optgroup) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

/*
  # Interactive & Misc
---------------------------------------------- */
:where(template, [hidden]:not([hidden=until-found])) {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
:where([disabled], [aria-disabled=true]) {
  cursor: not-allowed;
}

:where([aria-busy=true]) {
  cursor: progress;
}

:where([aria-controls]) {
  cursor: pointer;
}

:where([aria-hidden=false][hidden]) {
  display: initial;
}

:where([aria-hidden=false][hidden]):not(:focus) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

:where(:focus:not(:focus-visible), ::before:focus:not(:focus-visible), ::after:focus:not(:focus-visible)) {
  outline: none;
}

/**
 * Prettier ignore
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after,
  ::backdrop {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    view-transition-name: none !important;
  }
}
/*
  # Other
---------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th, table td {
  font-weight: 400;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

/* ===============================================
font-size
=============================================== */
/* ===============================================
hover
=============================================== */
/*
  Base
----------------------------------------------- */
/* Custom Property */
:root {
  --mainColor: #231815;
  --whiteColor: #fff;
  --rprColor: #406397;
  --redColor: #f15a24;
  --pinkColor: #ff9495;
  --blueColor: #698ce6;
  --blueColor02: #58a4c9;
  --yellowColor: #ffda2a;
  --grayColor01: #333;
  --grayColor02: #666;
  --grayColor03: #999;
  --blueTextColor: #3c525c;
  --grayTextColor: #4d4d4d;
  --bgColor: #e6ebee;
  --bgBlueColor: #a6d9f7;
  --bgYellowColor: #fffcd1;
  --lineColor: #ccc;
  --content-width: 540px;
  --leading-trim: calc((1em - 1lh) / 2);
  --sansFont: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --enFont: "Georgia", "Times New Roman", "Times", serif;
}
@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px; /* `px`などの単位が必要 */
  }
}

/********** media query **********/
@media screen and (min-width: 768px) {
  :root {
    --content-width: 1000px;
  }
}
/* Default Style */
html {
  scroll-padding-top: 140px;
}

body {
  position: relative;
  font-family: var(--sansFont);
  font-weight: 400;
  line-height: 1.8;
  color: var(--mainColor);
  background-color: var(--whiteColor);
  font-feature-settings: "palt";
}

.br,
.spbr,
.tabbr {
  display: block;
}

.spNone {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .spbr {
    display: inline;
  }
  .pcbr {
    display: block;
  }
  .spNone {
    display: block;
  }
  .pcNone {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .tabbr {
    display: inline;
  }
}
/*
  Accesibility
----------------------------------------------- */
.visuallyHidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
}

@media (min-width: 751px) {
  a[href*="tel:"],
  a[href*="Tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* ===============================================
L-Container
=============================================== */
.container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.l-S01,
.l-S02,
.l-S03 {
  position: relative;
}

.l-S01 {
  width: 100%;
}

.l-S02 {
  width: 85%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-S02 {
    max-width: var(--content-width);
  }
}
.l-L01,
.l-L02,
.l-L03,
.l-L04,
.l-L05,
.l-L06,
.l-L07,
.l-L08,
.l-L09,
.l-L10 {
  position: relative;
  width: 100%;
}

/* ===============================================
L-Header
=============================================== */
.l-header {
  position: sticky;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
}
.l-header .l-S02, .l-header .l-L01 {
  height: 100%;
}
.l-header .l-S02 {
  max-width: 1440px;
  width: 90%;
}
.l-header .l-L01 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 40px;
}
.l-header .l-L02 {
  width: 70%;
}
.l-header .l-L02 .l-header__title img {
  width: 250px;
}
.l-header .l-L03 {
  flex: 1;
}

/********** media query **********/
@media screen and (min-width: 1000px) {
  .l-header {
    margin-top: 40px;
  }
  .l-header .l-L02 {
    width: 35%;
  }
  .l-header .l-L02 .l-header__title img {
    width: 354px;
  }
}
/* ===============================================
L-Main
=============================================== */
/*
  Hero
----------------------------------------------- */
.s-topHero .l-L02 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  display: inline-block;
  width: 80%;
  max-width: 442px;
  z-index: 1;
}
.s-topHero .slideFade01 img {
  height: 100%;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topHero .l-L02 {
    top: 55%;
    left: 6%;
    right: auto;
  }
}
/*
  About
----------------------------------------------- */
.s-topAbout {
  margin: 112px 0 192px 0;
}
.s-topAbout .l-L02 {
  margin-bottom: 96px;
}
.s-topAbout .l-L03 {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 64px;
  padding-left: 24px;
}
.s-topAbout .l-L04 {
  text-align: center;
  margin-bottom: 64px;
}
.s-topAbout .l-L04 .b-text-lv1 {
  line-height: 3;
}
.s-topAbout .l-L04 .b-text-lv3 {
  margin-top: 1em;
}
.s-topAbout .l-L05 {
  padding-left: 32px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topAbout .l-L03 {
    margin-bottom: 96px;
  }
}
/*
  Product
----------------------------------------------- */
.s-topProduct {
  margin-bottom: 180px;
  overflow: hidden;
}
.s-topProduct .l-S02 {
  max-width: 1200px;
}
.s-topProduct .l-L02 {
  margin-bottom: 64px;
}
.s-topProduct .l-L03 {
  display: flex;
  flex-direction: column;
  gap: 72px 0;
}
.s-topProduct .b-product__box {
  padding: 56px 5%;
  background-color: var(--bgColor);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.s-topProduct .b-product__box .wrapper {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.s-topProduct .b-product__box .image {
  width: 100%;
}
.s-topProduct .b-product__box .textBox {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.s-topProduct .b-product__box .textBox .titleBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px 0;
  padding: 16px 16px 16px 24px;
  background-color: var(--whiteColor);
  border-radius: 50px;
}
.s-topProduct .b-product__box .textBox .iconBox {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.s-topProduct .b-product__box .textBox .iconBox .call, .s-topProduct .b-product__box .textBox .iconBox .time {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.s-topProduct .b-product__box .textBox .iconBox .call::before, .s-topProduct .b-product__box .textBox .iconBox .time::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
}
.s-topProduct .b-product__box .textBox .iconBox .call::before {
  content: "";
  background-image: url(../../assets/images/top/rpr_icon_call.svg);
}
.s-topProduct .b-product__box .textBox .iconBox .time::before {
  content: "";
  background-image: url(../../assets/images/top/rpr_icon_time.svg);
}
.s-topProduct .b-product__box .textBox .text {
  line-height: 2.4;
  letter-spacing: 0.08rem;
  text-align: justify;
  padding: 0 1.5em;
}
.s-topProduct .b-product__box .b-sectionButton {
  margin-top: 24px;
}

/********** media query **********/
@media screen and (min-width: 560px) {
  .s-topProduct .b-product__box .textBox .titleBox {
    border-radius: 100px;
  }
}
@media screen and (min-width: 1000px) {
  .s-topProduct .b-product__box .wrapper {
    max-width: 1200px;
    margin: 0;
    flex-direction: row;
    gap: 0 40px;
  }
  .s-topProduct .b-product__box .image {
    width: 32%;
  }
  .s-topProduct .b-product__box .textBox {
    flex: 1;
  }
  .s-topProduct .b-product__box .textBox .titleBox {
    flex-direction: row;
  }
  .s-topProduct .b-product__box .textBox .iconBox {
    width: 8.5em;
    flex-direction: column;
    gap: 4px;
  }
  .s-topProduct .b-product__box .textBox .iconBox .call, .s-topProduct .b-product__box .textBox .iconBox .time {
    gap: 0 12px;
  }
  .s-topProduct .b-product__box .textBox .iconBox .call::before, .s-topProduct .b-product__box .textBox .iconBox .time::before {
    width: 32px;
    height: 32px;
  }
  .s-topProduct .b-product__box .b-sectionButton {
    justify-content: end;
    margin-top: auto;
    padding-right: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .s-topProduct .b-product__box {
    padding: 56px;
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
  .s-topProduct .b-product__box .wrapper {
    gap: 0 6%;
    padding-right: 80px;
  }
}
/*
  News
----------------------------------------------- */
.s-topNews {
  margin-bottom: 160px;
}
.s-topNews .l-S02 {
  max-width: 670px;
}
.s-topNews .l-L02 {
  margin-bottom: 52px;
}
.s-topNews .b-topNews__list {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.s-topNews .b-topNews__list .textBox {
  display: flex;
  flex-direction: column;
  gap: 0 2em;
  padding: 4px 20px;
  border-bottom: 1px solid var(--lineColor);
}
.s-topNews .b-topNews__list .textBox time {
  width: 6em;
  letter-spacing: 0;
}
.s-topNews .b-topNews__list .textBox .title {
  flex: 1;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topNews .b-topNews__list .textBox {
    flex-direction: row;
  }
}
/*
  Company
----------------------------------------------- */
.s-topCompany {
  margin-bottom: 200px;
}
.s-topCompany .l-L02, .s-topCompany .l-L03 {
  text-align: center;
}
.s-topCompany .l-L02 {
  margin-bottom: 36px;
}
.s-topCompany .l-L03 {
  margin-bottom: 40px;
}
.s-topCompany .l-L04 {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.s-topCompany .l-L04 .b-topCompany__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.s-topCompany .l-L04 .b-topCompany__list.b-text-lv2 {
  line-height: 2.3;
}
.s-topCompany .l-L04 .b-topCompany__list .textBox {
  display: flex;
  flex-direction: column;
  gap: 0 2em;
}
.s-topCompany .l-L04 .b-topCompany__list .textBox dd {
  flex: 1;
}
.s-topCompany .l-L04 .map {
  margin-top: 12px;
}
.s-topCompany .l-L04 .map iframe {
  width: 100%;
  max-width: 100%;
}
.s-topCompany .b-sectionButton {
  justify-content: flex-start;
  margin-top: 1rem;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topCompany .l-L04 .b-topCompany__list {
    gap: 0;
  }
  .s-topCompany .l-L04 .b-topCompany__list .textBox {
    flex-direction: row;
    gap: 0 2em;
  }
  .s-topCompany .l-L04 .b-topCompany__list .textBox dt {
    position: relative;
    width: 5.8em;
    display: flex;
    justify-content: space-between;
  }
  .s-topCompany .l-L04 .b-topCompany__list .textBox dt::before {
    content: "：";
    position: absolute;
    top: 0;
    right: -1em;
  }
  .s-topCompany .b-sectionButton {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .s-topCompany .l-L04 {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 64px;
  }
}
/* ===============================================
Service
=============================================== */
.l-service .l-S02 {
  max-width: 490px;
}
@media screen and (min-width: 768px) {
  .l-service .l-S02 {
    max-width: var(--content-width);
  }
}

/*
  Hero
----------------------------------------------- */
.s-serviceHero {
  margin: 8px 0 60px 0;
}
.s-serviceHero .l-S02 {
  width: 90%;
}
.s-serviceHero .l-L02 {
  text-align: center;
  margin-bottom: 6px;
}
.s-serviceHero .l-L02 .b-serviceTitle-lv1 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-serviceHero .l-L03 {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 14px;
}
.s-serviceHero .l-L04 {
  margin-bottom: 24px;
  text-align: center;
}
.s-serviceHero .l-L04 .b-serviceHero__subCopy, .s-serviceHero .l-L04 .b-serviceText {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-serviceHero .l-L04 .b-serviceHero__subCopy {
  margin-bottom: 6px;
}
.s-serviceHero .l-L05 {
  width: 97vw;
  margin: 0 calc(50% - 48.5vw);
  margin-bottom: 46px;
}
.s-serviceHero .l-L06 {
  text-align: center;
}

.b-serviceHero__mainCopy {
  word-break: keep-all;
  overflow-wrap: anywhere;
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
}
.b-serviceHero__mainCopy::before {
  content: "";
  position: relative;
  top: -2px;
  left: -8px;
  background-image: url(../../assets/images/common/rpr_icon_map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 60px;
}

.b-serviceHero__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 4px;
       column-gap: 4px;
}

/********** media query **********/
@media screen and (min-width: 560px) {
  .s-serviceHero .l-L03 {
    max-width: 100%;
    margin: 0;
    margin-bottom: 14px;
  }
  .s-serviceHero .l-L05 {
    width: 100%;
    margin: 0;
    margin-bottom: 46px;
  }
}
@media screen and (min-width: 768px) {
  .s-serviceHero .l-L01::before {
    content: "";
    position: absolute;
    top: 100px;
    right: clamp(-11.25rem, -42.2844827586rem + 64.6551724138vw, -1.875rem);
    background-image: url(../../assets/images/meo/rpr_meo_hero@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 350px;
    height: 340px;
    z-index: -1;
  }
  .s-serviceHero .l-L02 {
    text-align: left;
    margin-bottom: 10px;
  }
  .s-serviceHero .l-L04 {
    text-align: left;
  }
  .s-serviceHero .l-L04 .b-serviceHero__subCopy {
    margin-bottom: 3px;
  }
  .s-serviceHero .l-L05 {
    max-width: 510px;
    margin-left: -12px;
  }
}
@media screen and (min-width: 1000px) {
  .s-serviceHero {
    margin: 24px 0 60px 0;
  }
  .s-serviceHero .l-L01::before {
    top: 84px;
    right: clamp(-10.625rem, -48.125rem + 60vw, -6.875rem);
    width: 356px;
    height: 346px;
  }
  .s-serviceHero .l-L02 {
    margin-bottom: 28px;
  }
  .s-serviceHero .l-L03 {
    left: 12px;
    margin-bottom: 6px;
  }
  .s-serviceHero .l-L04 {
    margin-bottom: 40px;
  }
  .s-serviceHero .l-L05 {
    margin-bottom: 46px;
    max-width: 770px;
  }
  .b-serviceHero__mainCopy::before {
    top: -10px;
    left: -12px;
    width: 88px;
    height: 104px;
  }
  .b-serviceHero__list {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
/*
  About
----------------------------------------------- */
.s-serviceAbout {
  padding: 40px 0;
  background-color: var(--bgBlueColor);
}
.s-serviceAbout .l-L01 {
  display: grid;
  grid-template: "image" "title" "text";
  gap: 20px;
}
.s-serviceAbout .l-L02 {
  grid-area: title;
  margin-top: 28px;
}
.s-serviceAbout .l-L03 {
  grid-area: text;
  text-align: justify;
}
.s-serviceAbout .l-L04 {
  grid-area: image;
  width: 90%;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-serviceAbout {
    padding: 48px 0;
  }
  .s-serviceAbout .l-L01 {
    grid-template: "image title" "image text"/38% 1fr;
    align-items: center;
    gap: 20px 40px;
  }
  .s-serviceAbout .l-L04 {
    width: auto;
  }
}
@media screen and (min-width: 1000px) {
  .s-serviceAbout .l-L01 {
    grid-template-columns: 43% 1fr;
    align-items: start;
  }
}
/*
  Merit
----------------------------------------------- */
.s-serviceMerit {
  margin-top: -2px;
  padding: 6px 0 56px 0;
  margin-bottom: 56px;
  background-color: var(--bgBlueColor);
}
.s-serviceMerit .l-L02 {
  width: 95vw;
  margin: 0 calc(50% - 47.5vw);
  padding: 16px 2% 56px;
  margin-bottom: 48px;
  background-color: var(--whiteColor);
}
.s-serviceMerit .l-L02 .b-serviceMerit__title-lv1 {
  text-align: center;
  margin-bottom: 8px;
}
.s-serviceMerit .l-L03 {
  text-align: center;
  margin-bottom: 30px;
}
.s-serviceMerit .l-L03 .b-serviceMerit__title-lv2 {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}
.s-serviceMerit .l-L04 {
  max-width: 340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 0;
  z-index: 1;
}

.b-serviceMerit__list {
  display: grid;
  justify-content: center;
  row-gap: 24px;
}
.b-serviceMerit__list .listItem {
  position: relative;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding: 0 10px;
  z-index: 1;
}
.b-serviceMerit__list .listItem::before {
  content: "";
  position: relative;
  top: 4px;
  left: -2px;
  background-image: url(../../assets/images/common/rpr_icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.b-serviceMerit__list .listItem::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  background-image: url(../../assets/images/common/rpr_line02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 18px;
  z-index: -1;
}

.b-serviceMerit__box {
  position: relative;
  padding: 28px 32px;
  background-color: var(--bgYellowColor);
  border-radius: 20px 20px 0 0;
}
.b-serviceMerit__box::before {
  content: "";
  position: absolute;
  left: -2%;
  bottom: -4px;
  width: 104%;
  height: 8px;
  border-radius: 10px;
  background-color: var(--blueColor02);
  z-index: -1;
}
.b-serviceMerit__box .title {
  position: relative;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  margin-bottom: 14px;
}
.b-serviceMerit__box .title::before {
  content: "";
  position: relative;
  top: 3px;
  background-image: url(../../assets/images/common/rpr_icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 28px;
}
.b-serviceMerit__box .text {
  text-align: justify;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-serviceMerit {
    padding: 6px 0 90px 0;
    margin-bottom: 70px;
  }
  .s-serviceMerit .l-L02 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 48px;
    padding: 16px 40px 60px;
  }
  .s-serviceMerit .l-L03 .b-serviceMerit__title-lv2 {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
  .s-serviceMerit .l-L04 {
    max-width: 940px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 56px;
  }
  .b-serviceMerit__list {
    padding-right: 16px;
  }
  .b-serviceMerit__list .listItem {
    padding: 0 24px;
  }
  .b-serviceMerit__box {
    padding: 26px 40px 28px 42px;
  }
}
@media screen and (min-width: 1000px) {
  .b-serviceMerit__list .listItem {
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding: 0 24px;
  }
  .b-serviceMerit__list .listItem::before {
    width: 42px;
    height: 42px;
  }
  .b-serviceMerit__list .listItem::after {
    bottom: -2px;
    height: 24px;
  }
  .b-serviceMerit__box .title {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .b-serviceMerit__box .title::before {
    top: 10px;
    width: 56px;
    height: 48px;
  }
}
/*
  Worry
----------------------------------------------- */
.s-serviceWorry {
  margin-bottom: 56px;
}
.s-serviceWorry .l-L02 {
  text-align: center;
  margin-bottom: 32px;
}
.s-serviceWorry .l-L03 {
  margin-bottom: 56px;
}
.s-serviceWorry .l-L04 {
  display: grid;
  justify-items: center;
  row-gap: 18px;
  text-align: center;
}
.s-serviceWorry .l-L04 .b-serviceWorry__copy {
  display: inline-block;
  max-width: 455px;
  width: 100%;
  margin-left: 32px;
}

.b-serviceWorry__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
  gap: 40px 0;
}
.b-serviceWorry__list .listItem {
  display: grid;
  grid-template: "title" "text";
  grid-row: span 2;
  grid-template-rows: subgrid;
  gap: 0;
  background-color: var(--whiteColor);
  border-radius: 20px;
  box-shadow: 5px 5px 10px var(--lineColor);
}
.b-serviceWorry__list .listItem .title {
  grid-area: title;
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding: 24px 10px 24px 5%;
  background-color: var(--rprColor);
  color: var(--whiteColor);
  border-radius: 20px 20px 0 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.b-serviceWorry__list .listItem .title span {
  flex: 1;
}
.b-serviceWorry__list .listItem .title::before {
  content: "";
  background-image: url(../../assets/images/common/rpr_icon_worry.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 52px;
  height: 44px;
}
.b-serviceWorry__list .listItem .text {
  grid-area: text;
  text-align: justify;
  padding: 24px 24px 32px 24px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-serviceWorry {
    margin-bottom: 50px;
  }
  .b-serviceWorry__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
@media screen and (min-width: 1000px) {
  .b-serviceWorry__list {
    gap: 48px 60px;
    -moz-column-gap: clamp(2.5rem, -1.25rem + 6.6666666667vw, 3.75rem);
         column-gap: clamp(2.5rem, -1.25rem + 6.6666666667vw, 3.75rem);
  }
  .b-serviceWorry__list .listItem .title {
    -moz-column-gap: clamp(0.625rem, -2.75rem + 6vw, 1.75rem);
         column-gap: clamp(0.625rem, -2.75rem + 6vw, 1.75rem);
    padding: 40px 24px 40px 8.5%;
    padding-left: clamp(1rem, -3.5rem + 8vw, 2.5rem);
  }
  .b-serviceWorry__list .listItem .title::before {
    width: clamp(2.5rem, -3.5rem + 10.6666666667vw, 4.5rem);
    height: 62px;
  }
  .b-serviceWorry__list .listItem .text {
    padding: 32px 36px 32px 44px;
  }
}
/*
  Service
----------------------------------------------- */
.s-serviceService {
  padding: 56px 0;
  background-color: var(--bgColor);
}
.s-serviceService .l-L02 {
  text-align: center;
  margin-bottom: 32px;
}
.s-serviceService .l-L02 .b-serviceTitle-lv2 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-serviceService .l-L03 {
  margin-bottom: 56px;
}

.b-serviceService__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 0;
}
.b-serviceService__list .listItem {
  display: grid;
  grid-template: "image" "title" "text";
  grid-row: span 3;
  grid-template-rows: subgrid;
  row-gap: 14px;
}
.b-serviceService__list .listItem .title {
  grid-area: title;
  position: relative;
  padding-left: 1.3em;
  word-break: keep-all;
  overflow-wrap: anywhere;
  align-content: center;
  text-indent: -1em;
}
.b-serviceService__list .listItem .title::before {
  content: "";
  position: relative;
  top: 0.1em;
  left: -0.3em;
  display: inline-block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--rprColor);
}
.b-serviceService__list .listItem .text {
  grid-area: text;
  text-align: justify;
}
.b-serviceService__list .listItem .image {
  grid-area: image;
  position: relative;
  margin-bottom: 8px;
}
.b-serviceService__list .listItem .button {
  justify-content: flex-start;
  margin-top: 22px;
}
.b-serviceService__list .listItem.--icon {
  margin-top: 20px;
}
.b-serviceService__list .listItem.--icon .image::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -20px;
  background-image: url(../../assets/images/common/rpr_icon_relo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 80px;
  height: 80px;
}

.b-serviceService__annotation {
  display: inline-block;
  padding-left: 2.8em;
  text-indent: -2.8em;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-serviceService {
    padding: 68px 0;
  }
  .s-serviceService .l-L02 {
    margin-bottom: 48px;
  }
  .s-serviceService .l-L03 {
    margin-bottom: 68px;
  }
  .b-serviceService__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 56px;
  }
}
@media screen and (min-width: 1000px) {
  .b-serviceService__list {
    gap: 40px 96px;
  }
  .b-serviceService__list .listItem .title {
    min-height: 72px;
  }
  .b-serviceService__list .listItem .title::before {
    top: 0.15em;
    width: 28px;
    height: 28px;
  }
  .b-serviceService__list .listItem.--icon {
    margin-top: 40px;
  }
  .b-serviceService__list .listItem.--icon .image::before {
    top: -45px;
    left: -45px;
    width: 90px;
    height: 90px;
  }
}
/*
  Review
----------------------------------------------- */
.s-serviceReview {
  margin: 56px 0;
}

.b-serviceReview__box {
  display: grid;
  grid-template: "title" "name" "graphBox" "result" "text";
  justify-items: center;
  gap: 8px 0;
}
.b-serviceReview__box .title {
  grid-area: title;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  position: relative;
  max-width: 220px;
  height: 108px;
  padding: 16px 24px 0;
}
.b-serviceReview__box .title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/common/rpr_balloon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.b-serviceReview__box .name {
  grid-area: name;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.b-serviceReview__box .graphBox {
  grid-area: graphBox;
  display: grid;
  grid-template: "image" "text";
  justify-items: center;
  gap: 32px 0;
  width: 100%;
  margin-bottom: 24px;
}
.b-serviceReview__box .graphBox .graphImage {
  grid-area: image;
  max-width: 300px;
}
.b-serviceReview__box .graphBox .graphText {
  grid-area: text;
  display: grid;
  align-content: center;
}
.b-serviceReview__box .graphBox .graphResult {
  position: relative;
  display: flex;
  align-items: baseline;
  -moz-column-gap: 4px;
       column-gap: 4px;
  padding-left: 2px;
  margin-block: calc((18px - 1lh) / 2);
  margin-top: -4px;
}
.b-serviceReview__box .graphBox .graphResult .label {
  width: 5em;
}
.b-serviceReview__box .graphBox .graphResult::before {
  content: "";
  position: relative;
  top: 2px;
  left: -2px;
  width: 8px;
  height: 18px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: var(--rprColor);
}
.b-serviceReview__box .result {
  grid-area: result;
  text-align: justify;
  width: 95vw;
  margin: 0 calc(50% - 47.5vw);
  margin-bottom: 24px;
  padding: 16px 28px 18px 28px;
  background-color: var(--rprColor);
}
.b-serviceReview__box .text {
  grid-area: text;
  text-align: justify;
}

/********** media query **********/
@media screen and (min-width: 560px) {
  .b-serviceReview__box .result {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .s-serviceReview {
    margin: 90px 0;
  }
  .s-serviceReview .l-S02 {
    max-width: 800px;
  }
  .b-serviceReview__box {
    grid-template: "title graphBox" "name graphBox" ". result" "text text"/220px 1fr;
    gap: 0 2%;
  }
  .b-serviceReview__box .title {
    left: -6px;
  }
  .b-serviceReview__box .name {
    top: -24px;
    left: -6px;
    margin-bottom: 0;
  }
  .b-serviceReview__box .graphBox {
    grid-template: "image text"/50% 1fr;
    gap: 0 10px;
  }
  .b-serviceReview__box .result {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1000px) {
  .b-serviceReview__box {
    grid-template-columns: 254px 1fr;
    gap: 0 50px;
  }
  .b-serviceReview__box .title {
    max-width: 254px;
    height: 122px;
    padding: 24px 24px 0;
  }
  .b-serviceReview__box .name {
    top: -6px;
  }
}
/*
  Price
----------------------------------------------- */
.s-servicePrice {
  padding: 64px 0 48px;
  background-color: var(--bgBlueColor);
}
.s-servicePrice .l-S02 {
  width: 95vw;
  max-width: 100%;
}
.s-servicePrice .l-L02 {
  text-align: center;
  margin-bottom: 32px;
}
.s-servicePrice .l-L02 .b-serviceTitle-lv2 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-servicePrice .l-L03 {
  margin-bottom: 10px;
}
.s-servicePrice .l-L04 {
  padding-left: 10px;
}

.b-servicePrice__table {
  border-collapse: separate;
  border-spacing: 5px 6px;
  width: 100%;
}
.b-servicePrice__table thead th {
  font-weight: 700;
  padding: 16px;
  background-color: var(--whiteColor);
  border-radius: 5px;
}
.b-servicePrice__table thead th:nth-of-type(1) {
  width: 41%;
  border: 1px solid var(--lineColor);
  color: var(--grayTextColor);
}
.b-servicePrice__table thead th:nth-of-type(2) {
  width: 29.5%;
  background-color: var(--redColor);
  color: var(--whiteColor);
}
.b-servicePrice__table thead th:nth-of-type(3) {
  width: 29.5%;
  background-color: var(--rprColor);
  color: var(--whiteColor);
}
.b-servicePrice__table tbody th,
.b-servicePrice__table tbody td {
  font-weight: 500;
  background-color: var(--whiteColor);
  border: 1px solid var(--lineColor);
  border-radius: 5px;
}
.b-servicePrice__table tbody th {
  letter-spacing: 0;
  text-align: left;
  padding: 16px;
}
.b-servicePrice__table tbody td {
  text-align: center;
  padding: 16px 12px;
}
.b-servicePrice__table tbody td .textSpace {
  margin: 0 8px;
}
.b-servicePrice__table tbody td .line-through {
  position: relative;
}
.b-servicePrice__table tbody td .line-through::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 0;
  margin: auto 0;
  width: 100%;
  height: 2px;
  background-color: var(--rprColor);
}

.b-servicePrice__list {
  display: grid;
  row-gap: 4px;
  padding-left: 1em;
}
.b-servicePrice__list .listItem {
  text-indent: -1em;
}

/********** media query **********/
@media screen and (max-width: 559px) {
  .s-servicePrice {
    padding: 56px 0;
  }
  .b-servicePrice__table {
    border-collapse: collapse;
    max-width: 360px;
    margin: 0 auto;
  }
  .b-servicePrice__table thead {
    display: none;
  }
  .b-servicePrice__table tbody tr {
    display: block;
    margin-bottom: 2em;
  }
  .b-servicePrice__table tbody th {
    display: block;
    margin-bottom: 8px;
    text-align: center;
  }
  .b-servicePrice__table tbody td {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 4px;
  }
  .b-servicePrice__table tbody td .text {
    flex: 1;
  }
  .b-servicePrice__table tbody td.colspan {
    justify-content: center;
    padding: 16px 40px 16px 10px;
  }
  .b-servicePrice__table tbody td.colspan::before {
    content: none;
    background: none;
    border: none;
    padding: 0;
    min-width: 0;
  }
  .b-servicePrice__table tbody td::before {
    content: attr(data-row-label);
    display: inline-block;
    padding: 16px 10px;
    width: 10.5em;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
  }
  .b-servicePrice__table tbody td[data-row-label=来るクルLitePlus]::before {
    background-color: var(--redColor);
    color: var(--whiteColor);
  }
  .b-servicePrice__table tbody td[data-row-label=来るクルProValue]::before {
    background-color: var(--rprColor);
    color: var(--whiteColor);
  }
  .b-servicePrice__table tbody td[data-row-label=スタンダード（成果報酬プラン）]::before {
    content: "スタンダード\a（成果報酬プラン）";
    white-space: pre;
    background-color: var(--redColor);
    color: var(--whiteColor);
  }
  .b-servicePrice__table tbody td[data-row-label=スタンダード（固定プラン）]::before {
    content: "スタンダード\a（固定プラン）";
    white-space: pre;
    background-color: var(--rprColor);
    color: var(--whiteColor);
  }
}
@media screen and (min-width: 560px) {
  .b-servicePrice__table tbody tr.paddingMin01 td {
    padding: 4px 42px 8px 12px;
  }
  .b-servicePrice__table tbody tr.paddingMin02 td {
    padding: 10px 12px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
@media screen and (min-width: 1000px) {
  .s-servicePrice .l-S02 {
    max-width: 1020px;
  }
  .s-servicePrice .l-L03 {
    margin-bottom: 10px;
  }
  .b-servicePrice__table {
    border-spacing: 10px 12px;
  }
  .b-servicePrice__table tbody th,
  .b-servicePrice__table tbody td {
    padding: 16px 24px;
  }
  .b-servicePrice__table tbody tr.paddingMin01 td {
    padding: 3px 80px 8px 24px;
  }
  .b-servicePrice__table tbody tr.paddingMin02 td {
    padding: 10px 24px;
  }
}
/*
  Contact
----------------------------------------------- */
.s-serviceContact {
  margin: 56px 0;
}

.b-serviceContact__box {
  text-align: center;
  font-style: normal;
}
.b-serviceContact__box .b-serviceButton {
  margin-bottom: 32px;
}
.b-serviceContact__box .text {
  margin-bottom: 12px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.b-serviceContact__box .tel {
  margin-bottom: 4px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-serviceContact {
    margin: 72px 0;
  }
  .b-serviceContact__box .b-serviceButton {
    margin-bottom: 36px;
  }
}
/*
  Banner
----------------------------------------------- */
.s-serviceBanner {
  padding: 56px 0;
  background-color: var(--rprColor);
}
.s-serviceBanner .l-L02 {
  text-align: center;
  margin-bottom: 32px;
}
.s-serviceBanner .l-L02 .b-serviceBanner__title {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-serviceBanner .l-L03 .b-serviceBanner {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-serviceBanner {
    padding: 48px 0 56px 0;
  }
  .s-serviceBanner .l-L03 .b-serviceBanner {
    flex-direction: row;
    gap: 0 16px;
  }
}
/* ===============================================
  Management
=============================================== */
/*
  Hero
----------------------------------------------- */
.s-mgmtHero {
  margin: 8px 0 60px 0;
}
.s-mgmtHero .l-L02, .s-mgmtHero .l-L03, .s-mgmtHero .l-L05, .s-mgmtHero .l-L06 {
  text-align: center;
}
.s-mgmtHero .l-L02 {
  margin-bottom: 6px;
}
.s-mgmtHero .l-L02 .b-serviceTitle-lv1 {
  letter-spacing: 0;
}
.s-mgmtHero .l-L03 {
  margin-bottom: 24px;
}
.s-mgmtHero .l-L03 .b-mgmtHero__mainCopy {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-mgmtHero .l-L04 {
  width: 95vw;
  margin: 0 calc(50% - 47.5vw);
  max-width: 600px;
  margin-bottom: 24px;
}
.s-mgmtHero .l-L05 {
  margin-bottom: 46px;
}
.s-mgmtHero .l-L05 .b-serviceText {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/********** media query **********/
@media screen and (min-width: 560px) {
  .s-mgmtHero .l-L04 {
    width: 100%;
    margin: 0;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .s-mgmtHero .l-L01::before {
    content: "";
    position: absolute;
    right: clamp(-8.75rem, -31.5086206897rem + 47.4137931034vw, -1.875rem);
    bottom: 8px;
    background-image: url(../../assets/images/management/rpr_mgmt_hero@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 250px;
    height: 178px;
    z-index: -1;
  }
  .s-mgmtHero .l-L02, .s-mgmtHero .l-L03, .s-mgmtHero .l-L05 {
    text-align: left;
  }
  .s-mgmtHero .l-L02 {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1000px) {
  .s-mgmtHero {
    margin: 24px 0 60px 0;
  }
  .s-mgmtHero .l-L01::before {
    bottom: 75px;
    right: clamp(-13.75rem, -61.875rem + 77vw, -4.125rem);
    width: 310px;
    height: 218px;
  }
  .s-mgmtHero .l-L02 {
    margin-bottom: 40px;
  }
  .s-mgmtHero .l-L03 {
    margin-left: -4px;
    margin-bottom: 40px;
  }
  .s-mgmtHero .l-L04 {
    max-width: 810px;
    margin-bottom: 32px;
  }
  .s-mgmtHero .l-L05 {
    margin-bottom: 64px;
  }
}
/*
  Worry
----------------------------------------------- */
.s-mgmtWorry {
  padding: 56px 0;
  margin-bottom: 104px;
  background-color: var(--bgBlueColor);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-mgmtWorry {
    padding: 70px 0 64px 0;
  }
}
/*
  Merit
----------------------------------------------- */
.s-mgmtMerit {
  margin-bottom: 120px;
}
.s-mgmtMerit .l-L02 {
  text-align: center;
  margin-bottom: 28px;
}
.s-mgmtMerit .l-L02 .b-serviceTitle-lv2 {
  letter-spacing: 0.025rem;
}
.s-mgmtMerit .l-L03 {
  text-align: center;
  margin-bottom: 32px;
}
.s-mgmtMerit .l-L03 .b-mgmtMerit__mainCopy {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-mgmtMerit .l-L04 {
  width: 95vw;
  margin: 0 calc(50% - 47.5vw);
  margin-bottom: 100px;
}

.b-mgmtMerit__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 72px 0;
}
.b-mgmtMerit__list .listItem {
  display: grid;
  grid-template: "number" "image" "title" "text" "annotation";
}
.b-mgmtMerit__list .listItem .number {
  grid-area: number;
  justify-self: center;
  text-align: center;
  position: relative;
  max-width: 120px;
  height: 50px;
  padding: 6px 24px 0;
  margin-bottom: 10px;
}
.b-mgmtMerit__list .listItem .number::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/common/rpr_balloon--red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.b-mgmtMerit__list .listItem .title {
  grid-area: title;
  word-break: keep-all;
  overflow-wrap: anywhere;
  align-content: center;
  margin-bottom: 14px;
}
.b-mgmtMerit__list .listItem .text {
  grid-area: text;
  text-align: justify;
}
.b-mgmtMerit__list .listItem .annotation {
  grid-area: annotation;
  margin-left: 0.5em;
  margin-top: 20px;
}
.b-mgmtMerit__list .listItem .image {
  grid-area: image;
  margin-bottom: 22px;
  position: relative;
}
.b-mgmtMerit__list .listItem.--icon .image::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -20px;
  background-image: url(../../assets/images/common/rpr_icon_relo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 80px;
  height: 80px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-mgmtMerit {
    margin-bottom: 120px;
  }
  .s-mgmtMerit .l-L02 {
    margin-bottom: 28px;
  }
  .s-mgmtMerit .l-L03 {
    margin-bottom: 40px;
  }
  .s-mgmtMerit .l-L04 {
    width: 100%;
    margin: 0;
    margin-bottom: 120px;
  }
  .b-mgmtMerit__list .listItem {
    grid-template: "number image" auto "title image" auto "text image" 1fr "annotation annotation" auto/1fr 40%;
    gap: 0 48px;
  }
  .b-mgmtMerit__list .listItem .number {
    justify-self: start;
  }
  .b-mgmtMerit__list .listItem .image {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  .b-mgmtMerit__list .listItem .number {
    max-width: 150px;
    height: 64px;
    margin-bottom: 14px;
  }
  .b-mgmtMerit__list .listItem .title {
    margin-bottom: 20px;
  }
  .b-mgmtMerit__list .listItem.--icon .image::before {
    top: -45px;
    left: -35px;
    width: 90px;
    height: 90px;
  }
}
/*
  Review
----------------------------------------------- */
.s-mgmtReview {
  padding: 80px 0 56px;
  margin-bottom: 72px;
  background-color: var(--bgColor);
}
.s-mgmtReview .l-L02 {
  text-align: center;
  margin-bottom: 40px;
}
.s-mgmtReview .l-L03 {
  margin-bottom: 40px;
}
.s-mgmtReview .l-L04 {
  text-align: right;
}

.b-mgmtReview__title {
  text-align: center;
  position: relative;
  max-width: 320px;
  height: 106px;
  margin: 0 auto;
  padding: 30px 8px 0;
  z-index: 0;
}
.b-mgmtReview__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/common/rpr_balloon--row.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.b-mgmtReview__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 64px;
}
.b-mgmtReview__list .listItem {
  display: flex;
  flex-direction: column;
  gap: 28px 0;
}
.b-mgmtReview__list .listItem .name {
  text-align: center;
}
.b-mgmtReview__list .listItem .text {
  text-align: justify;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-mgmtReview {
    margin-bottom: 72px;
  }
  .s-mgmtReview .l-S02 {
    width: 90%;
    max-width: 1200px;
  }
  .b-mgmtReview__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 64px;
  }
}
@media screen and (min-width: 1000px) {
  .b-mgmtReview__title {
    max-width: 374px;
    height: 123px;
    padding: 32px 8px 0;
  }
  .b-mgmtReview__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 5.7%;
  }
}
/*
  Flow
----------------------------------------------- */
.s-mgmtFlow {
  margin-bottom: 120px;
}
.s-mgmtFlow .l-L02 {
  text-align: center;
  margin-bottom: 24px;
}

.b-mgmtFlow__list {
  position: relative;
  display: grid;
  row-gap: 24px;
  z-index: 0;
}
.b-mgmtFlow__list::before {
  content: "";
  position: absolute;
  top: 2.5%;
  left: 30px;
  background-image: url(../../assets/images/common/rpr_dot.svg);
  background-size: contain;
  background-repeat: repeat-y;
  width: 4px;
  height: 90%;
  z-index: -1;
}
.b-mgmtFlow__list .listItem {
  display: grid;
  grid-template: "number title" auto "number text" 1fr/auto 1fr;
  align-items: start;
  gap: 10px 16px;
}
.b-mgmtFlow__list .listItem:last-child .number {
  margin-bottom: 0;
}
.b-mgmtFlow__list .listItem .number {
  grid-area: number;
  position: relative;
}
.b-mgmtFlow__list .listItem .title {
  grid-area: title;
  margin-top: 12px;
}
.b-mgmtFlow__list .listItem .text {
  grid-area: text;
}
.b-mgmtFlow__list .listItem .text .annotation {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (min-width: 768px) {
  .b-mgmtFlow__list {
    row-gap: 0;
  }
  .b-mgmtFlow__list .listItem {
    gap: 10px 24px;
  }
  .b-mgmtFlow__list .listItem .number {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1000px) {
  .b-mgmtFlow__list::before {
    top: 2.5%;
    left: 42px;
  }
  .b-mgmtFlow__list .listItem .number {
    margin-bottom: 104px;
  }
  .b-mgmtFlow__list .listItem .title {
    margin-top: 16px;
  }
}
/*
  Price
----------------------------------------------- */
.s-mgmtPrice .l-L02 {
  text-align: center;
  margin-bottom: 24px;
}
.s-mgmtPrice .l-L02 .b-serviceTitle-lv2 {
  letter-spacing: 0.025rem;
}
.s-mgmtPrice .b-servicePrice__table tbody tr.paddingMin02 td:nth-of-type(2) .text {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}
.s-mgmtPrice .b-servicePrice__table tbody tr.paddingMin02 td:nth-of-type(2) .absolute {
  position: absolute;
  bottom: 2px;
  left: -6px;
}

@media screen and (max-width: 559px) {
  .s-mgmtPrice .b-servicePrice__table tbody tr.paddingMin02 td:nth-of-type(2) .absolute {
    left: 11%;
  }
}
@media screen and (min-width: 1000px) {
  .s-mgmtPrice .b-servicePrice__table tbody tr.paddingMin02 td:nth-of-type(2) .absolute {
    left: -16px;
  }
}
/* ===============================================
News
=============================================== */
/*
  Common
----------------------------------------------- */
/********** media query **********/
/* ===============================================
News-post
=============================================== */
.s-news .l-S02 {
  max-width: 36em;
}
.s-news .l-L03 {
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--whiteColor);
  margin-bottom: 72px;
}
.s-news .l-L04 {
  padding-bottom: 40px;
}
.s-news .l-L04 .b-textA {
  padding-bottom: 40px;
}
.s-news .l-L04 .b-textA:last-child {
  padding-bottom: 0;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-news .l-L03 {
    position: relative;
  }
  .s-news .l-L03 .b-news__time {
    position: absolute;
    top: 0;
    left: 0;
  }
  .s-news .l-L03 .b-news__title {
    text-align: center;
  }
}
/* ===============================================
Coming Soon
=============================================== */
.s-comingSoon {
  margin: -32px 0 64px;
}
.s-comingSoon .l-S02 {
  width: 90%;
}
.s-comingSoon .l-L01 {
  border: 4px solid var(--rprColor);
  padding: 60px 16px;
}
.s-comingSoon .b-comingSoon__title {
  font-size: 2.75rem;
  letter-spacing: 0.025rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--rprColor);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}
.s-comingSoon .b-text-lv1 {
  color: var(--rprColor);
  text-align: center;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-comingSoon {
    margin: -20px 0 80px;
  }
  .s-comingSoon .l-L01 {
    padding: 100px 80px;
  }
  .s-comingSoon .b-comingSoon__title {
    font-size: 4rem;
    margin-bottom: 24px;
  }
}
/* ===============================================
L-Footer
=============================================== */
.l-footer {
  padding: 56px 0 32px 0;
  background-color: var(--rprColor);
  border-top: 0.5px solid var(--lineColor);
  overflow: hidden;
}
.l-footer .l-L02 {
  display: flex;
  flex-direction: column;
  gap: 48px 32px;
  margin-bottom: 48px;
}
.l-footer .l-L03 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-footer .l-L03 .b-text-lv1 {
  letter-spacing: 0.1rem;
  text-align: center;
}
.l-footer .l-L03 .b-footer__logo {
  width: 410px;
  padding: 0 24px 32px 16px;
  border-bottom: 1px solid var(--whiteColor);
  margin-bottom: 24px;
}
.l-footer .l-L04 {
  max-width: 410px;
  margin: 0 auto;
  padding-left: 16px;
}
.l-footer .l-L05 {
  text-align: center;
}
.l-footer .l-L05 .b-text-lv1 {
  letter-spacing: 0.05rem;
}
.l-footer .b-text-lv1 {
  line-height: 2.3;
  color: var(--whiteColor);
}

.b-footerNav {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  color: var(--whiteColor);
}
.b-footerNav .contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  background-color: var(--whiteColor);
  color: var(--rprColor);
  border-radius: 100px;
}

/********** media query **********/
@media screen and (max-width: 559px) {
  .l-footer .l-L03 .b-text-lv1 {
    font-size: clamp(0.813rem, 0.063rem + 3.75vw, 1rem);
    letter-spacing: 0.05rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .l-L04 {
    max-width: 100%;
    padding-left: 0;
  }
  .b-footerNav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px clamp(2rem, -3rem + 8vw, 3rem);
  }
  .b-footerNav .is-hover {
    position: relative;
  }
  .b-footerNav .is-hover .sub-menu {
    min-width: 280px;
    position: absolute;
    top: 2em;
    left: 0;
  }
  .b-footerNav .is-hover .sub-menu li {
    padding: 5px 18px 5px 16px;
    color: var(--rprColor);
    background-color: var(--whiteColor);
  }
  .b-footerNav .is-hover .sub-menu li::before {
    background-color: var(--rprColor);
  }
  .b-footerNav .is-hover .sub-menu li:hover, .b-footerNav .is-hover .sub-menu li:focus {
    background-color: #bdc7cb;
  }
  .b-footerNav .is-hover .sub-menu li:hover a, .b-footerNav .is-hover .sub-menu li:focus a {
    opacity: 1;
  }
  .b-footerNav .contact {
    width: 100%;
    padding-right: 16px;
  }
  .b-footerNav .contact a {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1000px) {
  .l-footer .l-L02 {
    flex-direction: row;
  }
}
/* ===============================================
M-Header
=============================================== */
/* ===============================================
M-Main
=============================================== */
/*
  Common
----------------------------------------------- */
/********** media query **********/
/*
  Top
----------------------------------------------- */
/********** media query **********/
/* ===============================================
M-Footer
=============================================== */
/* ===============================================
hamburger
=============================================== */
.globalNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  padding: 100px 7.5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px 0;
  animation: fadeOut 0.5s ease-in-out;
  translate: 100% 0;
  opacity: 0;
  z-index: 10000;
  color: var(--whiteColor);
}

.hamburgerButton {
  position: fixed;
  top: 20px;
  right: 5%;
  width: 40px;
  height: 40px;
  margin: auto 0;
  border: 0;
  z-index: 1;
  cursor: pointer;
  -webkit-appearance: none; /* Chrome, Safari, Opera, Android */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* IE非対応 */
  transition: all 0.3s ease-in-out;
}
.hamburgerButton:hover {
  opacity: 0.7;
}

.hamburgerButton__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 40px;
  height: 1.5px;
  background-color: var(--mainColor);
}
.hamburgerButton__line:before, .hamburgerButton__line:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: inherit;
  transition: all 0.2s ease-in-out;
}
.hamburgerButton__line:before {
  top: -12px;
}
.hamburgerButton__line:after {
  top: 12px;
}

.is-drawerActive {
  overflow: hidden;
}
.is-drawerActive .globalNav {
  animation: fadeIn 0.5s ease-in-out;
  translate: 0 0;
  opacity: 1;
  overflow: hidden;
  overflow-y: auto;
  background-color: var(--rprColor);
}
.is-drawerActive .hamburgerButton {
  z-index: 11000;
}
.is-drawerActive .hamburgerButton__line {
  background-color: transparent;
}
.is-drawerActive .hamburgerButton__line::before, .is-drawerActive .hamburgerButton__line::after {
  top: 0;
  bottom: 0;
  background-color: var(--whiteColor);
}
.is-drawerActive .hamburgerButton__line::before {
  transform: rotate(45deg);
}
.is-drawerActive .hamburgerButton__line::after {
  transform: rotate(-45deg);
}

.globalNav .contact a {
  padding: 4px 24px 6px;
  color: var(--rprColor);
  background-color: var(--whiteColor);
}

/********** media query **********/
@media screen and (min-width: 560px) {
  .globalNav {
    left: auto;
    width: auto;
    padding: 100px 24px;
  }
}
@media screen and (min-width: 1000px) {
  .globalNav {
    position: static;
    padding: 0;
    width: auto;
    height: auto;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0 2em;
    translate: 0 0;
    opacity: 1;
    color: var(--mainColor);
  }
  .globalNav .is-hover .sub-menu {
    position: absolute;
    top: 2em;
    right: 0;
  }
  .globalNav .is-hover .sub-menu li {
    padding: 5px 18px 5px 16px;
    background-color: #d4dee4;
  }
  .globalNav .is-hover .sub-menu li::before {
    background-color: var(--mainColor);
  }
  .globalNav .is-hover .sub-menu li:hover, .globalNav .is-hover .sub-menu li:focus {
    background-color: #bdc7cb;
  }
  .globalNav .is-hover .sub-menu li:hover a, .globalNav .is-hover .sub-menu li:focus a {
    opacity: 1;
  }
  .globalNav .contact a {
    margin-left: 8px;
    color: var(--whiteColor);
    background-color: var(--rprColor);
  }
  .hamburgerButton {
    display: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-150%);
  }
  50% {
    opacity: 0;
    transform: translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  50% {
    opacity: 0;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
/* ===============================================
  b-text
=============================================== */
/*
  Common
----------- */
.b-text-lv1,
.b-text-lv2,
.b-text-lv3 {
  line-height: 2;
  letter-spacing: 0.075rem;
}
.b-text-lv1.--bold, .b-text-lv1 .--bold,
.b-text-lv2.--bold,
.b-text-lv2 .--bold,
.b-text-lv3.--bold,
.b-text-lv3 .--bold {
  font-weight: 700;
}
.b-text-lv1.--uppercase,
.b-text-lv2.--uppercase,
.b-text-lv3.--uppercase {
  text-transform: uppercase;
}

.b-text-lv1 {
  font-size: clamp(0.875rem, 0.375rem + 2.5vw, 1rem);
}

.b-text-lv2 {
  font-size: 0.9375rem;
}

.b-text-lv3 {
  font-size: 0.875rem;
}

.b-sectionTitle-lv1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px 0;
  line-height: 1.2;
  color: var(--rprColor);
}
.b-sectionTitle-lv1 .en {
  font-size: 2.5rem;
  letter-spacing: 0;
  font-family: var(--enFont);
  text-transform: uppercase;
}
.b-sectionTitle-lv1 .jp {
  font-size: 1rem;
  letter-spacing: 0.075rem;
}

.b-sectionTitle-lv2 {
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
}
.b-sectionTitle-lv2.--bold {
  letter-spacing: 0.075rem;
  font-weight: 700;
  color: var(--rprColor);
}

.b-sectionEnTitle {
  font-size: 2.5rem;
  letter-spacing: -0.03rem;
  font-family: var(--enFont);
}
.b-sectionEnTitle.--uppercase {
  text-transform: uppercase;
}

.b-sectionButton {
  font-size: 0.9375rem;
  letter-spacing: 0.075rem;
}

/*
  Header
----------- */
.b-header__text {
  font-size: 1rem;
  letter-spacing: 0.075rem;
}

/*
  Footer
----------- */
.b-copyright {
  font-size: 0.75rem;
  letter-spacing: 0.025rem;
}

/*
  Top
----------- */
.b-product__box .iconBox {
  font-size: 0.875rem;
  letter-spacing: 0.075rem;
  font-weight: 700;
  color: var(--rprColor);
}
.b-product__box .title {
  font-size: clamp(1rem, 0.6785714286rem + 1.4285714286vw, 1.125rem);
  letter-spacing: 0.05rem;
  font-weight: 700;
}

/*
  Service
----------- */
.b-serviceTitle-lv1 {
  font-size: 1.25rem;
  letter-spacing: 0.05rem;
  font-weight: 700;
  color: var(--rprColor);
}

.b-serviceTitle-lv2 {
  font-size: clamp(1.25rem, 0rem + 6.25vw, 1.5625rem);
  letter-spacing: 0.05rem;
  font-weight: 700;
}

.b-serviceTitle-lv3 {
  font-size: 1.4375rem;
  letter-spacing: 0.025rem;
  font-weight: 700;
}

.b-serviceText {
  font-size: clamp(0.875rem, 0.375rem + 2.5vw, 1rem);
  letter-spacing: 0.05rem;
  font-weight: 500;
}
.b-serviceText .small {
  font-size: 0.625rem;
  letter-spacing: 0;
  position: relative;
  top: -5px;
}

.b-serviceButton {
  font-size: 1.125rem;
  letter-spacing: 0.125rem;
  font-weight: 700;
}

.b-serviceHero__mainCopy {
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: -0.025rem;
  line-height: 1.3;
}
.b-serviceHero__mainCopy .small {
  font-size: 0.9em;
  position: relative;
  top: -2px;
}
.b-serviceHero__mainCopy em {
  font-style: normal;
  position: relative;
  top: -1px;
  display: inline-block;
  padding: 0px 4px 4px 12px;
  margin: 0 20px;
  background-color: var(--yellowColor);
  z-index: 1;
}
.b-serviceHero__mainCopy em::before, .b-serviceHero__mainCopy em::after {
  content: "";
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 20px;
  height: 100%;
  z-index: -1;
}
.b-serviceHero__mainCopy em::before {
  left: -18px;
  background-image: url(../../assets/images/common/rpr_line01_left.svg);
  background-position: left center;
}
.b-serviceHero__mainCopy em::after {
  right: -18px;
  background-image: url(../../assets/images/common/rpr_line01_right.svg);
  background-position: right center;
}

.b-serviceHero__subCopy {
  font-size: 1.125rem;
  letter-spacing: 0.06rem;
  font-weight: 700;
}

.b-serviceMerit__title-lv1 {
  font-size: 1.625rem;
  font-size: clamp(1.375rem, 0.625rem + 3.75vw, 1.5625rem);
  letter-spacing: 0.1rem;
  font-weight: 700;
}
.b-serviceMerit__title-lv1 em {
  font-size: 1.2em;
  color: var(--blueColor);
  font-style: normal;
  position: relative;
  top: 2px;
}

.b-serviceMerit__title-lv2 {
  font-size: clamp(1.375rem, 0.625rem + 3.75vw, 1.5625rem);
  letter-spacing: 0.05rem;
  line-height: 1.3;
  font-weight: 700;
}
.b-serviceMerit__title-lv2 em {
  font-size: 1.2em;
  letter-spacing: 0.075rem;
  font-style: normal;
  position: relative;
  display: inline-block;
  margin: 0 20px;
  padding-bottom: 4px;
  background-color: var(--yellowColor);
  z-index: 1;
}
.b-serviceMerit__title-lv2 em::before, .b-serviceMerit__title-lv2 em::after {
  content: "";
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 18px;
  height: 100%;
  z-index: -1;
}
.b-serviceMerit__title-lv2 em::before {
  left: -12px;
  background-image: url(../../assets/images/common/rpr_line01_left.svg);
  background-position: left center;
}
.b-serviceMerit__title-lv2 em::after {
  right: -12px;
  background-image: url(../../assets/images/common/rpr_line01_right.svg);
  background-position: right center;
}

.b-serviceMerit__list .text {
  font-size: clamp(0.9375rem, -0.2625rem + 6vw, 1.125rem);
  letter-spacing: 0.025rem;
  font-weight: 700;
}

.b-serviceMerit__box .title {
  font-size: 1.3125rem;
  letter-spacing: 0.025rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--rprColor);
}

.b-serviceWorry__list .title {
  font-size: 1.125rem;
  letter-spacing: 0.05rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--rprColor);
}

.b-serviceService__list .title {
  font-size: 1.1875rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--rprColor);
}
.b-serviceService__list .title .small {
  font-size: 0.57em;
  position: relative;
  top: -8px;
}
.b-serviceService__list .button {
  font-size: 1.0625rem;
  letter-spacing: 0.13rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--rprColor);
}

.b-serviceService__annotation {
  font-size: 0.9375rem;
  letter-spacing: 0.065rem;
  font-weight: 500;
}

.b-serviceReview__box .title {
  font-size: 1.0625rem;
  letter-spacing: 0.09rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--whiteColor);
}
.b-serviceReview__box .name {
  font-size: 1.125rem;
  letter-spacing: 0.075rem;
  line-height: 1.4;
  font-weight: 500;
}
.b-serviceReview__box .graphText {
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.075rem;
  font-weight: 700;
  color: var(--rprColor);
}
.b-serviceReview__box .graphText em {
  font-size: 2em;
  color: var(--redColor);
  font-style: normal;
  position: relative;
  top: 1px;
}
.b-serviceReview__box .result {
  font-size: 1.0625rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--whiteColor);
}
.b-serviceReview__box .result em {
  font-size: 1.1em;
  letter-spacing: 0.025rem;
  color: var(--yellowColor);
  font-style: normal;
}

.b-servicePrice__text {
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--blueTextColor);
}
.b-servicePrice__text .annotation {
  font-size: 0.625rem;
  letter-spacing: 0;
  position: relative;
  top: -5px;
}
.b-servicePrice__text .surprise {
  font-size: 1.5rem;
}
.b-servicePrice__text .surprise .small {
  font-size: 0.7em;
}
.b-servicePrice__text .large {
  font-size: 1.25rem;
  letter-spacing: 0;
}
.b-servicePrice__text .denial {
  font-size: 1rem;
}
.b-servicePrice__text .denial .small {
  font-size: 0.8em;
}

.b-serviceContact__box .text {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--blueTextColor);
}
.b-serviceContact__box .tel {
  font-size: 1.875rem;
  letter-spacing: 0.02rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--blueTextColor);
}

.b-serviceBanner__title {
  font-size: 1.25rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--whiteColor);
}

/*
  Management
----------- */
.b-mgmtName {
  font-size: clamp(1.125rem, 0.1953125rem + 4.375vw, 1.5625rem);
  letter-spacing: 0.025rem;
  font-weight: 700;
}
.b-mgmtName .en {
  letter-spacing: -0.025rem;
  text-transform: uppercase;
}

.b-mgmtHero__mainCopy {
  font-size: 1.375rem;
  letter-spacing: 0.05rem;
  line-height: 1.6;
  font-weight: 700;
}

.b-mgmtMerit__mainCopy {
  font-size: 1.0625rem;
  letter-spacing: 0.075rem;
  line-height: 2;
  font-weight: 500;
}
.b-mgmtMerit__mainCopy em {
  font-size: 1.3em;
  line-height: 1.3;
  font-style: normal;
  position: relative;
  display: inline-block;
  margin: 0 12px;
  padding-bottom: 2px;
  background-color: var(--yellowColor);
  z-index: 1;
}
.b-mgmtMerit__mainCopy em::before, .b-mgmtMerit__mainCopy em::after {
  content: "";
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 18px;
  height: 100%;
  z-index: -1;
}
.b-mgmtMerit__mainCopy em::before {
  left: -10px;
  background-image: url(../../assets/images/common/rpr_line01_left.svg);
  background-position: left center;
}
.b-mgmtMerit__mainCopy em::after {
  right: -8px;
  background-image: url(../../assets/images/common/rpr_line01_right.svg);
  background-position: right center;
}

.b-mgmtMerit__list .number {
  font-size: 1rem;
  letter-spacing: 0.075rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--whiteColor);
}
.b-mgmtMerit__list .title {
  font-size: 1.1875rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--rprColor);
}
.b-mgmtMerit__list .title .small {
  font-size: 0.57em;
  position: relative;
  top: -8px;
}
.b-mgmtMerit__list .annotation {
  font-size: clamp(0.8125rem, 0.5625rem + 1.25vw, 0.875rem);
  letter-spacing: 0.05rem;
}

.b-mgmtReview__title {
  font-size: clamp(1.0625rem, 0.8125rem + 1.25vw, 1.125rem);
  letter-spacing: 0.05rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--whiteColor);
}

.b-mgmtReview__list .name {
  font-size: 1.125rem;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--rprColor);
}
.b-mgmtReview__list .name .small {
  font-size: 0.75em;
}

.b-mgmtReview__annotation {
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}

.b-mgmtFlow__list .number {
  line-height: 1.2;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--whiteColor);
  background-color: var(--rprColor);
  border-radius: 50%;
}
.b-mgmtFlow__list .number .small {
  font-size: 0.8125rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
.b-mgmtFlow__list .number .large {
  font-size: 1.625rem;
  letter-spacing: 0.05rem;
  line-height: 1;
  position: relative;
  top: -2px;
}
.b-mgmtFlow__list .title {
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: var(--rprColor);
}
.b-mgmtFlow__list .text {
  font-size: 1rem;
  letter-spacing: 0.075rem;
  font-weight: 500;
}
.b-mgmtFlow__list .text .annotation {
  font-size: 0.9em;
}

.b-servicePrice__mainCopy {
  font-size: clamp(1rem, 0.25rem + 3.75vw, 1.1875rem);
  letter-spacing: 0.09rem;
  font-weight: 500;
}

/********** media query **********/
@media screen and (min-width: 1000px) {
  /*
    Common
  ----------- */
  .b-text-lv1 {
    font-size: 1.125rem;
  }
  .b-text-lv2 {
    font-size: 1rem;
  }
  .b-sectionTitle-lv1 {
    gap: 4px 0;
  }
  .b-sectionTitle-lv1 .en {
    font-size: 3.125rem;
  }
  .b-sectionTitle-lv1 .jp {
    font-size: 1.125rem;
  }
  .b-sectionTitle-lv2 {
    font-size: 1.375rem;
  }
  .b-sectionButton {
    font-size: 1rem;
  }
  /*
    Header
  ----------- */
  .b-header__text {
    letter-spacing: 0.05rem;
  }
  /*
    Top
  ----------- */
  .b-product__box .iconBox {
    font-size: clamp(1.125rem, 0.6rem + 0.8vw, 1.25rem);
  }
  .b-product__box .title {
    font-size: clamp(1.25rem, 0.725rem + 0.8vw, 1.375rem);
    letter-spacing: 0.1rem;
  }
  /*
    Service
  ----------- */
  .b-serviceTitle-lv1 {
    font-size: 1.6875rem;
    letter-spacing: 0.075rem;
  }
  .b-serviceTitle-lv2 {
    font-size: clamp(2rem, 1.375rem + 1vw, 2.125rem);
    letter-spacing: 0.09rem;
  }
  .b-serviceTitle-lv3 {
    font-size: 2rem;
  }
  .b-serviceText {
    font-size: 1.3125rem;
    letter-spacing: 0.075rem;
  }
  .b-serviceText .small {
    font-size: 0.8125rem;
    top: -7px;
  }
  .b-serviceButton {
    font-size: 1.75rem;
  }
  .b-serviceHero__mainCopy {
    font-size: 3.6875rem;
  }
  .b-serviceHero__mainCopy em {
    top: -4px;
    padding: 0px 4px 5px 12px;
    margin: 0px 34px;
    z-index: 1;
  }
  .b-serviceHero__mainCopy em::before, .b-serviceHero__mainCopy em::after {
    width: 30px;
  }
  .b-serviceHero__mainCopy em::before {
    left: -28px;
  }
  .b-serviceHero__mainCopy em::after {
    right: -28px;
  }
  .b-serviceHero__subCopy {
    font-size: 1.6875rem;
  }
  .b-serviceMerit__title-lv1 {
    font-size: 2.25rem;
  }
  .b-serviceMerit__title-lv2 {
    font-size: 2.0625rem;
  }
  .b-serviceMerit__title-lv2 em {
    margin: 0 26px 0 24px;
  }
  .b-serviceMerit__title-lv2 em::before, .b-serviceMerit__title-lv2 em::after {
    width: 20px;
  }
  .b-serviceMerit__title-lv2 em::before {
    left: -16px;
  }
  .b-serviceMerit__title-lv2 em::after {
    right: -16px;
  }
  .b-serviceMerit__list .text {
    font-size: 1.75rem;
  }
  .b-serviceMerit__box .title {
    font-size: 1.8125rem;
  }
  .b-serviceWorry__list .title {
    font-size: clamp(1.5rem, 0.875rem + 1vw, 1.625rem);
  }
  .b-serviceService__list .title {
    font-size: clamp(1.625rem, 1rem + 1vw, 1.75rem);
  }
  .b-serviceService__list .button {
    font-size: 1.5rem;
  }
  .b-serviceService__annotation {
    font-size: 1.25rem;
  }
  .b-serviceReview__box .title {
    font-size: 1.125rem;
  }
  .b-serviceReview__box .name {
    font-size: 1.5rem;
  }
  .b-serviceReview__box .graphText {
    font-size: 1.125rem;
  }
  .b-serviceReview__box .result {
    font-size: 1.125rem;
  }
  .b-servicePrice__text {
    font-size: 1.25rem;
  }
  .b-servicePrice__text .annotation {
    font-size: 0.75rem;
    top: -7px;
  }
  .b-servicePrice__text .surprise {
    font-size: 2.125rem;
  }
  .b-servicePrice__text .large {
    font-size: 1.75rem;
    letter-spacing: 0.025rem;
  }
  .b-servicePrice__text .denial {
    font-size: 1.4375rem;
  }
  .b-serviceContact__box .text {
    font-size: 1.4375rem;
  }
  .b-serviceContact__box .tel {
    font-size: 2.3125rem;
  }
  .b-serviceBanner__title {
    font-size: 1.75rem;
  }
  /*
    Management
  ----------- */
  .b-mgmtName {
    font-size: 2rem;
  }
  .b-mgmtHero__mainCopy {
    font-size: 1.875rem;
    letter-spacing: 0.1rem;
  }
  .b-mgmtMerit__mainCopy {
    font-size: 1.5rem;
  }
  .b-mgmtMerit__mainCopy em {
    margin: 0 16px;
  }
  .b-mgmtMerit__mainCopy em::before, .b-mgmtMerit__mainCopy em::after {
    width: 20px;
  }
  .b-mgmtMerit__mainCopy em::before {
    left: -12px;
  }
  .b-mgmtMerit__mainCopy em::after {
    right: -10px;
  }
  .b-mgmtMerit__list .number {
    font-size: 1.4375rem;
  }
  .b-mgmtMerit__list .title {
    font-size: clamp(1.625rem, 1rem + 1vw, 1.75rem);
  }
  .b-mgmtMerit__list .annotation {
    font-size: 1rem;
  }
  .b-mgmtReview__title {
    font-size: 1.375rem;
    letter-spacing: 0.1rem;
  }
  .b-mgmtReview__list .name {
    font-size: 1.5rem;
    font-size: clamp(1.3125rem, 0.375rem + 1.5vw, 1.5rem);
  }
  .b-mgmtReview__annotation {
    font-size: 1rem;
  }
  .b-mgmtFlow__list .number {
    width: 86px;
    height: 86px;
  }
  .b-mgmtFlow__list .number .small {
    font-size: 1.125rem;
  }
  .b-mgmtFlow__list .number .large {
    font-size: 2.25rem;
    top: -4px;
  }
  .b-mgmtFlow__list .title {
    font-size: 1.875rem;
  }
  .b-mgmtFlow__list .text {
    font-size: 1.375rem;
  }
  .b-servicePrice__mainCopy {
    font-size: 1.75rem;
  }
}
/* ===============================================
b-button
=============================================== */
.b-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
}

.b-sectionButton {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.b-sectionButton::before {
  content: "";
  position: relative;
  width: 5px;
  height: 5px;
  background-color: var(--rprColor);
  border-radius: 50%;
}
.b-sectionButton::after {
  content: "";
  position: relative;
  background-image: url(../../assets/images/common/rpr_icon_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.b-sectionButton.--bottom::after {
  left: 16px;
  rotate: 90deg;
}

.b-serviceButton {
  max-width: 360px;
  padding: 10px 32px 10px 10px;
  background-color: var(--yellowColor);
  border-radius: 100px;
}
.b-serviceButton::after {
  content: "";
  position: absolute;
  right: 6%;
  background-image: url(../../assets/images/common/rpr_icon_arrow--black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.b-serviceService__list .button {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.b-serviceService__list .button::after {
  content: "";
  background-image: url(../../assets/images/common/rpr_icon_arrow_twin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 34px;
  height: 16px;
}

/********** media query **********/
@media screen and (min-width: 1000px) {
  .b-serviceButton {
    max-width: 513px;
    padding: 10px 32px 10px 10px;
  }
  .b-serviceButton::after {
    right: 70px;
  }
  .b-serviceService__list .button {
    -moz-column-gap: 28px;
         column-gap: 28px;
  }
  .b-serviceService__list .button::after {
    width: 40px;
    height: 19px;
  }
}
/* ===============================================
b-pagination
=============================================== */
.b-pagination {
  display: flex;
  justify-content: center;
  gap: 0 24px;
  margin: 40px 0 0;
}
.b-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  padding: 8px;
  color: var(--mainColor);
  border-radius: 50%;
  border: 1px solid var(--mainColor);
  background: var(--whiteColor);
}
.b-pagination .current {
  background: var(--mainColor);
  color: var(--whiteColor);
}
.b-pagination .prev, .b-pagination .next {
  color: var(--mainColor);
}
.b-pagination .dots {
  background: transparent;
  box-shadow: none;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 0 24px;
}
.nav-previous, .nav-next {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nav-next {
  text-align: right;
}

/* ===============================================
b-parts
=============================================== */
/*
  Common
----------------------------------------------- */
.b-width100 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.space {
  display: flex;
  justify-content: space-between;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .space--pc {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1000px) {
  .b-width100 {
    width: 100%;
    margin: 0;
  }
}
/*
  Nav（header/footer）
----------------------------------------------- */
.is-hover > a {
  position: relative;
  cursor: default;
}
.is-hover > a::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -32px;
  background-image: url(../../assets/images/common/rpr_icon_plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.is-hover > a.is-open::after {
  background-image: url(../../assets/images/common/rpr_icon_minus.svg);
}
.is-hover .sub-menu {
  position: relative;
  top: 1em;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: 0.5s;
}
.is-hover .sub-menu.is-open {
  opacity: 1;
  visibility: visible;
  height: auto;
  pointer-events: auto;
}
.is-hover .sub-menu li {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  padding: 8px 0 12px 4px;
}
.is-hover .sub-menu li a {
  width: 100%;
}
.is-hover .sub-menu li::before {
  content: "";
  position: relative;
  width: 10.3923048454px;
  height: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: var(--whiteColor);
}

@media screen and (min-width: 1000px) {
  .is-hover > a::after {
    display: none;
  }
  .is-hover:hover .sub-menu, .is-hover:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
}
/* ===============================================
Hover
=============================================== */
a {
  transition: opacity 0.2s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

/*
  Common
----------------------------------------------- */
/* ===============================================
animation
=============================================== */
/*
  common
----------------------------------------------- */
body {
  animation: fade 2s both;
}

/*
  header
----------------------------------------------- */
/*
  Top
----------------------------------------------- */
/*
  @keyframes
----------------------------------------------- */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade0ut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}