@charset "UTF-8";

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption {
  display: block;
}

ul,
ol {
  list-style: none;
  list-style-type: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

/**カラー*********/

:root {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",sans-serif;
  --color-blue: #00518E;
  --color-orange: #FF6B00;
  --color-light-orange: #FFCF70;
  --color-yellow: #FFF3B2;
  --base-font-size: 16;
  --container-w: 100%;
  --container-space: calc((50/var(--base-font-size)) * 1rem);
  --header-h: calc((58/var(--base-font-size)) * 1rem);
}

body {
  font-family: var(--sans-serif);
  color: #25445b;
  line-height: 1;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: #25445b;
  display: inline-block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0 7%;
  height: var(--header-h);
  z-index: 999;
}

.l-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.7);
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.l-header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__logo {
  position: relative;
  z-index: 2;
}

.l-header__logo img {
  height: 1.3125rem;
}

.l-footer {
  background-color: var(--color-blue);
  clip-path: polygon(0 calc(0% + 20.8vw), 100% 0, 100% 100%, 0 100%);
  padding: 26.6666666667vw 0 4.37rem !important;
}

.l-footer__logo {
  margin: 0 auto 1.875rem;
  width: 92%;
  max-width: 800px;
}

.l-footer__logo-img {
  height: 1.875rem;
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.l-footer__navlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.l-footer__navitem-link {
  color: #fff;
  font-weight: 600;
}

.l-footer {
  color: #fff;
  padding: 48px 0 85px;
}

.l-footer__inner {
  max-width: 1440px;
  width: 89%;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.l-footer__left {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.l-footer__logo {
  width: 160px;
  margin: 0;
}

.l-footer__logo img {
  vertical-align: bottom;
}

.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__sns-ttl {
  display: none;
}

.l-footer__sns-link {
  width: 16px;
}

.l-footer__sns-link--twitter {
  margin-right: 20px;
}

.l-footer__nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-footer__navlist {
  gap: 12px;
}

.l-footer__navitem-link {
  font-size: 14px;
}

.l-footer__sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding-left: 10px;
}

.l-footer__sub-list .l-footer__navitem-link {
  font-size: 12px;
}

.l-footer-copy {
  font-size: clamp(10px, 1.5625vw, 12px);
  text-align: center;
}

.l-main {
  overflow-x: clip;
}

.l-page {
  overflow: hidden;
}

.c-section-inner {
  margin: 0 auto;
  max-width: 61.5rem;
  width: 88%;
}

.c-section-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  letter-spacing: 0;
}

.c-section-ttl h2 {
  position: relative;
  text-align: center;
  line-height: 1.6;
}

.c-section-ttl h2 > * {
  position: relative;
  z-index: 2;
}

.c-section-ttl__orange {
  color: var(--Orange01, #FF6B00);
}

.c-section-ttl__blue {
  color: var(--Blue-Main, #00518E);
}

.c-section-ttl__white {
  color: var(--White, #FFF);
}

.c-section-ttl__yellow {
  color: var(--Yellow02, #FFF3B2);
}

.c-section-ttl--diagonal h2::before {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/lp/006/icon_stroke.png);
  width: 2.89275rem;
  height: 1.9416875rem;
  top: -1.3125rem;
  left: -1.1875rem;
}

.c-section-ttl--rl h2::before,
.c-section-ttl--rl h2::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/lp/006/icon_stroke02.png);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 1.09375rem;
  height: 1.96875rem;
}

.c-section-ttl--rl h2::before {
  left: -2.25rem;
  top: 53%;
}

.c-section-ttl--rl h2::after {
  right: -2.25rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 6%;
}

.c-section-ttl--line h2::after {
  content: "";
  position: absolute;
  width: 107%;
  clip-path: polygon(1% 0%, 100% 0%, 99% 100%, 0% 100%);
  background-color: #FF6B00;
  position: absolute;
  bottom: 0;
  height: 0.75rem;
  left: -0.625rem;
}

.c-bg-corder {
  position: relative;
  background-color: var(--color-blue);
  clip-path: polygon(0 calc(0% + 16.8vw), 100% 0, 100% calc(100% - 16.8vw), 0 100%);
  margin-top: -20.8vw;
  margin-bottom: -20.8vw;
  padding-top: 20.8vw;
  padding-bottom: 20.8vw;
}

.c-bg-corder::before,
.c-bg-corder::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/lp/006/bg_corder_sp.svg) 50%/contain no-repeat;
  width: 17.25rem;
  height: 5.75rem;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}

