@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  color: #121212;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.poppins {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
}

.br {
  display: inline-block;
}

.br-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.small {
  font-size: 2rem;
}

.green-underline {
  color: #0ac6b0;
  text-decoration: underline;
}

.black-bold {
  font-weight: 900;
}

.green-bold {
  color: #0ac6b0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.big-poppins {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 2.875rem;
  font-weight: 600;
  letter-spacing: 0em;
}

/* pcの電話番号発信対応 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
.l-footer {
  background-color: #fff;
  padding-block: 3.75rem;
}

.l-footer__main {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
}

.l-footer__info {
  line-height: 1.8;
  max-width: 25.625rem;
  width: 100%;
}

.l-footer__info a {
  text-decoration: underline;
}

.l-footer__logo {
  height: 2.4375rem;
  width: 11.5rem;
}

.l-footer__company {
  font-size: 1.25rem;
  margin-top: 1.25rem;
}

.l-footer__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.l-footer__btn-wrap {
  margin-left: auto;
}

.l-footer__btn {
  align-items: center;
  background: linear-gradient(to right, #0ac6b0 0%, #25bf70 100%);
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  max-width: 25rem;
  padding-block: 1.25rem;
  padding-inline: 2.5rem;
  transform: translateY(0);
  transition: transform 0.15s ease-out;
  width: 100%;
}
.l-footer__btn:hover {
  transform: translateY(0.125rem);
}

.l-footer__btn-txt {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.l-footer__nav {
  padding-top: 1.25rem;
}

.l-footer__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.l-footer__item {
  align-items: center;
  display: flex;
}

.l-footer__item a {
  color: #747474;
  font-size: 0.75rem;
  transition: color 0.3s;
}

.l-footer__copyright {
  color: #747474;
  font-size: 0.75rem;
}

.l-header-hamburger {
  align-items: center;
  background-color: #4fc3af;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 5rem;
}

.l-header-hamburger span {
  background-color: #fff;
  border-radius: 0.125rem;
  display: block;
  height: 0.1875rem;
  width: 2rem;
}

.l-header-hamburger-txt {
  color: #fff;
  display: block;
  font-size: 0.625rem;
}

.l-header-drawer {
  background-color: #18ac98;
  height: 100vh;
  max-width: 23.4375rem;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 100;
}

.l-header-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.l-header-close {
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  height: 5rem;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 5rem;
  z-index: 101;
}

.l-header-close__icon {
  background-color: transparent;
  display: block;
  height: 2rem;
  position: relative;
  width: 2rem;
}

.l-header-close__icon::before,
.l-header-close__icon::after {
  background-color: #fff;
  border-radius: 0.125rem;
  content: "";
  height: 0.1875rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center;
  width: 2rem;
}

.l-header-close__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-header-close__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header-close__txt {
  color: #fff;
  display: block;
  font-size: 0.625rem;
}

.l-header-drawer__nav {
  padding-inline: 1.25rem;
  padding-top: 5rem;
}

.l-header-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header-drawer__item {
  border-bottom: 1px solid #fff;
}

.l-header-drawer__link {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  padding-block: 1.25rem;
  padding-inline: 1rem;
  position: relative;
  text-decoration: none;
}
.l-header-drawer__link:hover::after {
  transform: translateX(3px);
}

.l-header-drawer__link::after {
  background-image: url("/img/icon_menu_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 0.8125rem;
  transition: transform 0.2s ease;
  width: 0.5rem;
}

.l-header-drawer__btn-wrap {
  padding-block: 2.5rem;
  padding-inline: 1.25rem;
}

.l-header-drawer__btn {
  align-items: center;
  background: linear-gradient(to right, #0ac6b0 0%, #25bf70 100%);
  border-radius: 1.875rem;
  color: #fff;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.1rem;
  padding-block: 1.25rem;
  padding-inline: 2.5rem;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.15s ease-out;
  width: 100%;
}
.l-header-drawer__btn:hover {
  transform: translateY(0.125rem);
}

.l-header {
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  height: 5rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
  z-index: 100;
}

.l-header.is-hide {
  transform: translateY(-100%);
}

.l-header__inner {
  align-items: center;
  display: flex;
  gap: 2.5rem;
  height: 100%;
  justify-content: space-between;
  padding-inline: 1.5625rem;
}

.l-header__logo {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.l-header__logo a {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.l-header__logo img {
  height: 2.4375rem;
  width: 11.5rem;
}

.l-header__logo-txt {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to right, #0ac6b0 0%, #25bf70 100%);
  background-clip: text;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5em;
}

.l-header__nav {
  align-items: center;
  display: flex;
  gap: 2.3125rem;
}

.l-header__gnavi {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.l-header__gnavi-link {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.5em;
  white-space: nowrap;
}

.l-header__btn {
  align-items: center;
  background: linear-gradient(to right, #0ac6b0 0%, #25bf70 100%);
  border-radius: 1.4375rem;
  color: #fff;
  display: flex;
  font-size: 0.8125rem;
  font-weight: 700;
  height: 2.875rem;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1.4em;
  padding-block: 0.8125rem;
  padding-inline: 1.125rem;
  transform: translateY(0);
  transition: transform 0.15s ease-out;
  white-space: nowrap;
  width: 7.5rem;
}
.l-header__btn:hover {
  transform: translateY(0.125rem);
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  width: 1150px;
}

.c-btn {
  background-color: transparent;
  background-image: url("../img/");
  background-position: center right 1.5em;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  border: 1px solid #d9d9d9;
  color: 900;
  line-height: 1.2;
  max-width: 100%;
  min-height: 3.75rem;
  padding: 0 0.625rem;
  transition: 0.3s all;
  width: 13.75rem;
}
.c-btn span {
  display: block;
  font-size: 0.75rem;
}
.c-cta-btn {
  align-items: center;
  background-color: #fff;
  border-radius: 2.5rem;
  box-shadow: 0px 0.3125rem 0.3125rem 0px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  max-width: 37.5rem;
  padding: 1.25rem 2.5rem 1.25rem 0.625rem;
  position: relative;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  width: 100%;
}

.c-cta-btn__txt {
  color: #0ac6b0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.48;
  text-align: center;
}

.c-cta-btn__arrow {
  display: block;
  height: 0.8125rem;
  position: absolute;
  right: 1.9375rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease-out !important;
  width: 0.5rem;
}
.c-ttl-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.c-ttl-en {
  color: #0ac6b0;
  display: inline-block;
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.c-ttl-en::after {
  background-color: #0ac6b0;
  content: "";
  display: inline-block;
  height: 0.125rem;
  margin-left: clamp(0.25rem, -0.875rem + 4.8vw, 0.625rem);
  vertical-align: middle;
  width: clamp(3.125rem, -5.843rem + 38.27vw, 12.5rem);
}

.c-ttl__ja {
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.c-ttl-en-txt--short {
  padding-right: 7.75rem;
}

.c-ttl-en-txt--short::after {
  width: 6.25rem;
}

.c-txt {
  font-size: 1rem;
  line-height: 2;
}

.c-txt--caution {
  color: #939393;
  display: block;
}

.p-background__flex {
  align-items: flex-end;
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding-top: 1.75rem;
  width: 100%;
}

.p-background__txt {
  display: flex;
  flex-direction: column;
  max-width: 41.875rem;
  width: 100%;
}

.p-background__midashi {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.42;
}

.p-background__txt-desc {
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 2.2;
}

.p-background__txt-desc:first-of-type {
  padding-top: 1.75rem;
}

.p-background__img {
  flex-shrink: 0;
  height: 28.125rem;
  max-width: 22.5rem;
  width: 100%;
}

.p-background__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p-cta {
  background: linear-gradient(to right, #0ac6b0 0%, #25bf70 100%);
}

.p-cta__inner {
  margin-inline: auto;
  max-width: 62.5rem;
  padding-inline: 1.5625rem;
}

.p-cta__txt {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.p-cta__ttl {
  color: #fff;
  font-size: 2.0625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
}

.p-cta__tel-txt {
  align-items: center;
  display: flex;
  gap: 1.875rem;
  width: 100%;
}

.p-cta__tel-txt-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.p-cta__tel-txt-content::after {
  background-color: #fff;
  content: "";
  height: 6.875rem;
  position: absolute;
  right: -0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
}

.p-cta__tel-ttl {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
}

.p-cta__tel-note {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.69;
  margin-top: 0.5rem;
  text-align: center;
}

.p-cta__tel {
  display: flex;
  flex-direction: column;
}

.p-cta__tel-num {
  color: #fff;
  display: block;
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.33;
  transition: opacity 0.3s;
}

.p-cta__tel-time {
  align-items: center;
  background-color: #fff;
  border-radius: 0.9375rem;
  display: flex;
  justify-content: center;
  margin-top: 0.625rem;
  padding-block: 0.125rem;
}

.p-cta__tel-time-txt {
  color: #0ac6b0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.375;
}

/* =====================================
  フッター前CTA
===================================== */
.p-cta--end .p-cta__txt {
  gap: 2.5rem;
}

