@charset "UTF-8";
/*---------------------------
/setting/size参照
---------------------------*/
/* min-width
-------------------------------------------------------------------------- */
/* max-width
-------------------------------------------------------------------------- */
/*黒：font*/
/*白*/
/*強調 HEX: #cf122e*/
/*Secondary Clear HEX: #5ea8e6*/
/*Secondary Pastel HEX: #b0d4f4*/
/*Link HEX: #cf122e*/
/*Action HEX: #e3f1fa*/
/*Gray HEX: #f3f3f3*/
/*Gray HEX: #999999*/
/*Action HEX: #0d63dc*/
/*↑*/
/*鮮やかな青：ベース*/
/*濃紺：リンク他*/
/*エメラルド：装飾他*/
/*赤：装飾他*/
/*bg：背景*/
/*グラデーション*/
/*文字グラデーション*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
.c_grad_font {
  background: -webkit-linear-gradient(0deg, #0768d4, #4fc8dc);
  color: #4ac2db;
}

em.c_grad_font {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.c_grad_font {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ja
-------------------------------------------------------------------------- */
/* en
-------------------------------------------------------------------------- */
#space {
  height: 1300px;
  background-color: blanchedalmond;
}

/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 250ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  transform: translate(0, 50px);
}

.fadeIn-down {
  transform: translate(0, -80px);
}

.fadeIn-left {
  transform: translate(-50px, 0);
}

.fadeIn-right {
  transform: translate(50px, 0);
}

.scroll-in {
  transform: translate(0);
  opacity: 1;
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  transform: translate(0, 80px);
  opacity: 1;
}

.slideIn-down {
  transform: translate(0, -80px);
  opacity: 1;
}

.slideIn-left {
  transform: translate(-80px, 0);
  opacity: 1;
}

.slideIn-right {
  transform: translate(80px, 0);
  opacity: 1;
}

.scroll-in {
  transform: translate(0);
  opacity: 1;
}

.is-fadein-active {
  visibility: visible !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  line-height: 1.15;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  margin: 0;
  clear: both;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  /* 1 */
  font-size: inherit;
  font-family: monospace, monospace;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  /* 1 */
  font-size: inherit;
  font-family: monospace, monospace;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: middle;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

body {
  color: #000000;
  line-height: 1.5;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

#Main {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
}

#Main .c-container img:not(.c-linkTile-c__image):not(.c-conv__iconImage) {
  display: inline-block;
  width: auto;
  max-width: 100%;
}

em {
  font-style: initial;
}

/*各html要素*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

h2 {
  margin-bottom: 3.125vw;
  font-size: clamp(18px, 1.046vw, 20px);
}

h3 {
  font-size: clamp(18px, 1.25vw, 24px);
}

main {
  margin-top: 10rem;
}

p small {
  font-size: clamp(12px, 0.729vw, 14px);
}

#Main ul,
#Main ol {
  padding-top: 0;
  padding-left: 0;
}

#Main ul li,
#Main ol li {
  margin-top: 0;
}

#Main {
  color: #000000;
}
#Main .c-container h1,
#Main .c-container h2,
#Main .c-container h3,
#Main .c-container h4,
#Main .c-container h5 {
  color: #000000;
}

.l-container--pt0,
.l-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.l-container {
  padding: 4.1666666667vw 0;
}
.l-container--pt0 {
  padding: 0 0 4.1666666667vw;
}

*[class^="c-btn"] {
  display: inline-block;
  position: relative;
}

.c-btn--red {
  width: 100%;
  padding: 18px;
  border: 2px solid #cf122e;
  border-radius: 9999px;
  background: #cf122e;
  color: #ffffff !important;
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
  transition: 0.5s;
}
.c-btn--red:focus:focus {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}
.c-btn--blue {
  width: 100%;
  padding: 18px;
  border: 2px solid #0d63dc;
  border-radius: 9999px;
  background: #0d63dc;
  color: #ffffff !important;
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
  transition: 0.5s;
}
.c-btn--blue:focus:focus {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}
.c-btn--line {
  width: 100%;
  min-width: 16.6666666667vw;
  padding: 18px;
  border: 2px solid #cf122e;
  border-radius: 9999px;
  background: #ffffff;
  color: #cf122e !important;
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
  transition: 0.5s;
}
.c-btn--line:focus:focus {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

a {
  transition: 0.5s;
}
a:hover {
  opacity: 0.8;
}
a:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

.c-diagonal_line {
  display: inline-block;
  position: relative;
  margin: 20px auto;
  padding: 0 20px;
  font-weight: 500;
  font-size: clamp(14px, 0.8333vw, 16px);
  text-align: center;
}
.c-diagonal_line::before,
.c-diagonal_line::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: #000;
  content: "";
}
.c-diagonal_line::before {
  left: 0;
  transform: rotate(60deg);
}
.c-diagonal_line::after {
  right: 0;
  transform: rotate(-60deg);
}

.p-case--item {
  display: flex;
  visibility: hidden;
  flex-wrap: wrap;
  align-items: stretch;
  transform: translateY(3rem);
  border-radius: 10px;
  background: #ffffff;
  opacity: 0;
  transition: 1s;
}
.p-case--item:focus {
  opacity: 0.8 !important;
}
.p-case--item--img {
  position: relative;
  order: 1;
  width: 42%;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
.p-case--item--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  max-width: none !important;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.p-case--item--text {
  order: 2;
  width: 58%;
  padding: 45px 35px 25px 25px;
  color: #000000;
  font-weight: 600;
}
.p-case--item--name {
  font-size: clamp(12px, 0.729vw, 14px);
}
.p-case--item--title {
  color: #cf122e;
  font-size: clamp(18px, 1.3vw, 25px);
  line-height: 1.6;
}

.p-case--item + .p-case--item {
  margin-top: 25px;
}

.c-container .p-case--item {
  display: flex !important;
  color: #000000;
}

#Main .c-container .p-case--item--title {
  color: #cf122e;
}

.p-content {
  padding: 0;
  border-radius: 20px;
  background: #f3f3f3;
}
.p-content--title {
  position: relative;
  padding: 50px;
  border-radius: 20px 20px 0 0;
  background: #5ea8e6;
}
.p-content--title::before {
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-top: 50px solid #5ea8e6;
  border-right: 72px solid transparent;
  border-bottom: 0;
  border-left: 72px solid transparent;
  border-style: solid;
  content: "";
}
.p-content--title h2 {
  visibility: hidden;
  margin: 0;
  transform: translateY(3rem);
  font-weight: bold;
  font-size: clamp(25px, 1.875vw, 36px);
  line-height: 1.4;
  letter-spacing: 5px;
  text-align: center;
  opacity: 0;
  transition: 1s;
}
.p-content--inner {
  width: 100%;
  max-width: calc(1000px + 10%);
  margin: 0 auto;
  padding: 75px 5% 60px;
}
.p-content--inner > p {
  visibility: hidden;
  transform: translateY(3rem);
  opacity: 0;
  transition: 1s;
}

.p-content + .p-content {
  margin-top: 50px;
}

.p-course--text {
  visibility: hidden;
  margin-bottom: 30px;
  transform: translateY(3rem);
  font-weight: 600;
  font-size: clamp(18px, 1.458vw, 28px);
  text-align: center;
  opacity: 0;
  transition: 1s;
}
.p-course--text--red {
  color: #cf122e;
}
.p-course--text--large {
  font-weight: bold;
  font-size: clamp(32px, 3.125vw, 60px);
}
.p-course--text--medium {
  font-size: clamp(24px, 1.77vw, 34px);
}

.p-cta {
  position: relative;
  background: #e3f1fa;
}
.p-cta--title {
  visibility: hidden;
  transform: translateY(3rem);
  font-weight: 600;
  font-size: clamp(24px, 1.562vw, 30px);
  line-height: 2;
  text-align: center;
  opacity: 0;
  transition: 1s;
}
.p-cta--title span {
  color: #cf122e;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
}
.p-cta--list {
  display: flex;
  visibility: hidden;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 850px;
  margin: 0 auto;
  gap: 0 50px;
  transform: translateY(3rem);
  opacity: 0;
  transition: 1s;
}
.p-cta--list li {
  width: calc((100% - 50px) / 2);
  text-align: center;
}
.p-cta--list li.big {
  width: 100%;
  max-width: 530px;
}
.p-cta--list li.big .c-btn--red {
  font-size: clamp(24px, 1.562vw, 30px);
}
.p-cta--img {
  position: absolute;
  top: -65px;
  right: 8%;
  width: 19%;
}

.p-faq--flex {
  display: flex;
  gap: 20px;
}
.p-faq--qicon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #5ea8e6;
  color: #ffffff;
  font-size: 26px;
  line-height: 45px;
  text-align: center;
}
.p-faq--aicon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #999999;
  color: #ffffff;
  font-size: 26px;
  line-height: 45px;
  text-align: center;
}
.p-faq--qtext {
  display: inline-block;
  width: calc(100% - 50px - 20px);
  padding-top: 5px;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-faq--atext {
  display: inline-block;
  width: calc(100% - 50px - 20px);
  padding-top: 10px;
}
.p-faq .c-accordion-b__item {
  visibility: hidden;
  transform: translateY(3rem);
  opacity: 0;
  transition: 1s;
}
.p-faq.c-accordion-b [data-accordion="trigger"]::after {
  background-color: #5ea8e6;
}
.p-faq .c-accordion-b__inner {
  padding: 0 25px;
  border: none;
  border-radius: 5px;
  background: #ffffff;
}
.p-faq .c-accordion-b__cell:last-child {
  padding: 10px 0 40px;
}
.p-faq .c-accordion-b__item + .c-accordion-b__item {
  margin-top: 21px;
}
.p-faq .c-accordion-b__item:first-child .c-accordion-b__inner {
  border: none;
}

.p-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}
.p-features--item {
  display: grid;
  visibility: hidden;
  position: relative;
  grid-template-rows: subgrid;
  grid-row: span 3;
  padding: 70px 30px 30px;
  gap: 0;
  transform: translateY(3rem);
  border: 4px solid #5ea8e6;
  border-radius: 10px;
  background: #ffffff;
  opacity: 0;
  transition: 1s;
}
.p-features--item.wide {
  grid-row: span 4;
  grid-column: 1/-1;
}
.p-features--item.wide .p-features--item--inner {
  grid-row: span 4;
}
.p-features--item--inner {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 20px;
}
.p-features--item--num {
  display: flex;
  position: absolute;
  top: -42px;
  left: 50%;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  padding-bottom: 5px;
  transform: translateX(-50%);
  border-radius: 100%;
  background: #b0d4f4;
  font-weight: bold;
  font-size: clamp(25px, 1.875vw, 36px);
  line-height: 1;
}
.p-features--item--title {
  order: 1;
  margin-bottom: 20px;
  line-height: 1.45;
  letter-spacing: 2px;
  text-align: center;
}
.p-features--item--text {
  order: 3;
}
.p-features--item--text p {
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1.625;
}
.p-features--item--text p small {
  font-size: clamp(12px, 0.729vw, 14px);
}
.p-features--item--img {
  order: 2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-features--item--jiima-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  order: 4;
  overflow: hidden;
  border: 2px solid #f3f3f3;
  border-radius: 10px;
}
.p-features--item--jiima-box--logo {
  order: 1;
  width: 28%;
}
.p-features--item--jiima-box--text {
  order: 2;
  width: 72%;
  padding: 20px;
}
.p-features--item--jiima-box--text p {
  margin-top: 0;
  line-height: 1.5;
}
.p-features--item--jiima-box--text p small {
  font-size: clamp(12px, 0.729vw, 14px);
}

.p-header {
  width: 100%;
  padding: 20px;
  background: #ffffff;
}
.p-header--list {
  display: flex;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
  gap: 20px;
}
.p-header--list li {
  width: calc((100% - 20px) / 2);
}
.p-header--list .c-btn--red {
  padding: 10px;
  font-size: clamp(13px, 0.78vw, 15px);
}
.p-header--list .c-btn--line {
  padding: 10px;
  font-size: clamp(13px, 0.78vw, 15px);
  line-height: 1.2;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.js-header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-header.is-show {
  transform: translateY(0);
}

.p-image--img {
  visibility: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
  transform: translateY(3rem);
  border-radius: 10px;
  background: #ffffff;
  opacity: 0;
  transition: 1s;
}

.p-mv {
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #e3f1fa;
}
.p-mv--inner {
  background-color: #5ea8e6;
}
.p-mv .l-container {
  position: relative;
}
.p-mv--textbox {
  position: relative;
  z-index: 1;
}
.p-mv--textbox--price {
  display: inline-block;
  padding: 18px 22px;
  border-radius: 9999px;
  background: #ffffff;
  color: #cf122e;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1;
}
.p-mv--textbox--price span {
  font-size: clamp(28px, 2.083vw, 40px);
  font-family: "Roboto";
}
.p-mv--textbox--subtitle {
  margin-top: 15px;
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-mv--textbox h1 {
  font-weight: bold;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1.375;
}
.p-mv--textbox--list {
  margin-top: 30px;
}
.p-mv--textbox--list li {
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-mv--textbox--list li::before {
  display: inline-block;
  width: 19px;
  height: 20px;
  margin-right: 10px;
  background: url(/-/media/Ricoh/Sites/co_jp/special/ricoh-invoice-received-service/img/icon_check.png);
  background-repeat: no-repeat;
  content: "";
  vertical-align: middle;
}
.p-mv--imgbox {
  position: absolute;
  right: -10%;
  bottom: -55px;
  width: 58%;
  padding-top: 58%;
  border-radius: 100%;
  background: #b0d4f4;
}
.p-mv--imgbox img {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-mv--imgbox--list {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.p-mv--imgbox--list li {
  position: absolute;
  height: auto;
}
.p-mv--imgbox--list li:nth-child(1) {
  top: 52px;
  left: 0;
  width: 100%;
  max-width: 180px;
  padding-top: 25%;
  background-size: contain;
}
.p-mv--imgbox--list li:nth-child(1):before {
  display: block;
  position: absolute;
  top: 88%;
  left: 88%;
  width: 28px;
  height: 28px;
  background: url(/-/media/Ricoh/Sites/co_jp/special/ricoh-invoice-received-service/img/p_mv_imgbox_list_bg01.png)
    no-repeat;
  content: "";
}
.p-mv--imgbox--list li:nth-child(2) {
  bottom: 35px;
  left: 95%;
  width: 100%;
  max-width: 216px;
  padding-top: 28%;
  background-size: contain;
}
.p-mv--imgbox--list li:nth-child(2):before {
  display: block;
  position: absolute;
  right: 105%;
  bottom: 66%;
  width: 42px;
  height: 36px;
  background: url(/-/media/Ricoh/Sites/co_jp/special/ricoh-invoice-received-service/img/p_mv_imgbox_list_bg02.png)
    no-repeat;
  content: "";
}
.p-mv--imgbox--list--inner {
  display: flex;
  position: absolute;
  top: 50%;
  left: 47%;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background: #ffffff;
  font-weight: 600;
  text-align: center;
}

.p-service--list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 22px;
}
.p-service--list li {
  visibility: hidden;
  position: relative;
  width: calc((100% - 88px) / 5);
  transform: translateY(3rem);
  list-style: none;
  opacity: 0;
  transition: 1s;
}
.p-service--list li::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: -23px;
  width: 42px;
  height: 100%;
  background-image: url(/-/media/Ricoh/Sites/co_jp/special/ricoh-invoice-received-service/img/p_service_list_item.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.p-service--list li:first-child:before {
  content: none;
}
.p-service--list--item {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 15px;
  gap: 10px;
  border: 4px solid #5ea8e6;
  border-radius: 10px;
  background: #fff;
}
.p-service--list--item-text {
  order: 2;
  width: 100%;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.444;
  text-align: center;
}
.p-service--list--item-img {
  order: 1;
  width: 100%;
  text-align: center;
}
.p-service h3 {
  margin: 10px 0;
  color: #cf122e;
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
  line-height: 1.5;
  text-align: center;
}

.p-solve--list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 60px;
}
.p-solve--list > li {
  visibility: hidden;
  width: calc((100% - 120px) / 3);
  padding-top: 54px;
  transform: translateY(3rem);
  opacity: 0;
  transition: 1s;
}
.p-solve--list--item {
  position: relative;
  height: 100%;
  padding: 40px 20px 40px 24px;
  border: 4px solid #5ea8e6;
  border-radius: 10px;
  background: #ffffff;
}
.p-solve--list--item::before {
  position: absolute;
  top: -54px;
  left: 0;
  left: 0;
  width: 100%;
  height: 82px;
  background-image: url(/-/media/Ricoh/Sites/co_jp/special/ricoh-invoice-received-service/img/p_solve_list_item.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.p-solve--list--itemlist > li {
  padding-left: 25px;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.444;
  text-indent: -25px;
}
.p-solve--list--itemlist > li + li {
  margin-top: 10px !important;
}
.p-solve--list--itemlist > li::before {
  display: inline-flex;
  width: 13px;
  height: 13px;
  margin-right: 12px;
  border-radius: 100%;
  background: #5ea8e6;
  content: "";
  vertical-align: middle;
}
.p-solve--list--itemlist > li span {
  color: #cf122e;
  font-weight: bold;
  font-size: clamp(18px, 1vw, 24px);
}

.p-table--course table {
  width: 100%;
  border: none !important;
  table-layout: fixed;
}
.p-table--course table th,
.p-table--course table td {
  border: 1px solid #9d9d9d !important;
  text-align: center;
}
.p-table--course table th.none,
.p-table--course table td.none {
  border: none !important;
  background: none;
}
.p-table--course table th.bg_blue {
  background: #5ea8e6 !important;
  font-weight: bold !important;
}
.p-table--course table th.bg_blue_pastel {
  background: #b0d4f4 !important;
  font-weight: normal !important;
  font-size: clamp(13px, 0.78vw, 15px);
}
.p-table--course table td {
  background: #ffffff;
  font-size: 14px !important;
}
.p-table--course--flexcolumn {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}
.p-table--course--top {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  height: 65px;
  margin-bottom: 20px;
  padding: 0 20px;
}
.p-table--course--top img {
  max-height: 65px;
}
.p-table--course--bottom {
  order: 2;
  margin-top: auto;
}
.p-table--course--price {
  font-feature-settings: "palt";
  padding: 10px 5px !important;
  letter-spacing: -0.05px;
  vertical-align: baseline !important;
}
.p-table--course--price span {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px !important;
}
.p-table--course--check {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 100%;
  background: #5ea8e6;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  vertical-align: text-bottom;
}
.p-table--course--check:has(+ sub) {
  margin-left: 10.5px;
}

.p-worries--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 80px;
}
.p-worries--list li {
  display: flex;
  visibility: hidden;
  justify-content: center;
  width: calc((100% - 160px) / 3);
  transform: translateY(3rem);
  opacity: 0;
  transition: 1s;
}
.p-worries--list--item {
  z-index: 0;
  position: relative;
  width: 100%;
  max-width: 250px;
  padding-top: calc(100% + 20px);
}
.p-worries--list--item-text {
  position: absolute;
  top: 0;
  width: 100%;
  font-weight: 500;
  font-size: clamp(18px, 1.3vw, 25px);
  line-height: 1.4;
  text-align: center;
}
.p-worries--list--item-img {
  z-index: -1;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.p-worries h3 {
  visibility: hidden;
  margin: 10px 0;
  transform: translateY(3rem);
  color: #cf122e;
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  transition: 1s;
}

#Main .c-container .p-worries h3 {
  color: #cf122e;
}

.u-mt--10 {
  margin-top: 1rem;
}

.u-mb--10 {
  margin-bottom: 1rem;
}

.u-mr--10 {
  margin-right: 1rem;
}

.u-ml--10 {
  margin-left: 1rem;
}

.u-mt--20 {
  margin-top: 2rem;
}

.u-mb--20 {
  margin-bottom: 2rem;
}

.u-mr--20 {
  margin-right: 2rem;
}

.u-ml--20 {
  margin-left: 2rem;
}

.u-mt--30 {
  margin-top: 3rem;
}

.u-mb--30 {
  margin-bottom: 3rem;
}

.u-mr--30 {
  margin-right: 3rem;
}

.u-ml--30 {
  margin-left: 3rem;
}

.u-mt--40 {
  margin-top: 4rem;
}

.u-mb--40 {
  margin-bottom: 4rem;
}

.u-mr--40 {
  margin-right: 4rem;
}

.u-ml--40 {
  margin-left: 4rem;
}

.u-mt--50 {
  margin-top: 5rem;
}

.u-mb--50 {
  margin-bottom: 5rem;
}

.u-mr--50 {
  margin-right: 5rem;
}

.u-ml--50 {
  margin-left: 5rem;
}

.u-mt--60 {
  margin-top: 6rem;
}

.u-mb--60 {
  margin-bottom: 6rem;
}

.u-mr--60 {
  margin-right: 6rem;
}

.u-ml--60 {
  margin-left: 6rem;
}

.u-mt--70 {
  margin-top: 7rem;
}

.u-mb--70 {
  margin-bottom: 7rem;
}

.u-mr--70 {
  margin-right: 7rem;
}

.u-ml--70 {
  margin-left: 7rem;
}

.u-mt--80 {
  margin-top: 8rem;
}

.u-mb--80 {
  margin-bottom: 8rem;
}

.u-mr--80 {
  margin-right: 8rem;
}

.u-ml--80 {
  margin-left: 8rem;
}

.u-mt--90 {
  margin-top: 9rem;
}

.u-mb--90 {
  margin-bottom: 9rem;
}

.u-mr--90 {
  margin-right: 9rem;
}

.u-ml--90 {
  margin-left: 9rem;
}

.u-mt--100 {
  margin-top: 10rem;
}

.u-mb--100 {
  margin-bottom: 10rem;
}

.u-mr--100 {
  margin-right: 10rem;
}

.u-ml--100 {
  margin-left: 10rem;
}

.u-mt--110 {
  margin-top: 11rem;
}

.u-mb--110 {
  margin-bottom: 11rem;
}

.u-mr--110 {
  margin-right: 11rem;
}

.u-ml--110 {
  margin-left: 11rem;
}

.u-mt--120 {
  margin-top: 12rem;
}

.u-mb--120 {
  margin-bottom: 12rem;
}

.u-mr--120 {
  margin-right: 12rem;
}

.u-ml--120 {
  margin-left: 12rem;
}

.u-mt--10 {
  margin-top: 1rem;
}

.u-mb--10 {
  margin-bottom: 1rem;
}

.u-mr--10 {
  margin-right: 1rem;
}

.u-ml--10 {
  margin-left: 1rem;
}

.u-mt--20 {
  margin-top: 2rem;
}

.u-mb--20 {
  margin-bottom: 2rem;
}

.u-mr--20 {
  margin-right: 2rem;
}

.u-ml--20 {
  margin-left: 2rem;
}

.u-mt--30 {
  margin-top: 3rem;
}

.u-mb--30 {
  margin-bottom: 3rem;
}

.u-mr--30 {
  margin-right: 3rem;
}

.u-ml--30 {
  margin-left: 3rem;
}

.u-mt--40 {
  margin-top: 4rem;
}

.u-mb--40 {
  margin-bottom: 4rem;
}

.u-mr--40 {
  margin-right: 4rem;
}

.u-ml--40 {
  margin-left: 4rem;
}

.u-mt--50 {
  margin-top: 5rem;
}

.u-mb--50 {
  margin-bottom: 5rem;
}

.u-mr--50 {
  margin-right: 5rem;
}

.u-ml--50 {
  margin-left: 5rem;
}

.u-mt--60 {
  margin-top: 6rem;
}

.u-mb--60 {
  margin-bottom: 6rem;
}

.u-mr--60 {
  margin-right: 6rem;
}

.u-ml--60 {
  margin-left: 6rem;
}

.u-mt--70 {
  margin-top: 7rem;
}

.u-mb--70 {
  margin-bottom: 7rem;
}

.u-mr--70 {
  margin-right: 7rem;
}

.u-ml--70 {
  margin-left: 7rem;
}

.u-mt--80 {
  margin-top: 8rem;
}

.u-mb--80 {
  margin-bottom: 8rem;
}

.u-mr--80 {
  margin-right: 8rem;
}

.u-ml--80 {
  margin-left: 8rem;
}

.u-mt--90 {
  margin-top: 9rem;
}

.u-mb--90 {
  margin-bottom: 9rem;
}

.u-mr--90 {
  margin-right: 9rem;
}

.u-ml--90 {
  margin-left: 9rem;
}

.u-mt--100 {
  margin-top: 10rem;
}

.u-mb--100 {
  margin-bottom: 10rem;
}

.u-mr--100 {
  margin-right: 10rem;
}

.u-ml--100 {
  margin-left: 10rem;
}

.u-mt--110 {
  margin-top: 11rem;
}

.u-mb--110 {
  margin-bottom: 11rem;
}

.u-mr--110 {
  margin-right: 11rem;
}

.u-ml--110 {
  margin-left: 11rem;
}

.u-mt--120 {
  margin-top: 12rem;
}

.u-mb--120 {
  margin-bottom: 12rem;
}

.u-mr--120 {
  margin-right: 12rem;
}

.u-ml--120 {
  margin-left: 12rem;
}

.u-margin--auto {
  margin-right: auto;
  margin-left: auto;
}

.u-text--center {
  text-align: center;
}

.u-text--left {
  text-align: left;
}

.u-text--right {
  text-align: right;
}

.u-sp {
  display: none;
}
.u-sp {
  display: none;
}
@media screen and (min-width: 769px) {
  a:hover,
  a:active {
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  main {
    margin-top: 8rem;
  }
  .p-case--item--img img {
    position: initial;
    max-width: 100% !important;
    transform: none;
  }
  .p-content--title {
    padding: 20px;
  }
  .p-content--title h2 {
    font-size: clamp(24px, 1.562vw, 30px);
  }
  .p-content--inner {
    padding: 40px 5% 20px;
  }
  .p-cta--title {
    font-size: clamp(18px, 1.458vw, 28px);
  }
  .p-cta--list li {
    width: 100%;
    max-width: 530px;
  }
  .p-faq--qicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .p-faq--aicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .p-faq--qtext {
    width: calc(100% - 35px - 20px);
  }
  .p-faq--atext {
    width: calc(100% - 35px - 20px);
  }
  .p-features {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 40px;
  }
  .p-features--item {
    padding: 50px 20px 20px;
  }
  .p-features--item--jiima-box--logo {
    width: 100%;
    text-align: center;
  }
  .p-features--item--jiima-box--text {
    width: 100%;
  }
  .p-header {
    padding: 10px 20px;
  }
  .p-header--list {
    gap: 10px;
  }
  .p-header--list li {
    width: calc((100% - 10px) / 2);
  }
  .p-image--img {
    padding: 20px;
  }
  .p-mv--imgbox img {
    width: 70% !important;
  }
  .p-mv--imgbox--list {
    position: relative;
    width: 100%;
  }
  .p-service--list li {
    width: 100%;
  }
  .p-service--list li::before {
    top: -36px;
    left: 0;
    width: 100%;
    height: 50px;
    transform: rotate(90deg);
  }
  .p-solve--list > li {
    width: 100%;
  }
  .p-solve--list--item {
    padding: 30px 20px;
  }
  .p-solve--list--item::before {
    height: 70px;
  }
  .p-worries--list li {
    width: 100%;
    max-width: 250px;
  }
  .p-worries h3 {
    font-size: clamp(18px, 1.458vw, 28px);
  }
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  br.u-sp {
    display: inline;
  }
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  br.u-sp {
    display: inline;
  }
}
@media screen and (max-width: 1280px) {
  .l-container--pt0,
  .l-container {
    width: 100%;
  }
  .l-container {
    box-sizing: border-box;
    padding: 4rem 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .l-container--pt0 {
    box-sizing: border-box;
    padding: 0 5vw 4rem;
    padding-right: 5%;
    padding-left: 5%;
  }
  .p-case--item--img {
    width: 50%;
  }
  .p-case--item--text {
    width: 50%;
  }
  .p-cta--img {
    display: none;
  }
  .p-mv--imgbox {
    right: 8%;
    bottom: -20px;
    width: 40%;
    padding-top: 40%;
  }
  .p-mv--imgbox img {
    top: 50%;
    width: 60%;
  }
  .p-mv--imgbox--list li:nth-child(1) {
    top: 10px;
  }
  .p-header--list .c-btn--line {
    padding: 2px 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--red:focus:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-btn--red:hover:focus {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-btn--blue:focus:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-btn--blue:hover:focus {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-btn--line:focus:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-btn--line:hover:focus {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .p-case--item:hover {
    opacity: 0.8 !important;
  }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
  .c-btn--red:hover:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-btn--blue:hover:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-btn--line:hover:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
}
@media screen and (max-width: 1280px) and (max-width: 768px) {
  .p-case--item--img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  .p-case--item--text {
    width: 100%;
    padding: 20px;
  }
  .p-mv--imgbox {
    position: relative;
    right: auto;
    left: 50%;
    width: 100%;
    margin: 80px 0 100px;
    padding-top: 90%;
    transform: translateX(-50%);
  }
  .p-mv--imgbox--list li:nth-child(1) {
    top: 25px;
    left: -10px;
    max-width: 160px;
  }
}
@media screen and (max-width: 1580px), print {
  .p-mv--imgbox--list li:nth-child(2) {
    left: calc(100% - 13vw);
  }
}
@media screen and (max-width: 1580px) and (max-width: 1280px) {
  .p-mv--imgbox--list li:nth-child(2) {
    right: 0;
    bottom: -60px;
    left: auto;
  }
}
@media screen and (max-width: 1580px) and (max-width: 1280px) and (max-width: 768px) {
  .p-mv--imgbox--list li:nth-child(2) {
    top: 410px;
    right: -10px;
    bottom: auto;
    left: auto;
    max-width: 210px;
  }
}