.c-bg-corder::before {
  top: -0.125rem;
  right: -3.375rem;
}

.c-bg-corder::after {
  bottom: -0.25rem;
  left: -3.3125rem;
}

.c-bg-corder__content {
  position: relative;
  z-index: 2;
}

.c-scroll-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.348125rem;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 0.8125rem;
}

.js-scrollable.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.p-fv {
  position: relative;
}

.p-fv::before {
  content: "";
  width: 100%;
  height: clamp(500px, 133.2464146023vw, 1022px);
  background: url(../img/lp/006/bg_fv_sp.jpg) center/cover no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.p-fv {
  padding-top: 12.9375rem;
}

.p-fv .c-bg-corder {
  width: 100%;
  height: 20.625rem;
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-bottom: 1.375rem;
}

.p-fv__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  position: relative;
}

.p-fv__ttl::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.p-fv__la {
  position: relative;
  font-weight: 700;
}

.p-fv__la span:nth-child(1) {
  position: absolute;
  -webkit-text-stroke-width: 6px;
  -webkit-text-stroke-color: var(--White, #FFF);
  color: #fff;
}

.p-fv__la span:nth-child(2) {
  position: relative;
}

.p-fv__la--orange span:nth-child(2) {
  color: var(--Orange01, #FF6B00);
}

.p-fv__la--blue span:nth-child(2) {
  color: var(--Blue-Main, #00518E);
}

.p-fv__la:nth-child(1) {
  font-size: 2.25rem;
}

.p-fv__la:nth-child(1) span:nth-child(1) {
  -webkit-text-stroke-width: 8px;
}

.p-fv__la:nth-child(2) {
  font-size: 1.5rem;
}

.p-fv__la:nth-child(2)::before {
  content: "";
  width: 102%;
  background: var(--Orange02, #FFCF70);
  position: absolute;
  left: -0.3125rem;
  bottom: -0.375rem;
  height: 0.497125rem;
}

.p-fv__la:nth-child(3) {
  font-size: 2.25rem;
}

.p-fv__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 3.125rem;
}

.p-fv__card {
  border-radius: 0.6655rem;
  background: var(--White, #FFF);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 6.6546875rem;
  position: relative;
  text-align: center;
  padding: 1.3125rem 0 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}

.p-fv__icon {
  width: 2.21825rem;
  position: absolute;
  top: -1.125rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.p-fv__la-line {
  color: var(--Blue-Main, #00518E);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(20%, #FFCF70));
  background: linear-gradient(to bottom, transparent 80%, #FFCF70 20%);
}

.p-fv__la-strong {
  color: var(--Orange01, #FF6B00);
  font-size: 1rem;
  font-weight: 700;
}

.p-fv__la-strong span {
  font-size: 0.6875rem;
}

.p-fv__txt {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: 1.625rem;
  position: relative;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-fv__txt::before {
  content: "";
  width: 15.375rem;
  height: 0.625rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/lp/006/wave_fv_sp.png);
  position: absolute;
  bottom: -0.6875rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.p-fv__txt span {
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.125rem;
  font-weight: 700;
}

.p-fv__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.375rem;
}

.p-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100vmax;
  border: 1px solid var(--color-orange);
  background-color: var(--color-orange);
  width: 16.875rem;
  height: 3.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  gap: 0.625rem;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-btn span {
  letter-spacing: 0.08em;
}

.p-btn svg path {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.p-btn:hover svg path {
  fill: var(--color-orange);
}

.p-btn.p-btn--arrow span:after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.4375rem solid transparent;
  border-bottom: 0.4375rem solid transparent;
  border-left: 0.625rem solid #fff;
  border-right: 0;
}

.p-asign {
  padding: 8.125rem 0 7.1875rem;
}

.p-asign__ttl .c-section-ttl__blue {
  font-size: 1.375rem;
}

.p-asign__ttl .c-section-ttl__orange {
  font-size: 1.75rem;
}

.p-asign__ttl h2::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/lp/006/wave_asign_sp.png);
  bottom: -1.25rem;
  left: 53%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 15.0694375rem;
  height: 0.625rem;
}

.p-asign__img {
  margin-top: 2.625rem;
}

.p-asign__content {
  font-weight: 700;
  text-align: center;
  color: var(--Blue-Main, #00518E);
  font-size: 1.125rem;
  line-height: 2.2;
  margin-top: 2.375rem;
  letter-spacing: 0;
}

.p-asign__line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #FFCF70));
  background: linear-gradient(to bottom, transparent 70%, #FFCF70 30%);
}

.p-asign__orange {
  font-size: 1.25rem;
  color: var(--Orange01, #FF6B00);
}

.p-coverage-area::before {
  content: none;
}

.p-coverage {
  padding-top: 2.875rem;
  padding-bottom: 10.1875rem;
}

.p-coverage__ttl .c-section-ttl__white {
  font-size: 1.375rem;
}

.p-coverage__ttl .c-section-ttl__yellow {
  font-size: 1.75rem;
}

.p-coverage__txt {
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 2.5rem;
}

.p-coverage__table {
  margin-top: 2.5rem;
  overflow-x: auto;
  /* 横スクロールを有効にする */
  white-space: nowrap;
  margin-right: calc(50% - 50vw);
}

.p-coverage__table-inner {
  width: 61.5rem;
  margin-right: 1.25rem;
}

.p-coverage__note {
  color: #fff;
}

.p-workflow {
  background-color: #fff;
  position: relative;
  padding-bottom: 11.25rem;
  padding-top: 0.625rem;
}

.p-workflow::before,
.p-workflow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-radius: 50%;
  background-color: #fff;
  width: 103.2%;
  height: 7.9375rem;
}

.p-workflow::before {
  top: -4.75rem;
}

.p-workflow::after {
  bottom: -3.625rem;
}

.p-workflow > * {
  position: relative;
  z-index: 2;
}

.p-workflow__ttl h2 {
  line-height: 1.5;
}

.p-workflow__ttl .c-section-ttl__blue {
  font-size: 1.375rem;
}

.p-workflow__ttl .c-section-ttl__orange {
  font-size: 1.75rem;
}

.p-workflow__content {
  margin-top: 2.5rem;
}

.p-workflow__bubble-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 0.375rem;
  position: absolute;
  bottom: -15.625rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.p-workflow__ill {
  width: 9.375rem;
}

.p-workflow__bubble {
  width: 14.5875rem;
}

.p-soft {
  padding-top: 8.125rem;
  padding-bottom: 5.125rem;
}

.p-soft__ttl .c-section-ttl__white {
  font-size: 1.375rem;
}

.p-soft__ttl .c-section-ttl__yellow {
  font-size: 1.625rem;
}

.p-soft__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  margin-top: 2.3125rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-soft__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.125rem 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.625rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 0.375rem;
  background: var(--Gray02, #EEE);
}

.p-soft__card h3 {
  text-align: center;
  border-radius: 0.375rem;
  background: var(--Orange01, #FF6B00);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  padding: 0.4375rem;
}

.p-soft__img {
  width: 8.625rem;
}

.p-soft__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
}

.p-soft__tag {
  border-radius: 0.375rem;
  background: var(--Blue-Main, #00518E);
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 5.0625rem;
  padding: 0.5rem 0.5625rem;
}

.p-soft__tag:nth-child(4) {
  width: 100%;
  min-width: none;
}

.p-soft__txt {
  text-align: center;
  color: var(--White, #FFF);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 2.5rem;
  position: relative;
}

.p-soft__txt::before {
  content: "";
  width: 15rem;
  height: 0.625rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-image: url(../img/lp/006/wave_soft_sp.png);
  bottom: -0.9375rem;
}

.p-soft__txt span {
  font-size: 1.125rem;
}

.p-case {
  padding: 7.375rem 0 8.25rem;
}

.p-case__ttl h2::after {
  top: 16%;
}

.p-case__ttl .c-section-ttl__orange {
  font-size: 1.625rem;
}

.p-case__ttl .c-section-ttl__blue {
  font-size: 1.375rem;
}

.p-case__ill {
  margin: 2.875rem auto 0;
  width: 19.625rem;
}

.p-case__ill img {
  vertical-align: bottom;
}

.p-case__table {
  width: 100%;
  overflow-x: auto;
  /* 横スクロールを有効にする */
  white-space: nowrap;
  margin-right: calc(50% - 50vw);
}

.p-case__table table {
  border-collapse: collapse;
  width: 61.5rem;
  line-height: 1.5;
  margin-right: 1.25rem;
}

.p-case__table table thead th {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  border-left: 1px solid #FFF;
  background: var(--Blue-Main, #00518E);
  padding: 0.4375rem 1.0625rem;
  border-left: 1px solid #FFF;
  background: var(--Blue-Main, #00518E);
  width: 20%;
}

.p-case__table table thead th:nth-child(1) {
  border-top-left-radius: 0.375rem;
  border-left: 0;
}

.p-case__table table thead th:last-child {
  border-top-right-radius: 0.375rem;
}

.p-case__table table tbody {
  color: var(--Blue-Main, #00518E);
  font-size: 0.875rem;
  font-weight: 500;
}

.p-case__table table tbody th,
.p-case__table table tbody td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  font-weight: 500;
}

.p-case__table table tbody th {
  background: var(--Blue-Sky, #E8F4F6);
}

.p-case__table table tbody td {
  border: 1px solid var(--Blue-Sky, #E8F4F6);
  background: var(--White, #FFF);
}

.p-case__table table tbody tr:last-child th {
  border-bottom-left-radius: 0.375rem;
}

.p-case__table table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.375rem;
}

.p-case__note {
  color: var(--Blue-Main, #00518E);
}

.p-case02 {
  padding: 2.25rem 0 3.9375rem;
}

.p-case02__ttl .c-section-ttl__yellow {
  font-size: 1.625rem;
}

.p-case02__ttl .c-section-ttl__white {
  font-size: 1.375rem;
}

.p-case02__ill {
  margin: 2.75rem auto 0;
  width: 19.625rem;
}

.p-case02__ill img {
  vertical-align: bottom;
}

.p-case02__table {
  overflow-x: auto;
  /* 横スクロールを有効にする */
  white-space: nowrap;
  margin-right: calc(50% - 50vw);
}

.p-case02__table table {
  border-collapse: collapse;
  width: 61.5rem;
  line-height: 1.5;
  margin-right: 1.25rem;
}

.p-case02__table table thead th {
  color: var(--Bk, #3F3F3F);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  width: 16.66667%;
  padding: 0.4375rem 1.0625rem;
  border: 1px solid var(--Blue-Main, #00518E);
  border-top: none;
}

.p-case02__table table thead th:nth-child(odd) {
  background: var(--Orange02, #FFCF70);
}

.p-case02__table table thead th:nth-child(even) {
  background: var(--Yellow02, #FFF3B2);
}

.p-case02__table table thead th:nth-child(1) {
  border-top-left-radius: 0.375rem;
}

.p-case02__table table thead th:last-child {
  border-top-right-radius: 0.375rem;
}

.p-case02__table table tbody {
  color: var(--Blue-Main, #00518E);
  font-size: 0.875rem;
  font-weight: 500;
}

.p-case02__table table tbody th,
.p-case02__table table tbody td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  font-weight: 500;
  border: 1px solid var(--Blue-Main, #00518E);
}

.p-case02__table table tbody th {
  background: var(--Blue-Sky, #E8F4F6);
}

.p-case02__table table tbody td {
  background: var(--White, #FFF);
}

.p-case02__table table tbody tr:last-child > *:nth-child(1) {
  border-bottom-left-radius: 0.375rem;
}

.p-case02__table table tbody tr:last-child > *:last-child {
  border-bottom-right-radius: 0.375rem;
}

.p-case02__note {
  color: #fff;
}

.p-flow {
  padding: 8.25rem 0 4.3125rem;
}

.p-flow__ttl h2::before {
  content: "";
  width: 15.3125rem;
  height: 0.625rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-image: url(../img/lp/006/wave_flow_sp.png);
  bottom: -0.625rem;
}

.p-flow__ttl .c-section-ttl__orange {
  font-size: 1.625rem;
}

.p-flow__ttl .c-section-ttl__blue {
  font-size: 1.375rem;
}

.p-flow__content {
  margin-top: 3.125rem;
}

.p-totop {
  margin: 0 auto;
  z-index: 99;
  position: fixed;
  bottom: 1.5rem;
  right: 0.25rem;
}

.p-totop__btn {
  width: 3.125rem;
  height: 3.125rem;
  background-color: var(--color-blue);
  border-radius: 50%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.p-totop__btn-img {
  width: 1.3125rem;
}

.p-cta {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 999;
  opacity: 0;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}

.p-cta.active {
  bottom: 1.25rem;
  opacity: 1;
}

.p-cta a {
  font-size: 1rem;
  width: 15.625rem;
  height: 2.5rem;
}

.u-sp {
  display: none;
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-fd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.u-fw-regular {
  font-weight: 400;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-bold {
  font-weight: 700;
}

.u-ls300 {
  letter-spacing: 0.3em;
}

.u-po-rel {
  position: relative;
}

.u-po-abs {
  position: absolute;
}

@media screen and (min-width: 680px) {
  .l-footer__nav {
    gap: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 750px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --container-w: 768px;
    --container-space: 80px;
  }

  body {
    font-size: 1rem;
  }

  .l-footer {
    clip-path: polygon(0 calc(0% + 11.484375vw), 100% 0, 100% 100%, 0 100%);
    padding: 14.0625vw 0 6.37rem !important;
  }

  .l-footer {
    padding: 48px 0 100px;
  }

  .l-footer__left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: 0;
    gap: 60px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .l-footer__navitem-link {
    font-size: 16px;
  }

  .l-footer__sub-list .l-footer__navitem-link {
    font-size: 16px;
  }

  .l-main {
    padding-top: 0;
  }

  .c-section-ttl h2 {
    line-height: 1.2;
  }

  .c-section-ttl--diagonal h2::before {
    width: 2.5rem;
    height: 1.875rem;
    top: -1.875rem;
    left: -1.375rem;
  }

  .c-section-ttl--rl h2::before,
  .c-section-ttl--rl h2::after {
    width: 1.44375rem;
    height: 2.6rem;
  }

  .c-section-ttl--rl h2::before {
    left: -2.8125rem;
    top: 50%;
  }

  .c-section-ttl--rl h2::after {
    right: -2.8125rem;
    top: 30%;
  }

  .c-section-ttl--line h2::after {
    width: 103%;
  }

  .c-bg-corder {
    clip-path: polygon(0 calc(0% + 8.7vw), 100% 0, 100% calc(100% - 9.484375vw), 0 100%);
    margin-top: -11.484375vw;
    margin-bottom: -11.484375vw;
    padding-top: 11.484375vw;
    padding-bottom: 11.484375vw;
  }

  .c-bg-corder::before,
  .c-bg-corder::after {
    background-image: url(../img/lp/006/bg_corder_pc.svg);
    width: 41.3309375rem;
    height: 12.3210625rem;
  }

  .c-bg-corder::before {
    top: -1.25rem;
    right: -6.375rem;
  }

  .c-bg-corder::after {
    bottom: -1.25rem;
    left: -9.25rem;
  }

  .c-scroll-note {
    display: none;
  }

  .p-fv::before {
    height: clamp(475px, 61.9444444444vw, 892px);
    background-position: center top;
    background-image: url(../img/lp/006/bg_fv.jpg);
  }

  .p-fv {
    padding-top: 16.6875rem;
  }

  .p-fv .c-bg-corder {
    height: 31.875rem;
  }

  .p-fv__ttl {
    gap: 0.75rem;
  }

  .p-fv__ttl::before {
    background-image: url(../img/lp/006/icon_stroke.png);
    width: 3.41875rem;
    height: 2.93125rem;
    top: -3.125rem;
    left: 16.2%;
  }

  .p-fv__la:nth-child(1) {
    font-size: 4.125rem;
  }

  .p-fv__la:nth-child(2) {
    font-size: 3.25rem;
  }

  .p-fv__la:nth-child(2)::before {
    height: 0.6875rem;
    bottom: -0.5rem;
    left: -0.5rem;
  }

  .p-fv__la:nth-child(3) {
    font-size: 3.125rem;
  }

  .p-fv__cards {
    gap: 1.8125rem;
    margin-top: 5.9375rem;
  }

  .p-fv__card {
    width: 15rem;
    border-radius: 1.5rem;
    gap: 0.75rem;
    padding: 2.75rem 0 2.3125rem;
  }

  .p-fv__icon {
    width: 5rem;
    top: -2.5rem;
  }

  .p-fv__la-line {
    font-size: 1.5rem;
  }

  .p-fv__la-strong {
    font-size: 2.25rem;
  }

  .p-fv__la-strong span {
    font-size: 1.5rem;
  }

  .p-fv__txt {
    font-size: 1.625rem;
    margin-top: 3rem;
  }

  .p-fv__txt::before {
    background-image: url(../img/lp/006/wave_fv.png);
    bottom: -1.5625rem;
    width: 25.625rem;
  }

  .p-fv__txt span {
    font-size: 2rem;
  }

  .p-fv__btn-wrap {
    margin-top: 3.8125rem;
  }

  .p-btn {
    font-size: 0.75rem;
    width: 21.875rem;
    height: 3.75rem;
  }

  .p-btn {
    border-width: 2px;
    width: 21.875rem;
    height: 3.75rem;
    font-size: 1rem;
  }

  .p-btn.p-btn--arrow span:after {
    border-width: 0.625rem 0 0.625rem 1.0625rem;
  }

  .p-asign {
    padding: 12rem 0 10.3125rem;
  }

  .p-asign__ttl .c-section-ttl__blue {
    font-size: 2rem;
  }

  .p-asign__ttl .c-section-ttl__orange {
    font-size: 2.25rem;
  }

  .p-asign__ttl h2::after {
    width: 36.375rem;
    background-image: url(../img/lp/006/wave_asign.png);
  }

  .p-asign__img {
    margin-top: 5.0625rem;
  }

  .p-asign__content {
    margin-top: 3.625rem;
  }

  .p-coverage-area::after {
    left: -7.25rem;
  }

  .p-coverage {
    padding-top: 0;
    padding-bottom: 12rem;
  }

  .p-coverage__ttl .c-section-ttl__white {
    font-size: 2rem;
  }

  .p-coverage__ttl .c-section-ttl__yellow {
    font-size: 2.25rem;
  }

  .p-coverage__txt {
    font-size: 1.25rem;
    margin-top: 4.5rem;
  }

  .p-coverage__table {
    margin-top: 3.75rem;
    margin-right: 0;
    overflow: clip;
  }

  .p-coverage__table-inner {
    margin-right: 0;
    width: 100%;
  }

  .p-workflow {
    padding-top: 0;
    padding-bottom: 16.25rem;
  }

  .p-workflow::before,
  .p-workflow::after {
    width: 100%;
    height: 13.9375rem;
  }

  .p-workflow::before {
    top: -6.96875rem;
  }

  .p-workflow::after {
    bottom: -6.96875rem;
  }

  .p-workflow__ttl .c-section-ttl__blue {
    font-size: 2rem;
  }

  .p-workflow__ttl .c-section-ttl__orange {
    font-size: 2.375rem;
  }

  .p-workflow__content {
    margin-top: 3.75rem;
  }

  .p-workflow__bubble-area {
    gap: 0.9375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    bottom: -23.75rem;
  }

  .p-workflow__ill {
    width: 21.5rem;
  }

  .p-workflow__bubble {
    width: 30.645875rem;
  }

  .p-soft {
    padding-top: 13.0625rem;
    padding-bottom: 0;
  }

  .p-soft__ttl .c-section-ttl__white {
    font-size: 2rem;
  }

  .p-soft__ttl .c-section-ttl__yellow {
    font-size: 2.25rem;
  }

  .p-soft__cards {
    margin-top: 3.9375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.125rem;
  }

  .p-soft__card {
    width: calc((100% - 3.125rem) / 2);
    padding: 2.125rem 4.46875rem;
    gap: 1.625rem;
    width: calc((100% - 3.125rem) / 2);
  }

  .p-soft__card h3 {
    width: 17.9375rem;
    font-size: 1.5rem;
  }

  .p-soft__img {
    width: 12.6875rem;
  }

  .p-soft__tag {
    min-width: 6.25rem;
    padding: 0.375rem 0.5625rem 0.5rem;
  }

  .p-soft__tag:nth-child(4) {
    min-width: 6.25rem;
  }

  .p-soft__txt {
    font-size: 1.5rem;
    margin-top: 3.75rem;
  }

  .p-soft__txt::before {
    width: 36.375rem;
    background-image: url(../img/lp/006/wave_soft.png);
  }

  .p-soft__txt span {
    font-size: 1.75rem;
  }

  .p-case {
    padding: 15.0625rem 0 19.4375rem;
  }

  .p-case__ttl h2::after {
    top: 6%;
  }

  .p-case__ttl .c-section-ttl__orange {
    font-size: 2.25rem;
  }

  .p-case__ttl .c-section-ttl__blue {
    font-size: 2rem;
  }

  .p-case__ill {
    margin: 3.125rem auto 0;
  }

  .p-case__table {
    margin-right: 0;
  }

  .p-case__table table {
    margin-right: 0;
    width: 100%;
  }

  .p-case02-area::before {
    right: -8.125rem;
  }

  .p-case02-area::after {
    bottom: 0;
    left: -1.875rem;
  }

  .p-case02 {
    padding: 1.375rem 0 5rem;
  }

  .p-case02__ttl .c-section-ttl__yellow {
    font-size: 2.25rem;
  }

  .p-case02__ttl .c-section-ttl__white {
    font-size: 2rem;
  }

  .p-case02__ill {
    margin: 3.125rem auto 0;
    width: 19.625rem;
  }

  .p-case02__table {
    margin-right: 0;
  }

  .p-case02__table table {
    margin-right: 0;
    width: 100%;
  }

  .p-case02__table table thead th:nth-child(1) {
    border-top-left-radius: 0;
  }

  .p-case02__table table thead th:last-child {
    border-top-right-radius: 0;
  }

  .p-case02__table table tbody tr:last-child > *:nth-child(1) {
    border-bottom-left-radius: 0;
  }

  .p-case02__table table tbody tr:last-child > *:last-child {
    border-bottom-right-radius: 0;
  }

  .p-flow {
    padding: 11.6875rem 0 7.125rem;
  }

  .p-flow__ttl h2::before {
    width: 21.3125rem;
    height: 0.625rem;
    background-image: url(../img/lp/006/wave_flow.png);
    bottom: -1.125rem;
  }

  .p-flow__ttl .c-section-ttl__orange {
    font-size: 2.25rem;
  }

  .p-flow__ttl .c-section-ttl__blue {
    font-size: 2rem;
  }

  .p-flow__content {
    margin-top: 4.875rem;
  }

  .p-totop {
    bottom: 3.75rem;
    right: 1.125rem;
  }

  .p-totop__btn {
    width: 4rem;
    height: 4rem;
  }

  .p-totop__btn-img {
    width: 1.3125rem;
  }

  .p-cta a {
    font-size: 1.5rem;
    width: 27.1875rem;
    height: 4.375rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  .u-ai-c-md-max {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .u-fd-c-md-max {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .u-po-sta-md-max {
    position: static;
  }
}

@media screen and (min-width: 1180px) {
  .l-footer__inner {
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .l-footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .l-footer__left {
    margin-right: 56px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
  }

  .l-footer__sns-ttl {
    font-size: 12px;
    margin-right: 26px;
    display: block;
  }

  .l-footer__sns-link--twitter {
    margin-right: 10px;
  }
}

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

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

@media screen and (max-width: 767px) {
  .p-soft__ttl h2::before {
    top: -1.625rem;
    left: -1.75rem;
  }

  .p-soft__ttl h2::after {
    width: 65%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}

@media (hover: hover) {
  .p-btn {
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: background, color;
    transition-property: background, color;
  }

  .p-btn:hover {
    background-color: #fff;
    opacity: 1;
    color: var(--color-orange);
  }
}
/*# sourceMappingURL=style006.css.map */