.p-cta__ttl--end {
  color: #fff;
  font-size: 2.0625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
}

.p-cta__sub-ttl {
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}

.p-faq {
  background-color: #f5f5f5;
}

.p-faq__ttl {
  margin-bottom: 2.375rem;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.p-faq__item {
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0px 0.3125rem 0.625rem 0px rgba(0, 0, 0, 0.16);
  padding: 1.75rem 2.5rem;
}

.p-faq__q {
  align-items: center;
  display: flex;
  gap: 0.8125rem;
  padding-bottom: 1rem;
}

.p-faq__q-label,
.p-faq__a-label {
  color: #0ac6b0;
  flex-shrink: 0;
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 2.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
}

.p-faq__q-txt {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  max-width: 59.375rem;
  width: 100%;
}

.p-faq__a {
  align-items: flex-start;
  border-top: 0.0625rem solid #d0d0d0;
  display: flex;
  gap: 0.9375rem;
  padding-top: 1rem;
}

.p-faq__a-txt {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2em;
}

.p-flow {
  background-color: #e9f4f2;
}

.p-flow__txt {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.p-flow__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  margin-top: 3.125rem;
}

.p-flow__item {
  align-items: center;
  background-color: #fff;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  max-width: 71.875rem;
  padding: 2.5rem 3.125rem 2.5rem 0rem;
  position: relative;
  width: 100%;
}

.p-flow__item-flex {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
}

.p-flow__item-txt {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  max-width: 58.75rem;
  padding-left: 5rem;
  width: 100%;
}

.p-flow__item-txt-box {
  border-bottom: 0.0625rem solid #c6e2df;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.p-flow__item-txt-flex {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2.75rem;
  justify-content: start;
  padding-bottom: 1.5rem;
}

.p-flow__item-txt-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-flow__item-txt-icon {
  -o-object-fit: contain;
  height: 3.375rem;
  object-fit: contain;
  width: auto;
}

.p-flow__item-txt-label {
  color: #121212;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4em;
  text-align: center;
}

.p-flow__item-txt-img {
  height: 3.125rem;
  width: 3.125rem;
}

.p-flow__item-desc {
  color: #121212;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.875em;
}

.p-flow__item-circle {
  align-items: center;
  display: flex;
  flex-direction: column;
  left: -3.125rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 11.25rem;
}

.p-flow__item-circle::before {
  border-left: 0.125rem dotted #0ac6b0;
  bottom: -7.5rem;
  content: "";
  height: 7.5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.p-flow__item:nth-child(4) .p-flow__item-circle::before {
  display: none;
}

.p-flow__item-circle-num {
  align-items: center;
  background: linear-gradient(0deg, rgb(10, 198, 176) 0%, rgb(37, 191, 112) 100%);
  border-radius: 5.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  height: 11.25rem;
  justify-content: center;
  width: 11.25rem;
}

.p-flow__item-circle-txt {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 9.375rem;
}

.p-flow__item-circle-num-txt {
  color: #fff;
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 4.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  text-align: center;
}

.p-flow__item-circle-label {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.67em;
  text-align: center;
}

.p-flow__note {
  padding-top: 2.25rem;
}

.p-flow__note-txt {
  color: #383838;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.85em;
  text-align: right;
}

.p-fv {
  background-color: #f5f5f5;
  overflow: hidden;
  padding-block: 7.5rem;
  position: relative;
}

.p-fv__bg {
  height: 33.375rem;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: clamp(37.5rem, 13.994rem + 49.03vw, 58.125rem);
  z-index: 1;
}

.p-fv__bg img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.p-fv__inner {
  display: flex;
  justify-content: center;
}

.p-fv__flex {
  align-items: flex-end;
  display: flex;
  max-width: 1344px;
  padding: 0 1.5625rem;
  position: relative;
  z-index: 2;
}

.p-fv__txt {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  max-width: 37.8125rem;
  width: 100%;
}

.p-fv__badge {
  background-color: #f6a804;
  border-radius: 0.625rem;
  padding: 0.5625rem 1.1875rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-fv__badge-txt {
  color: #fff;
  font-size: clamp(1rem, 0.522rem + 2.04vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.p-fv__catch {
  color: #3c3c3c;
  font-size: clamp(1.875rem, 0.593rem + 2.67vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.5;
  white-space: nowrap;
}

.p-fv__logo-wrap {
  align-items: flex-end;
  display: flex;
  gap: 0.6875rem;
}

.p-fv__logo {
  height: auto;
  width: 27.8125rem;
}

.p-fv__desc {
  font-size: 0.875rem;
  line-height: 1.8;
  width: 36.25rem;
}

.p-fv__btn-wrap {
  width: 100%;
}

.p-fv__btn {
  align-items: center;
  background: linear-gradient(to right, #0ac6b0 0%, #25bf70 100%);
  border-radius: 2.5rem;
  color: #fff;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  height: 4.375rem;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.48;
  max-width: 36.5625rem;
  padding: 1.0625rem 10.3125rem;
  text-align: center;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.15s ease-out;
  width: 100%;
}
.p-fv__btn:hover {
  transform: translateY(0.125rem);
}

.p-fv__img {
  max-width: clamp(18.75rem, -15.44rem + 71.32vw, 48.75rem);
  width: 100%;
}

.p-fv__img picture,
.p-fv__img img {
  display: block;
  height: auto;
  width: 100%;
}

.p-hikaku {
  position: relative;
}

.p-hikaku::before {
  background-image: url("/img/hikaku_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: clamp(25rem, 9.694rem + 65.31vw, 41rem);
  left: 0;
  position: absolute;
  top: 30%;
  width: clamp(12.5rem, -9.204rem + 92.6vw, 35.188rem);
  z-index: -1;
}

.p-hikaku__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.p-hikaku__ttl {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 53.5rem;
  width: 100%;
}

.p-hikaku__ttl-main {
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  text-align: center;
}

.p-hikaku__ttl-sub {
  font-size: 1rem;
  line-height: 1.875em;
  text-align: center;
}

.p-hikaku__table-wrapper {
  width: 100%;
}

.p-hikaku__table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.p-hikaku__th-label {
  background-color: rgb(245, 245, 245);
  padding-block: 3rem;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 11.25rem;
}

tbody .p-hikaku__th-label.p-hikaku__th-label--01::before {
  background-image: url("/img/hikaku_human.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 10.066875rem;
  left: 0;
  position: absolute;
  top: -10.1875rem;
  width: 8.974375rem;
}

.p-hikaku__th-label--00 {
  background-color: transparent;
}

.p-hikaku__th-label--01,
.p-hikaku__th-label--02,
.p-hikaku__th-label--03,
.p-hikaku__th-label--04,
.p-hikaku__th-label--05 {
  border-left: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  border-top: 1px solid #d5d5d5;
}

.p-hikaku__th-label--05 {
  border-bottom: 1px solid #d5d5d5;
}

.p-hikaku__th-label-txt {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6em;
  text-align: center;
}

.p-hikaku__th {
  padding-block: 2.5rem;
  text-align: center;
  vertical-align: middle;
}

.p-hikaku__th--kikantree {
  background-color: #0ac6b0;
  border-radius: 1.25rem 1.25rem 0 0;
  width: 19.25rem;
}

.p-hikaku__th--saas {
  background-color: #d0d0d0;
  border-bottom: 1px solid #b2b2b2;
  border-left: 1px solid #b2b2b2;
  border-right: 0.3px solid #b2b2b2;
  border-top: 1px solid #b2b2b2;
  width: 19.125rem;
}

.p-hikaku__th--fullscratch {
  background-color: #d0d0d0;
  border-bottom: 1px solid #b2b2b2;
  border-left: 1px solid #b2b2b2;
  border-right: 0.3px solid #b2b2b2;
  border-top: 1px solid #b2b2b2;
  width: 19.125rem;
}

.p-hikaku__th-txt {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1em;
  text-align: center;
}

.p-hikaku__th-txt--kikantree {
  color: #fff;
}

.p-hikaku__th--saas .p-hikaku__th-txt,
.p-hikaku__th--fullscratch .p-hikaku__th-txt {
  font-size: 1.25rem;
}

.p-hikaku__td {
  background-color: #f4fcfb;
  border-bottom: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  padding: 0.625rem;
  text-align: center;
  vertical-align: middle;
}

.p-hikaku__td img {
  display: block;
  height: auto;
  margin-inline: auto;
  max-width: 1.875rem;
  width: 1.875rem;
}

.p-hikaku__td-txt {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.7em;
  margin-inline: auto;
  max-width: 18.875rem;
  text-align: center;
}

.p-hikaku__td img + .p-hikaku__td-txt {
  margin-top: 0.4375rem;
}

.p-hikaku__td--saas,
.p-hikaku__td--fullscratch {
  background-color: #fff;
}

.p-inventory__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.p-inventory__txt {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.p-inventory__flex {
  align-items: center;
  display: flex;
  gap: 2.125rem;
  position: relative;
}

.p-inventory__left {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  width: 48.5625rem;
}

/* =====================================
  frame
===================================== */
.p-inventory__frame {
  align-items: center;
  border: 0.125rem solid #0ac6b0;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  height: 24.875rem;
  padding: 2.5rem 0rem 1.5625rem;
  width: 100%;
}

.p-inventory__frame-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

/* =====================================
  card
===================================== */
.p-inventory__card {
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
}

.p-inventory__card--basic {
  background-color: #e1fdfa;
  flex-shrink: 0;
  height: 20.625rem;
  position: relative;
  width: 26.375rem;
}

.p-inventory__card--custom {
  background-color: #e1f9fd;
  flex-shrink: 0;
  height: 20.625rem;
  position: relative;
  width: 18.25rem;
}

.p-inventory__card--option {
  background-color: #fef5da;
  height: 20.625rem;
  width: 18.25rem;
}

/* =====================================
  header number title
===================================== */
.p-inventory__card-header {
  align-items: center;
  display: flex;
  gap: 0;
}

.p-inventory__card-number {
  align-items: center;
  border-radius: 1.5rem;
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  font-weight: 700;
  height: 2.9375rem;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  padding-bottom: 0.125rem;
  width: 2.9375rem;
}

.p-inventory__card--basic .p-inventory__card-number {
  background-color: #0ac6b0;
}

.p-inventory__card--custom .p-inventory__card-number {
  background-color: #12c0db;
}

.p-inventory__card--option .p-inventory__card-number {
  background-color: #e2aa02;
}

.p-inventory__card-ttl {
  flex: 1;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1.4;
  text-align: center;
}

/* =====================================
  list item
===================================== */
.p-inventory__card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.p-inventory__card--basic .p-inventory__card-list {
  align-self: stretch;
}

.p-inventory__card--custom .p-inventory__card-list,
.p-inventory__card--option .p-inventory__card-list {
  align-items: center;
  width: 15.625rem;
}

.p-inventory__card-item {
  align-items: center;
  border-radius: 0.625rem;
  color: #fff;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 3.875rem;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 1.125rem 0.75rem;
  text-align: center;
  white-space: nowrap;
  width: 7.5rem;
}

.p-inventory__card--basic .p-inventory__card-item {
  background-color: #0ac6b0;
}

.p-inventory__card--custom .p-inventory__card-item {
  background-color: #12c0db;
}

.p-inventory__card--option .p-inventory__card-item {
  background-color: #e2aa02;
}

.p-inventory__ttl-box {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  left: 17.1875rem;
  position: absolute;
  top: 0;
}

.p-inventory__ttl-txt {
  align-items: center;
  background-color: #139b72;
  border-radius: 0.625rem;
  color: #fff;
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  height: 2.8125rem;
  justify-content: center;
  letter-spacing: 0em;
  line-height: 1;
  width: 14.1875rem;
}
.p-inventory__right {
  padding-top: 1.875rem;
}

/* =====================================
  +の位置調整
===================================== */
.p-inventory__card--basic::after {
  align-items: center;
  content: "＋";
  display: flex;
  font-size: 3rem;
  font-weight: 700;
  height: 3rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  z-index: 1;
}

.p-inventory__card--custom::after {
  align-items: center;
  content: "＋";
  display: flex;
  font-size: 3rem;
  font-weight: 700;
  height: 3rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -3.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  z-index: 1;
}

.p-jirei {
  background-color: #f5f5f5;
}

.p-jirei__inner {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.p-jirei__list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.p-jirei__item {
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0px 0.3125rem 0.625rem 0px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding: 4rem 2.5rem 3.125rem 2.5rem;
}

.p-jirei__ttl-box {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.p-jirei__ttl-content {
  border-left: 0.25rem solid #0ac6b0;
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
  padding-block: 0.375rem;
  padding-left: 1.5rem;
}

.p-jirei__ttl-midashi {
  color: #0ac6b0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}

.p-jirei__ttl {
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  line-height: 1.6em;
}

.p-jirei__ttl-name {
  color: #606060;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
}

.p-jirei__cat-box {
  border-left: 0.125rem solid #d5d5d5;
  padding-left: 1.25rem;
}

.p-jirei__cat-column {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-jirei__cat-flex {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 0.875rem;
}

.p-jirei__cat {
  align-items: center;
  background: linear-gradient(to right, #0ac6b0 0%, #25bf70 100%);
  border-radius: 0.9375rem;
  display: flex;
  height: 1.875rem;
  justify-content: center;
  width: 5.625rem;
}

.p-jirei__cat-txt {
  color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  line-height: 2em;
  text-align: center;
}

.p-jirei__cat-label {
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  line-height: 1.73em;
  white-space: nowrap;
}

.p-jirei__content {
  display: flex;
  gap: 3.125rem;
  justify-content: space-between;
}

.p-jirei__img {
  flex-shrink: 0;
  width: 23.75rem;
}
.p-jirei__img img {
  border-radius: 1.25rem;
}

.p-jirei__txt {
  align-items: flex-end;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: flex-end;
}

.p-jirei__yokattaten {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  gap: -1.875rem;
  position: relative;
  width: 100%;
}

.p-jirei__yokattaten-icon {
  flex-shrink: 0;
  left: -1rem;
  position: absolute;
  width: 5.9375rem;
  z-index: 1;
}

.p-jirei__yokattaten-txt {
  background-color: #f5f5f5;
  border-radius: 1.25rem;
  color: #121212;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8em;
  padding: 1rem 1rem 1rem 6.25rem;
  width: 100%;
}

.p-jirei__btn {
  align-items: center;
  background-color: #0ac6b0;
  border-radius: 2.5rem;
  display: flex;
  gap: 5.1875rem;
  height: 3.75rem;
  justify-content: center;
  padding: 1.25rem;
  position: relative;
  transform: translateY(0);
  transition: transform 0.15s ease-out;
  width: 22.5rem;
}
.p-jirei__btn:hover {
  transform: translateY(0.125rem);
}

.p-jirei__btn-txt {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1em;
}

.p-jirei__btn-arrow {
  height: 0.8125rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
}

.p-kadai__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

.p-kadai__list {
  display: flex;
  gap: 4.25rem;
  justify-content: center;
  max-width: 100%;
  width: 1150px;
}

.p-kadai__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  max-width: 100%;
  width: 20rem;
}

.p-kadai__item-header {
  display: flex;
  gap: 1.125rem;
  width: 100%;
}

.p-kadai__item-label {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.875rem;
  width: 5.875rem;
}

.p-kadai__item-label-txt {
  color: #0ac6b0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}

.p-kadai__item-label-num {
  color: #0ac6b0;
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 5.75rem;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
}

.p-kadai__item-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.875rem;
  width: 13.125rem;
}

.p-kadai__item-ttl-txt {
  font-size: 1.5rem;
  line-height: 1.3;
}

.p-kadai__item-ttl-line {
  background-color: #0ac6b0;
  display: block;
  height: 0.125rem;
  width: 100%;
}

.p-kadai__item-img {
  max-width: 100%;
  width: 18.875rem;
}

.p-kadai__item-img img {
  height: auto;
  width: 100%;
}

.p-kadai__item-dtl {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

/* =====================================
  solution
===================================== */
.p-kadai__solution {
  max-width: 100%;
  width: 1150px;
}

.p-kadai__solution-box {
  align-items: center;
  background: linear-gradient(135deg, rgb(10, 198, 176) 0%, rgb(37, 191, 112) 100%);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  padding: clamp(2.125rem, -2.75rem + 20.8vw, 3.75rem) 0.625rem;
  position: relative;
}

.p-kadai__solution-txt-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-kadai__solution-txt-top {
  align-items: center;
  border-bottom: 0.125rem solid #fff;
  display: flex;
  justify-content: center;
  padding-bottom: 1.25rem;
  width: 100%;
}

.p-kadai__solution-txt-top-item {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-align: center;
}

.p-kadai__solution-main {
  align-items: flex-end;
  display: flex;
  gap: 0.875rem;
  justify-content: center;
}

.p-kadai__solution-main-txt {
  align-items: flex-end;
  color: #fff;
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  text-align: center;
}

.p-kadai__solution-main-txt-01 {
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.9;
}

.p-kadai__solution-main-txt-02 {
  font-size: 2.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

.p-kadai__solution-polygon {
  height: clamp(1.375rem, 0.25rem + 4.8vw, 1.75rem);
  left: 50%;
  position: absolute;
  top: -1px;
  transform: translateX(-50%);
  width: clamp(5.375rem, -6.25rem + 49.6vw, 9.25rem);
}

.p-kadai__solution-polygon img {
  height: auto;
  width: 100%;
}

.p-price-zaiko {
  overflow: hidden;
  position: relative;
}

.p-price-zaiko::before {
  background-image: url("/img/price_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 45.6875rem;
  position: absolute;
  right: 0;
  top: 5rem;
  width: 40.0625rem;
  z-index: 0;
}

.p-price-zaiko__txt {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.p-price-zaiko .inner {
  margin-top: 3.75rem;
  position: relative;
  z-index: 1;
}

/* ----- price ----- */
section.p-price {
  background-color: #f2f4f5;
}

section.p-price h2.section_title {
  margin-bottom: 50px;
}

section.p-price h2.section_title span.small {
  display: inline-block;
  font-size: 32px;
}

section.p-price .h2_title_text {
  color: #555555;
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 70px;
  text-align: center;
}

section.p-price .cost {
  position: relative;
}

section.p-price .cost h3.h3_title {
  background-color: #59a72b;
  border-radius: 33px;
  color: #fff;
  display: inline-block;
  font-size: 22px;
  line-height: 48px;
  margin-bottom: 40px;
  text-align: center;
  width: 253px;
}

section.p-price .cost .icon {
  position: absolute;
  right: 7%;
  top: 5px;
  width: 248px;
}

section.p-price .cost .icon img {
  width: 100%;
}

section.p-price .cost table.tariff {
  border: 2px solid #707070;
  margin: 0 auto;
  max-width: 930px;
  width: 100%;
}

section.p-price .cost table.tariff th {
  background-color: #fff;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  line-height: 48px;
  text-align: center;
  width: 220px;
}

section.p-price .cost table.tariff th.usually {
  background-color: #dddddd;
  font-weight: 500;
  width: 340px;
}

section.p-price .cost table.tariff th.private {
  background-color: #59a72b;
  box-shadow: 0 0 0 10px #59a72b;
  color: #fff;
  font-size: 24px;
}

section.p-price .cost table.tariff td {
  background-color: #fff;
  border-right: 1px solid #707070;
  font-size: 18px;
  line-height: 48px;
  text-align: center;
}

section.p-price .cost table.tariff td.usually {
  background-color: #f6f6f6;
  font-weight: 500;
}

section.p-price .cost table.tariff td.private_num {
  background-color: #e2ece0;
  box-shadow: 0 0 0 10px #59a72b;
  font-size: 28px;
}

section.p-price .cost table.tariff td.private_num span.yen {
  font-size: 18px;
  font-weight: 500;
}

section.p-price .icon_arrow {
  margin: 25px auto 34px;
  text-align: center;
}

section.p-price .uchiwake {
  background-color: #fff;
  border: 2px dashed #a7a7a7;
  margin-bottom: 70px;
  margin-top: 55px;
  padding: 7px 63px 50px;
  padding-top: 7px;
}

section.p-price .uchiwake h3.h3_title {
  background-color: #a3a2a2;
  border: 1px solid #707070;
  border-radius: 33px;
  color: #fff;
  font-size: 20px;
  line-height: 44px;
  margin: -30px auto 30px;
  text-align: center;
  width: 388px;
}

section.p-price .uchiwake .table_title,
section.p-price .cost .table_title {
  font-size: 20px;
  margin-bottom: 15px;
}

section.p-price .uchiwake table.tariff {
  border: 2px solid #707070;
  margin: 0 auto;
  max-width: 930px;
  width: 100%;
}

section.p-price .uchiwake table.tariff.pc {
  display: table;
}

section.p-price .uchiwake table.tariff th {
  background-color: #fff;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  line-height: 48px;
  text-align: center;
  width: 220px;
}

section.p-price .uchiwake table.tariff th.usually {
  background-color: #dddddd;
  font-weight: 500;
  width: 340px;
}

section.p-price .uchiwake table.tariff th.private {
  background-color: #59a72b;
  color: #fff;
  font-size: 24px;
}

section.p-price .uchiwake table.tariff td {
  background-color: #fff;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  font-size: 18px;
  line-height: 48px;
  text-align: center;
}

section.p-price .uchiwake table.tariff td.subject,
section.p-price .cost.running table.tariff td.subject {
  font-size: 16px;
  font-weight: 500;
  padding-right: 20px;
  text-align: right;
}

section.p-price .cost.running table.tariff td.none {
  border-bottom: 2px solid #707070;
}

section.p-price .uchiwake table.tariff td.usually {
  background-color: #f6f6f6;
  font-weight: 500;
}

section.p-price .uchiwake table.tariff td.private_num {
  background-color: #e2ece0;
  font-size: 28px;
}

section.p-price .uchiwake table.tariff td.private_num span.yen {
  font-size: 18px;
  font-weight: 500;
}

section.p-price .uchiwake table.tariff td.dot {
  background-color: #e2ece0;
  border-right: 2px dotted #707070;
  width: 120px;
}

section.p-price .uchiwake table.tariff td.text {
  background-color: #e2ece0;
  font-size: 9px;
  font-weight: 500;
  line-height: 12px;
  padding: 0 10px;
  text-align: left;
  vertical-align: middle;
}

section.p-price .uchiwake table.tariff td.none {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #707070;
  border-top: 2px solid #707070;
}

section.p-price p.notes {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: 20px;
  text-align: right;
}

section.p-price .cost.running .table_title {
  margin: 0 auto 15px;
  max-width: 930px;
}

section.p-price .cost.running .icon {
  position: absolute;
  right: 11%;
  top: 35px;
}

section.p-price .cost.running .icon img {
  width: 100%;
}

section.p-price .cost.running table.tariff td.dot {
  background-color: #e2ece0;
  box-shadow: 0 0 0 10px #59a72b;
  font-size: 16px;
  line-height: 48px;
  padding: 0 17px;
  text-align: left;
  width: 120px;
}

section.p-price .cost.running table.tariff td.dot .month {
  align-items: center;
  display: flex;
  justify-content: center;
}

section.p-price .cost.running table.tariff td.dot span.text {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  line-height: 12px;
  margin-left: 20px;
  width: 130px;
}

section.p-price .cost.running table.tariff td.text {
  background-color: #e2ece0;
  font-size: 9px;
  font-weight: 500;
  line-height: 12px;
  padding: 0 10px;
  text-align: left;
  vertical-align: middle;
}

section.p-price .cost.running p.notes {
  line-height: 30px;
  margin: 25px auto 0;
  max-width: 930px;
}
.pc {
  display: block;
}

.sp {
  display: none;
}
/* ----- ここまで ----- */
.icon_arrow img {
  height: 2.5rem;
  width: 2.5rem;
}

section.p-price .icon_arrow img {
  display: block;
  margin: 0 auto;
}

.p-reason {
  overflow: hidden;
  position: relative;
}
.p-reason::before {
  background-color: #f5f5f5;
  border-radius: 0 1.25rem;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 68.75rem;
  z-index: -1;
}

.p-reason__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5.125rem;
  margin-inline: auto;
  max-width: 75rem;
  padding: 0 1.25rem;
  position: relative;
  width: 100%;
}

.p-reason__txt {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-left: 3rem;
  width: 100%;
}

.p-reason__desc {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
  width: 65.625rem;
}

.p-reason__box {
  align-items: center;
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  padding-top: 5.625rem;
  width: 100%;
}

.p-reason__list {
  display: flex;
  gap: 0;
  width: 68.75rem;
}

.p-reason__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  justify-content: space-between;
  width: 22.9375rem;
}

.p-reason__item-img {
  height: 13.875rem;
  width: 18.875rem;
}
.p-reason__item-img img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.p-reason__item--03 .p-reason__item-img {
  height: 11.875rem;
  width: 20rem;
}

.p-reason__item-txt {
  align-items: center;
  border-top: 0.0625rem dashed #dbdbdb;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 3.125rem;
  position: relative;
  width: 100%;
}

.p-reason__item--01 .p-reason__item-txt::before {
  background-color: #fff;
  content: "";
  height: 0.25rem;
  left: 0;
  position: absolute;
  top: -0.125rem;
  width: 10rem;
}

.p-reason__item--03 .p-reason__item-txt::before {
  background-color: #fff;
  content: "";
  height: 0.25rem;
  position: absolute;
  right: 0;
  top: -0.125rem;
  width: 10rem;
}

.p-reason__item-num {
  align-items: center;
  background-color: #fff;
  border: 0.125rem solid #27c6b0;
  border-radius: 50%;
  color: #0ac6b0;
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  height: 3.75rem;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: -1.875rem;
  transform: translateX(-50%);
  width: 3.75rem;
}

.p-reason__item-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}

.p-reason__box-ttl {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
  top: -6.5rem;
}

.p-reason__box-ttl-txt {
  align-items: center;
  background-color: #0ac6b0;
  border-radius: 1.25rem;
  color: #fff;
  display: flex;
  font-size: 1.75rem;
  font-weight: 700;
  gap: 3.75rem;
  justify-content: center;
  letter-spacing: 0.1em;
  overflow: visible;
  padding: 0.4375rem 17.8125rem;
  position: relative;
  width: 56.25rem;
}
.p-reason__box-ttl-txt::after {
  border-left: 20px solid transparent;
  border-top: 20px solid #0ac6b0;
  bottom: -20px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.p-reason__box-circle {
  align-items: center;
  background-color: #fff;
  border: 0.1875rem solid #27c6b0;
  border-radius: 50%;
  display: flex;
  height: 13.75rem;
  justify-content: center;
  padding-bottom: 0.625rem;
  position: absolute;
  right: -5rem;
  top: -6.25rem;
  transform: rotate(10deg);
  width: 13.75rem;
  z-index: 1;
}

.p-reason__box-circle-txt {
  color: #0ac6b0;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-align: center;
}

/* =====================================
  bottom box
===================================== */
.p-reason__bottom-box {
  align-items: center;
  background: linear-gradient(135deg, #0ac6b0 0%, #25bf70 100%);
  border-radius: 0 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 3.75rem;
  padding: 4.375rem 0.625rem 3.125rem 0.625rem;
  position: relative;
  width: 100%;
}

.p-reason__bottom-txt {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-reason__bottom-txt-top {
  border-bottom: 0.125rem solid #fff;
  color: #fff;
  font-size: 2.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-bottom: 1.25rem;
  text-align: center;
}

.p-reason__bottom-txt-bottom {
  color: #fff;
  font-size: 2.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 0.625rem;
  text-align: center;
}

.p-reason__bottom-polygon {
  height: 3rem;
  left: 50%;
  position: absolute;
  top: -0.75rem;
  transform: translateX(-50%);
  width: 10.625rem;
}
.p-reason__bottom-polygon img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.p-support {
  background-color: #e9f4f2;
}

.p-support__ttl-box {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-inline: auto;
  max-width: 68.75rem;
}

.p-support__desc {
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 2em;
}

.p-support__contents {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.3125rem;
  margin-inline: auto;
  margin-top: 0.625rem;
  max-width: 68.75rem;
}

.p-support__list {
  display: flex;
  gap: 2.5rem;
  width: 100%;
}

.p-support__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  width: 21.25rem;
}

.p-support__img {
  width: 100%;
}

.p-support__img img {
  height: auto;
  width: 100%;
}

.p-support__txt {
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.75em;
  width: 15.3125rem;
}

.p-support__bottom-txt {
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.6875em;
  text-align: center;
}

.u-sp {
  display: none;
}

.u-pc {
  display: block;
}

.space-90-pt {
  padding-top: 5.625rem;
}

.space-90-pb {
  padding-bottom: 5.625rem;
}

.space-100-pt {
  padding-top: 6.25rem;
}

.space-100-pb {
  padding-bottom: 6.25rem;
}

.space-110-pt {
  padding-top: 6.875rem;
}

.space-120-pt {
  padding-top: 7.5rem;
}

.space-120-pt--bottom {
  padding-bottom: 7.5rem;
}

.space-160-pt {
  padding-top: 10rem;
}

.space-180-pt {
  padding-top: 11.25rem;
}

.space-90-mt {
  margin-top: 5.625rem;
}

.space-100-mt {
  margin-top: 6.25rem;
}

.space-110-mt {
  margin-top: 6.875rem;
}

.space-120-mt {
  margin-top: 7.5rem;
}

.space-160-mt {
  margin-top: 10rem;
}

.space-180-mt {
  margin-top: 11.25rem;
}

@media screen and (max-width: 1200px) {
  .l-header-hamburger {
    display: flex;
  }
  .l-header__inner {
    padding-inline: 0;
  }
  .l-header__logo {
    padding-left: 1.25rem;
  }
  .l-header__nav {
    display: none;
  }
}

@media screen and (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
  .l-footer {
    padding-block: 2.5rem;
  }
  .l-footer__main {
    flex-direction: column;
    gap: 1.875rem;
  }
  .l-footer__logo {
    height: 2rem;
    width: 9.375rem;
  }
  .l-footer__company {
    font-size: 0.8125rem;
  }
  .l-footer__address {
    font-size: 0.8125rem;
  }
  .l-footer__tel {
    font-size: 0.8125rem;
  }
  .l-footer__btn-wrap {
    margin-left: 0;
    width: 100%;
  }
  .l-footer__btn {
    padding-block: 1.125rem;
    padding-inline: 1.875rem;
  }
  .l-footer__btn-txt {
    font-size: 0.875rem;
  }
  .l-footer__nav {
    padding-top: 1.875rem;
  }
  .l-footer__list {
    gap: 0.9375rem;
    justify-content: center;
  }
  .l-footer__item a {
    font-size: 0.6875rem;
  }
  .l-footer__copyright {
    font-size: 0.6875rem;
  }
  .l-header {
    height: 3.75rem;
  }
  .l-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .c-cta-btn {
    max-width: 37.5rem;
    padding: 1rem 2.5rem 1rem 0.625rem;
  }
  .c-cta-btn__txt {
    font-size: 1.125rem;
  }
  .c-cta-btn__arrow {
    right: 1.25rem;
  }
  .c-ttl__ja {
    font-size: 1.625rem;
  }
  .c-txt {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .p-background__flex {
    align-items: center;
    flex-direction: column;
    gap: 1.875rem;
    padding-top: 1.875rem;
  }
  .p-background__txt {
    width: 100%;
  }
  .p-background__midashi {
    font-size: 1.25rem;
  }
  .p-background__txt-desc {
    font-size: 0.875rem;
    line-height: 2;
  }
  .p-background__txt-desc:first-of-type {
    padding-top: 1.25rem;
  }
  .p-background__img {
    height: auto;
    max-width: 22.5rem;
    width: 100%;
  }
  .p-cta__inner {
    padding-inline: 1.25rem;
  }
  .p-cta__txt {
    gap: 1.75rem;
  }
  .p-cta__ttl {
    font-size: 1.5rem;
  }
  .p-cta__tel-txt {
    flex-direction: column;
    gap: 1.25rem;
  }
  .p-cta__tel-txt-content::after {
    display: none;
  }
  .p-cta__tel-ttl {
    font-size: 1.125rem;
  }
  .p-cta__tel-note {
    font-size: 0.75rem;
  }
  .p-cta__tel {
    width: 100%;
  }
  .p-cta__tel-num {
    font-size: 2.25rem;
    text-align: center;
  }
  .p-cta__tel-time {
    margin-inline: auto;
    max-width: 16.25rem;
    width: 100%;
  }
  .p-cta__tel-time-txt {
    font-size: 0.875rem;
  }
  .p-cta--end .p-cta__txt {
    gap: 1.875rem;
  }
  .p-cta__ttl--end {
    font-size: 1.5rem;
  }
  .p-cta__sub-ttl {
    font-size: 1rem;
  }
  .p-faq__ttl {
    margin-bottom: 1.25rem;
  }
  .p-faq__list {
    gap: 1.25rem;
  }
  .p-faq__item {
    padding: 1.25rem 1rem;
  }
  .p-faq__q {
    gap: 0.625rem;
    padding-bottom: 0.75rem;
  }
  .p-faq__q-label,
  .p-faq__a-label {
    font-size: 2rem;
  }
  .p-faq__q-txt {
    font-size: 1rem;
  }
  .p-faq__a {
    gap: 0.625rem;
    padding-top: 0.75rem;
  }
  .p-faq__a-txt {
    font-size: 0.875rem;
  }
  .p-flow__list {
    gap: 2.5rem;
  }
  .p-flow__item {
    padding: 1.875rem 1.25rem 1.875rem 1.25rem;
  }
  .p-flow__item-flex {
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
  }
  .p-flow__item-txt {
    padding-left: clamp(5rem, 0.318rem + 14.98vw, 7.5rem);
  }
  .p-flow__item-txt-flex {
    gap: clamp(0.5rem, -0.217rem + 3.06vw, 1.25rem);
    justify-content: center;
  }
  .p-flow__item-txt-item {
    margin-top: 0.625rem;
  }
  .p-flow__item-txt-icon {
    height: 2.5rem;
  }
  .p-flow__item-txt-label {
    font-size: 0.875rem;
  }
  .p-flow__item-txt-img {
    height: 2.5rem;
    width: 2.5rem;
  }
  .p-flow__item-desc {
    font-size: 0.875rem;
  }
  .p-flow__item-circle {
    left: -0.625rem;
    top: -0.875rem;
    transform: translateY(0);
    width: 7.5rem;
  }
  .p-flow__item-circle::before {
    display: none;
  }
  .p-flow__item-circle-num {
    height: 7.5rem;
    width: 7.5rem;
  }
  .p-flow__item-circle-num-txt {
    font-size: 3.75rem;
  }
  .p-flow__item-circle-label {
    font-size: 0.875rem;
  }
  .p-flow__note {
    padding-top: 1.875rem;
    width: 100%;
  }
  .p-flow__note-txt {
    text-align: left;
  }
  .p-fv {
    overflow: hidden;
    padding-block: clamp(5rem, 2.608rem + 10.2vw, 7.5rem) clamp(2.5rem, -1.087rem + 15.31vw, 6.25rem);
  }
  .p-fv__bg {
    height: auto;
    left: 0;
    transform: none;
    width: 100%;
  }
  .p-fv__bg img {
    display: none;
  }
  .p-fv__flex {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 1.25rem;
  }
  .p-fv__txt {
    gap: 1.25rem;
    max-width: 100%;
    width: 100%;
  }
  .p-fv__badge {
    padding: 0.5rem 1rem;
  }
  .p-fv__catch {
    font-size: clamp(1.688rem, 0.432rem + 5.36vw, 3rem);
    line-height: 1.5;
  }
  .p-fv__logo-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.625rem;
  }
  .p-fv__logo {
    width: 27.8125rem;
  }
  .p-fv__desc {
    font-size: 0.8125rem;
    width: 100%;
  }
  .p-fv__btn {
    font-size: clamp(1.25rem, 1.011rem + 1.02vw, 1.5rem);
    height: 4.375rem;
    margin-inline: auto;
    padding: 1.0625rem 1.25rem;
    width: 100%;
  }
  .p-fv__img {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 1.25rem;
    max-width: none;
    width: 100vw;
  }
  .p-hikaku__inner {
    gap: 2.25rem;
  }
  .p-hikaku__ttl-main {
    font-size: clamp(1.75rem, 1rem + 3.2vw, 2rem);
  }
  .p-hikaku__table-wrapper {
    margin-inline: -1.25rem;
    overflow-x: auto;
    padding-inline: 1.25rem;
  }
  .p-hikaku__table {
    min-width: 62.5rem;
    padding-top: 0.625rem;
    table-layout: fixed;
    width: auto;
  }
  .p-hikaku__th-label {
    min-width: 8rem;
    padding-block: 2rem;
    width: 8rem;
  }
  tbody .p-hikaku__th-label.p-hikaku__th-label--01::before {
    height: 7.5rem;
    left: 4.875rem;
    top: -7.25rem;
    width: 6.25rem;
  }
  .p-hikaku__th--kikantree {
    min-width: 17.5rem;
    width: 17.5rem;
  }
  .p-hikaku__th--saas {
    min-width: 17.5rem;
    width: 17.5rem;
  }
  .p-hikaku__th--fullscratch {
    min-width: 17.5rem;
    width: 17.5rem;
  }
  .p-hikaku__td--kikantree {
    min-width: 17.5rem;
    width: 17.5rem;
  }
  .p-hikaku__td--saas {
    min-width: 17.5rem;
    width: 17.5rem;
  }
  .p-hikaku__td--fullscratch {
    min-width: 17.5rem;
    width: 17.5rem;
  }
  .p-inventory__inner {
    gap: 3.125rem;
  }
  .p-inventory__txt {
    gap: 1.25rem;
  }
  .p-inventory__flex {
    flex-direction: column;
    gap: 1.25rem;
  }
  .p-inventory__left {
    padding-top: 0;
    width: 100%;
  }
  .p-inventory__frame {
    gap: 0.75rem;
    height: auto;
    padding: 1.875rem 0.75rem 1.25rem 0.75rem;
  }
  .p-inventory__frame-inner {
    flex-direction: column;
    gap: 1.25rem;
  }
  .p-inventory__card--basic {
    height: auto;
    width: 100%;
  }
  .p-inventory__card--custom {
    height: auto;
    width: 100%;
  }
  .p-inventory__card--option {
    height: auto;
    margin-inline: auto;
    max-width: 42.375rem;
    padding-top: 0.625rem;
    width: 95%;
  }
  .p-inventory__card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-inventory__card--custom .p-inventory__card-list,
  .p-inventory__card--option .p-inventory__card-list {
    width: 100%;
  }
  .p-inventory__card-item {
    width: 100%;
  }
  .p-inventory__ttl-box {
    left: 50%;
    top: -1.375rem;
    transform: translateX(-50%);
  }
  .p-inventory__right {
    padding-top: 0;
    width: 100%;
  }
  .p-inventory__card--basic::after {
    bottom: -2.125rem;
    left: 50%;
    right: unset;
    top: unset;
    transform: translateX(-50%);
  }
  .p-inventory__card--custom::after {
    bottom: -3.375rem;
    left: 50%;
    right: unset;
    top: unset;
    transform: translateX(-50%);
  }
  .p-jirei__inner {
    gap: 2.25rem;
  }
  .p-jirei__list {
    gap: 2.5rem;
  }
  .p-jirei__item {
    padding: 2.5rem 1.25rem 1.875rem 1.25rem;
  }
  .p-jirei__ttl-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }
  .p-jirei__ttl-midashi {
    font-size: 1rem;
  }
  .p-jirei__ttl {
    font-size: 1.25rem;
  }
  .p-jirei__cat-box {
    border-left: none;
    padding-left: 0;
  }
  .p-jirei__content {
    flex-direction: column;
    gap: 5rem;
  }
  .p-jirei__img {
    width: 100%;
  }
  .p-jirei__yokattaten-icon {
    left: -0.375rem;
    top: -4.125rem;
    width: 5rem;
  }
  .p-jirei__yokattaten-txt {
    padding: 1rem;
    padding-left: 1.875rem;
  }
  .p-jirei__btn {
    gap: 0.625rem;
    width: 100%;
  }
  .p-kadai__inner {
    gap: 2.5rem;
  }
  .p-kadai__list {
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
  }
  .p-kadai__item {
    width: 100%;
  }
  .p-kadai__item-header {
    justify-content: center;
  }
  .p-kadai__item-label-num {
    font-size: 4.375rem;
  }
  .p-kadai__item-img {
    margin-inline: auto;
    width: 80%;
  }
  .p-kadai__item-dtl {
    font-size: 1.25rem;
    margin-top: 0.75rem;
  }
  .p-kadai__solution {
    width: 100%;
  }
  .p-kadai__solution-box {
    border-radius: 1rem;
  }
  .p-kadai__solution-txt-wrap {
    gap: 1.25rem;
  }
  .p-kadai__solution-txt-top {
    border-bottom-width: 0.09375rem;
    padding-bottom: 1rem;
  }
  .p-kadai__solution-txt-top-item {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
  .p-kadai__solution-main {
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  .p-kadai__solution-main-txt {
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  .p-kadai__solution-main-txt-01 {
    font-size: clamp(1.75rem, 0.25rem + 6.4vw, 2.25rem);
  }
  .p-kadai__solution-main-txt-02 {
    font-size: clamp(1.375rem, 0.25rem + 4.8vw, 1.75rem);
  }
  .p-price-zaiko::before {
    height: clamp(15rem, 7.526rem + 31.89vw, 22.813rem);
    right: -3.75rem;
    top: 1.875rem;
    width: clamp(12.5rem, 5.325rem + 30.61vw, 20rem);
  }
  .p-price-zaiko .inner {
    margin-top: 2.5rem;
  }
  .p-reason {
    background-color: #f5f5f5;
  }
  .p-reason::before {
    display: none;
  }
  .p-reason__inner {
    gap: 2.5rem;
    width: 100%;
  }
  .p-reason__txt {
    gap: 1.25rem;
    padding-left: 0;
  }
  .p-reason__desc {
    font-size: 0.875rem;
    line-height: 1.8;
    width: 100%;
  }
  .p-reason__box {
    border-radius: 0.625rem;
    padding-top: 2.5rem;
  }
  .p-reason__list {
    flex-direction: column;
    padding: 0 1.25rem;
    width: 100%;
  }
  .p-reason__item {
    border-left: 0.0625rem dashed #dbdbdb;
    flex-direction: row-reverse;
    gap: clamp(0.625rem, -1.25rem + 8vw, 1.25rem);
    margin-left: clamp(0.75rem, -0.75rem + 6.4vw, 1.25rem);
    padding: clamp(0.625rem, -0.571rem + 5.1vw, 1.875rem) 1.25rem clamp(0.625rem, -0.571rem + 5.1vw, 1.875rem) 0;
    width: 100%;
  }
  .p-reason__item.p-reason__item--01 {
    position: relative;
  }
  .p-reason__item.p-reason__item--01::before {
    background-color: #fff;
    content: "";
    height: clamp(1.25rem, -4.729rem + 25.51vw, 7.5rem);
    left: -0.25rem;
    position: absolute;
    top: 0;
    width: 0.25rem;
  }
  .p-reason__item.p-reason__item--03 {
    position: relative;
  }
  .p-reason__item.p-reason__item--03::before {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: clamp(60px, 28.06vw - 45.23px, 170px);
    left: -0.25rem;
    position: absolute;
    width: 0.25rem;
  }
  .p-reason__item-img {
    height: auto;
    max-width: clamp(6.25rem, -5.827rem + 51.53vw, 18.875rem);
    width: 100%;
  }
  .p-reason__item--03 .p-reason__item-img {
    height: auto;
    max-width: 20rem;
    width: 100%;
  }
  .p-reason__item-txt {
    align-items: flex-start;
    border-top: none;
    gap: 0;
    padding-top: unset;
    width: unset;
  }
  .p-reason__item-num {
    font-size: clamp(0.938rem, 4vw, 1.25rem);
    height: clamp(1.875rem, 8vw, 2.5rem);
    position: static;
    width: clamp(1.875rem, 8vw, 2.5rem);
  }
  .p-reason__item-ttl {
    font-size: clamp(1rem, 0.25rem + 3.2vw, 1.25rem);
    padding-left: 1.25rem;
    text-align: left;
  }
  .p-reason__box-ttl {
    top: -3.75rem;
    width: 90%;
  }
  .p-reason__box-ttl-txt {
    border-radius: 1rem;
    font-size: clamp(1.125rem, 0.75rem + 1.6vw, 1.25rem);
    gap: 0.625rem;
    justify-content: flex-start;
    padding: 0.625rem 1.25rem 0.625rem clamp(1.25rem, -10.708rem + 51.02vw, 13.75rem);
    width: 100%;
  }
  .p-reason__box-circle {
    height: clamp(6.25rem, 2.663rem + 15.31vw, 10rem);
    right: 0.625rem;
    top: -1.875rem;
    width: clamp(6.25rem, 2.663rem + 15.31vw, 10rem);
  }
  .p-reason__box-circle-txt {
    font-size: clamp(0.625rem, 0.326rem + 1.28vw, 0.938rem);
  }
  .p-reason__bottom-box {
    border-radius: 0 0 0.625rem 0.625rem;
    margin-top: 2.5rem;
    padding: 2.5rem 0.625rem 1.875rem 0.625rem;
  }
  .p-reason__bottom-txt {
    width: 100%;
  }
  .p-reason__bottom-txt-top {
    font-size: 1.25rem;
    padding-bottom: 0.9375rem;
  }
  .p-reason__bottom-txt-bottom {
    font-size: 1.5rem;
    padding: 0.625rem 0;
  }
  .p-reason__bottom-polygon {
    height: 2.125rem;
    top: -0.5rem;
    width: 7.5rem;
  }
  .p-support {
    padding-block: 3.75rem;
  }
  .p-support__ttl-box {
    gap: 1.25rem;
  }
  .p-support__desc {
    font-size: 0.875rem;
    line-height: 2em;
  }
  .p-support__contents {
    gap: 2.5rem;
    margin-top: 1.25rem;
  }
  .p-support__list {
    align-items: center;
    flex-direction: column;
    gap: 1.875rem;
  }
  .p-support__item {
    max-width: 21.25rem;
    width: 100%;
  }
  .p-support__txt {
    font-size: 0.875rem;
    width: 100%;
  }
  .p-support__bottom-txt {
    font-size: 1.25rem;
    line-height: 1.75em;
  }
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
  .space-100-pt {
    padding-top: clamp(3.75rem, 1.358rem + 10.2vw, 6.25rem);
  }
  .space-100-pb {
    padding-bottom: clamp(3.75rem, 1.358rem + 10.2vw, 6.25rem);
  }
}

@media (max-width: 640px) {
  section.p-price .inner {
    width: auto;
  }
  section.p-price h2.section_title {
    margin-bottom: 30px;
  }
  section.p-price h2.section_title span.small {
    display: block;
    font-size: 22px;
    width: auto;
  }
  section.p-price .h2_title_text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
  }
  section.p-price .cost h3.h3_title {
    display: block;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 30px;
    width: auto;
  }
  section.p-price .cost .icon {
    display: none;
    position: absolute;
    right: 7%;
    top: 20px;
  }
  section.p-price .cost table.tariff th {
    line-height: 48px;
    width: auto;
  }
  section.p-price .cost table.tariff th.usually {
    align-items: center;
    display: flex;
    font-size: 13px;
    justify-content: center;
    line-height: 1.4;
    width: auto;
  }
  section.p-price .cost table.tariff th.private {
    border: none;
    box-shadow: 0 0 0 5px #59a72b;
    font-size: 24px;
  }
  section.p-price .cost table.tariff td {
    border-bottom: 1px solid #707070;
    border-right: none;
    font-size: 18px;
  }
  section.p-price .cost table.tariff td.private_num {
    border: none;
    box-shadow: 0 0 0 5px #59a72b;
    font-size: 28px;
  }
  section.p-price .cost table.tariff td.private_num span.yen {
    font-size: 18px;
    font-weight: 500;
  }
  section.p-price .cost table.tariff tr {
    display: block;
    float: left;
  }
  section.p-price .cost table.tariff td,
  section.p-price .cost table.tariff th {
    border-left: none;
    display: block;
    height: 50px;
  }
  section.p-price .cost table.tariff thead {
    display: block;
    float: left;
    width: 50%;
  }
  section.p-price .cost table.tariff thead tr {
    width: 100%;
  }
  section.p-price .cost table.tariff tbody {
    display: block;
    float: left;
    width: 50%;
  }
  section.p-price .cost table.tariff tbody tr {
    width: 100%;
  }
  section.p-price .cost table.tariff tr td + td {
    border-left: none;
  }
  section.p-price .icon_arrow {
    margin: 30px auto 34px;
    width: 10%;
  }
  section.p-price .uchiwake h3.h3_title {
    font-size: 18px;
    line-height: 36px;
    margin: -30px auto 30px;
    width: auto;
  }
  section.p-price .uchiwake {
    margin-bottom: 40px;
    margin-top: 55px;
    padding: 7px 20px 10px;
    padding-top: 7px;
  }
  section.p-price .uchiwake table.tariff.pc {
    display: none;
  }
  section.p-price .uchiwake table.tariff.sp {
    margin-bottom: 20px;
  }
  section.p-price .uchiwake table.tariff {
    width: 100%;
  }
  section.p-price .uchiwake table.tariff th,
  section.p-price .uchiwake table.tariff td {
    border-right: none !important;
    display: inline-block;
    padding: 0 !important;
    width: 100% !important;
  }
  section.p-price .uchiwake table.tariff th.subject {
    font-weight: 500;
  }
  section.p-price .uchiwake table.tariff td.ordinarily {
    background-color: #dddddd;
    font-size: 16px;
    font-weight: 500;
  }
  section.p-price .uchiwake table.tariff td.text {
    border-bottom: none;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.6;
    padding: 5px !important;
  }
  section.p-price .uchiwake table.tariff td.dot {
    border-bottom: 2px dashed #707070;
    font-weight: 500;
  }
  section.p-price .uchiwake table.tariff td.none {
    border-bottom: 2px solid #fff;
    border-left: 1px solid #fff;
  }
  section.p-price p.notes {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 10px;
    text-align: left;
  }
  section.p-price .cost.running table.tariff td.usually {
    font-size: 14px;
  }
  section.p-price .cost.running table.tariff td.dot {
    align-items: center;
    background-color: #e2ece0;
    box-shadow: 0 0 0 5px #59a72b;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    line-height: 1.4;
    padding: 0 10px;
    text-align: center;
    width: auto;
  }
  section.p-price .cost.running table.tariff td.dot span.text.pc {
    display: none;
  }
  section.p-price .cost.running p.notes {
    font-size: 12px;
    line-height: 1.6;
    margin: 20px auto 0;
    text-align: left;
  }
  section.p-price .cost.running table.tariff td.subject {
    padding-right: 0;
    text-align: center;
  }
  img {
    height: auto;
    width: 100%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

@media (max-width: 500px) {
  .p-flow__list {
    gap: 3.625rem;
    margin-top: 5rem;
  }
  .p-flow__item-txt {
    padding-left: 0;
  }
  .p-flow__item-circle {
    left: 0.625rem;
    top: -3.125rem;
    width: 5rem;
  }
  .p-flow__item-circle-num {
    height: 5rem;
    width: 5rem;
  }
  .p-flow__item-circle-num-txt {
    font-size: 2.25rem;
  }
  .p-flow__item-circle-label {
    font-size: 0.625rem;
  }
  .p-inventory__card-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-kadai__item-img {
    width: 100%;
  }
  .p-reason__box-ttl {
    top: -2.5rem;
  }
  .p-reason__box-circle {
    right: -1.25rem;
  }
}

@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {
  .l-footer__item a:hover {
    color: #121212;
  }
  .c-btn:hover {
    color: #fff;
    transition: 0.3s all;
  }
  .c-cta-btn:hover {
    box-shadow: none;
    transform: translateY(0.125rem);
  }
  .c-cta-btn:hover .c-cta-btn__arrow {
    transform: translateY(calc(-50% + 0.125rem));
  }
  .p-cta__tel-num:hover {
    opacity: 0.8;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */