xere@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover])) {
  display: none !important;
}

:where([popover]) {
  border: none;
  background: none;
  inset: unset;
  color: inherit;
}

:where([popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

:root {
  --mainColor: #29D65F;
  --accentColor: #e7a804;
  --textColor: #111;
  --link: #045DAF;
  --black: #111;
  --white: #fff;
  --green: #40AA1D;
  --bg: #F8F8F8;
  --gray: #666;
  --bgGray: #EFEFEF;
  --textGray: #999;
  --borderGray: #707070;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: none;
}
html.is-locked {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--textColor);
  min-height: 100vh;
  background-color: var(--white);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

main {
  position: relative;
}

h1, h2, h3, h4, h5, h6, p, a, img,
dl, dt, dd, ol, ul, li {
  margin: 0;
  padding: 0;
  white-space: normal;
}

ol, ul, li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: none;
  cursor: pointer;
}

picture {
  display: block;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.preload * {
  transform: 0s !important;
}
.hover__banner {
  margin: 70px auto 0 !important;
}
.hover__banner img {
  width: 90%;
  margin: auto;
}
.hover__banner:hover {
  opacity: 0.8;
  transition: 0.8s;
}
@media screen and (max-width: 768px) {
  .hover__banner {
      margin: 50px auto 0 !important;
    }
  .hover__banner img {
      width: 100%;
    }
}
#svg-sprite {
  display: none;
}
.l-conversion {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background-color: var(--white);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.11);
  translate: 0 100%;
  transition: translate 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.l-conversion.is-active {
  translate: 0 0;
}
.l-conversion__inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-self: center;
  gap: 12px;
}

.l-footer {
  padding: 0 24px;
  background-color: var(--bg);
}
.l-footer__inner {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 24px 0 40px;
}
.l-footer__link {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.l-footer__link li {
  font-size: 0.75rem;
  line-height: 1.5;
}
.l-footer__copyright {
  font-size: 0.75rem;
  line-height: 1.5;
}

.l-header {
  background-color: var(--white);
}
.l-header__inner {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 24px 17px;
}
.l-header__logo {
  width: 235px;
}
.l-header__link {
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 300;
  position: relative;
}
.l-header__link > a {
  padding: 8px 20px 8px 0;
}
.l-header__link > a::after {
  content: "";
  display: block;
  width: 5%;
  height: 8px;
  margin: auto;
  background-image: url(/smart-mobility/asset/images/sp/codebeamer_a/ico_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.l-section {
  counter-reset: subsection;
  padding: 120px 24px 0;
}
.l-section__header {
  text-align: center;
}
.l-section__hdl {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
}
.l-section__hdl::after {
  content: "";
  display: block;
  width: 75px;
  height: 5px;
  margin: auto;
  background-color: var(--green);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.l-section__lead {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 42px;
}
.l-subsection {
  counter-increment: subsection;
  padding-top: 40px;
}
.l-subsection:not(:first-of-type) {
  margin-top: 44px;
}
.l-subsection__header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.l-subsection__hdl {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.l-subsection__hdl::before {
  content: "0" counter(subsection);
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(97, 172, 72, 0.24);
  margin: auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: -1;
}
.l-subsection__lead {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 16px;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.c-button {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  width: 100%;
  height: 62px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.c-button a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--white);
  background-color: var(--black);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.c-button a::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  background-image: url(/smart-mobility/sp/lp/codebeamer_a/images/ico_arrow_wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.c-button__ico {
  display: block;
  width: 15px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
}
.c-button--white {
  background-color: var(--white);
}
.c-button--white a {
  color: var(--black);
  background-color: var(--white);
}
.c-button--white a::after {
  background-image: url(/smart-mobility/sp/lp/codebeamer_a/images/ico_arrow.svg);
}
.c-button--green {
  background-color: var(--white);
}
.c-button--green a {
  background-color: var(--green);
}
.p-about-table {
  max-width: 706px;
  border-bottom: solid 1px var(--borderGray);
  border-right: solid 1px var(--borderGray);
  border-collapse: collapse;
}
.p-about-table__th, .p-about-table__td {
  padding: 12px;
  border-top: solid 1px var(--borderGray);
  border-left: solid 1px var(--borderGray);
}
.p-about-table__th {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 700;
  -moz-text-align-last: left;
  text-align-last: left;
  color: var(--green);
  width: 124px;
}
.p-about-table__td {
  font-size: 0.875rem;
  line-height: 1.6;
  background-color: #f2f2f2;
  border-top: solid 1px var(--borderGray);
  border-left: solid 1px var(--borderGray);
}

.p-about__body {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 20px;
  padding-top: 46px;
}
.p-about__img {
  width: 108px;
}

.p-contact {
  background-color: var(--green);
}
.p-contact__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
}
.p-contact__text {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.p-contact__button .c-button__ico {
  width: 17px;
  left: 31px;
}

.p-faq-list {
  max-width: 1180px;
  margin: 0 auto;
}
.p-faq-list__item {
  padding: 27px 22px;
  background-color: var(--white);
  border-radius: 5px;
}
.p-faq-list__item:not(:first-child) {
  margin-top: 22px;
}
.p-faq-list__question, .p-faq-list__answer {
  padding-left: 30px;
  position: relative;
}
.p-faq-list__question::before, .p-faq-list__answer::before {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 700;
  position: absolute;
}
.p-faq-list__question {
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 700;
  color: var(--green);
}
.p-faq-list__question::before {
  content: "Q";
  font-size: 1.625rem;
  top: -1px;
  left: 2px;
}
.p-faq-list__answer {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 20px;
}
.p-faq-list__answer::before {
  content: "A";
  font-size: 1.25rem;
  top: 4px;
  left: 4px;
}

.p-faq {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--bg);
}
.p-faq__header {
  margin-bottom: 50px;
}
.p-faq__text {
  font-size: 0.875rem;
  line-height: 2;
  max-width: 1180px;
  margin: 40px auto 0;
}

.p-feature {
  padding-bottom: 100px;
}
.p-feature__img {
  margin: 50px auto 0;
}
.p-feature__img--item1 {
  max-width: 946px;
}
.p-feature__img--item2 {
  max-width: 859px;
}
.p-feature__img--item3 {
  max-width: 827px;
}
.p-feature__img--item4 {
  max-width: 1124px;
}
.p-feature__img--scroll {
  overflow: auto;
}
.p-feature__img--scroll img {
  max-width: 946px;
  width: 946px;
}
.p-feature__button {
  margin: 32px auto 0;
}

.p-intro-issue {
  padding: 50px 24px 167px;
  position: relative;
}
.p-intro-issue::after {
  content: "";
  display: block;
  width: 3200px;
  height: 715px;
  background-color: var(--bg);
  clip-path: polygon(50% 715px, 0% 0%, 3200px 0%);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.p-intro-issue__inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-intro-issue__title {
  font-size: 1.3125rem;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
}
.p-intro-issue__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  width: 100%;
}
.p-intro-issue__item {
  display: grid;
  grid-template-rows: subgrid;
}
.p-intro-issue__item--item1 .p-intro-issue__itemImg {
  width: 79.5238095238%;
}
.p-intro-issue__item--item2 .p-intro-issue__itemImg {
  width: 99.1304347826%;
}
.p-intro-issue__item--item3 .p-intro-issue__itemImg {
  width: 99.5726495726%;
}
.p-intro-issue__item--item4 .p-intro-issue__itemImg {
  width: 100%;
}
.p-intro-issue__itemImg {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.p-intro-issue__itemImg img {
  margin-bottom: 0;
}
.p-intro-issue__itemText {
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.p-intro-result {
  padding: 160px 0 90px;
  position: relative;
}
.p-intro-result::after {
  content: "";
  display: block;
  width: 3200px;
  height: 680px;
  background-color: var(--bg);
  clip-path: polygon(50% 0%, 0% 680px, 3200px 680px);
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.p-intro-result__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.p-intro-result__message {
  text-align: center;
  margin-bottom: 36px;
}
.p-intro-result__messageText {
  display: block;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
}
.p-intro-result__messageText > strong {
  font-size: 1.6875rem;
}
.p-intro-result__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.p-intro-result__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.7989821883vw;
  line-height: 1.5;
  text-align: center;
  width: calc(50% - 16px);
  aspect-ratio: 1/1;
  background-color: var(--white);
  border-radius: 50%;
  border: solid 1px var(--green);
}
.p-intro-result__item strong {
  font-size: 3.8167938931vw;
}

.p-intro-solution {
  position: relative;
  z-index: 1;
}
.p-intro-solution__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 36px;
}
.p-intro-solution__baloon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  width: 152px;
  height: 38px;
  margin: 0 auto 17px;
  background-color: var(--green);
  border-radius: 5px;
  position: relative;
}
.p-intro-solution__baloon::after {
  content: "";
  display: block;
  width: 14px;
  height: 6px;
  margin: auto;
  background-color: var(--green);
  clip-path: polygon(50% 6px, 0% 0%, 14px 0%);
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
}
.p-intro-solution__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.p-intro-solution__name {
  display: block;
  max-width: 319px;
  margin: 0 auto 14px;
}

.p-intro {
  overflow: hidden;
}

.p-knowledge-section {
  max-width: 1212px;
  margin: 0 auto;
  counter-reset: strength;
}
.p-knowledge-section + .p-knowledge-section {
  margin-top: 44px;
}
.p-knowledge-section__header {
  display: flex;
  flex-flow: column-reverse nowrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 24px;
}
.p-knowledge-section__title {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.p-knowledge-section__subtitle {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #ccc;
  text-align: center;
  margin-bottom: 6px;
}
.p-knowledge-section__body .splide__arrow {
  width: 36px;
  height: 36px;
  background-color: var(--black);
  opacity: 1;
}
.p-knowledge-section__body .splide__arrow svg {
  width: 8px;
  height: 8px;
  fill: var(--white);
}
.p-knowledge-section__body .splide__arrow--prev {
  left: 0;
}
.p-knowledge-section__body .splide__arrow--next {
  right: 0;
}
.p-knowledge-section__wrapper {
  overflow: hidden;
  padding: 16px;
}
.p-knowledge-section__slider.splide__track {
  overflow: visible;
}
.p-knowledge-section__item {
  width: 270px;
  border-radius: 10px;
  overflow: hidden;
}
.p-knowledge-section__item--shadow {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12);
}
.p-knowledge-section__item--shadow .p-knowledge-section__img {
  border-radius: 10px 10px 0 0;
}
.p-knowledge-section__item--shadow .p-knowledge-section__name {
  font-size: 0.875rem;
}
.p-knowledge-section__item--shadow .p-knowledge-section__textarea {
  padding: 16px 16px 24px;
}
.p-knowledge-section__item > a {
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.p-knowledge-section__item > a.is-disabled {
  pointer-events: none;
}
.p-knowledge-section__img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 271/152;
  position: relative;
}
.p-knowledge-section__img > img {
  -o-object-fit: cover;
  object-fit: cover;
}
.p-knowledge-section__textarea {
  padding: 16px 0 0;
}
.p-knowledge-section__name {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
.p-knowledge-section__dete {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #ccc;
  margin-top: 12px;
}
.p-knowledge-section__button {
  margin-top: 40px;
}
.p-knowledge-section__button .c-button__ico {
  width: 10px;
  left: 20px;
}

.p-knowledge {
  padding-bottom: 100px;
}
.p-knowledge__header {
  margin-bottom: 50px;
}

.p-kv-banner {
  max-width: 346px;
  background-color: var(--white);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}
.p-kv-banner > a {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.p-kv-banner__button {
  display: block;
  width: 42px;
  height: 42px;
  background-color: var(--black);
  border-radius: 50%;
  border: solid 1px var(--white);
  position: absolute;
  top: -21px;
  right: 10px;
}
.p-kv-banner__button::before, .p-kv-banner__button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--white);
  border-radius: 9999px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.p-kv-banner__button::before {
  rotate: 45deg;
}
.p-kv-banner__button::after {
  rotate: -45deg;
}

.p-kv {
  background-image: url(/smart-mobility/sp/lp/codebeamer_a/images/kv_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.p-kv__inner {
  padding: 74px 24px 32px 24px;
}
.p-kv__hgroup {
  display: flex;
  flex-flow: column-reverse nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 14px;
}
.p-kv__title {
  font-size: 2.375rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}
.p-kv__copy {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--white);
}
.p-kv__copy strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 6px;
}
.p-kv__link {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 32px;
  margin-bottom: 32px;
}
.p-kv__button.c-button {
  max-width: 325px;
}
.p-kv__button .c-button__ico {
  width: 20px;
  left: 24px;
}
.p-kv__feature {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}
.p-kv__featureItem {
  width: 106px;
}

.p-codebeamer {
  overflow: hidden;
}

.p-reason {
  padding-bottom: 74px;
  background-color: var(--bg);
}
.p-reason.l-section {
  padding-top: 80px;
}
.p-reason__img {
  max-width: 1100px;
  margin: 50px auto 0;
}
.p-reason__img--scroll {
  overflow: auto;
}
.p-reason__img--scroll img {
  max-width: 1100px;
  width: 1100px;
}
.p-reason__hdl {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: 36px;
  margin-bottom: 15px;
}
.p-reason__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-template-rows: auto;
  gap: 32px 24px;
}
.p-reason__list li {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.14);
}
.p-reason__button {
  margin: 30px auto 0;
}

.p-strength-menu {
  margin-top: 36px;
}
.p-strength-menu__title {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.p-strength-menu__item {
  padding: 24px 24px 32px;
  border-radius: 10px;
  background-color: var(--white);
}
.p-strength-menu__item p {
  font-size: 0.875rem;
  line-height: 1.5;
}
.p-strength-menu__ico {
  width: 47px;
  margin: 0 auto 8px;
}
.p-strength-menu__hdl {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: var(--green);
  margin-bottom: 16px;
}
.p-strength-menu__button {
  margin-top: 20px;
}

.p-strength-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 40px;
  background-color: var(--bg);
  border-radius: 10px;
  counter-increment: strength;
}
.p-strength-section + .p-strength-section {
  margin-top: 60px;
}
.p-strength-section__header {
  padding-top: 45px;
  position: relative;
}
.p-strength-section__header::before {
  content: "0" counter(strength);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  margin-bottom: 12px;
}
.p-strength-section__header::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  margin: auto;
  background-color: var(--green);
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
}
.p-strength-section__hdl {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
}
.p-strength-section__hdl > strong {
  font-size: 1.125rem;
}
.p-strength-section__lead {
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 16px;
}
.p-strength-section__img {
  max-width: 860px;
  margin: 32px auto 0;
  border-radius: 5px;
  overflow: hidden;
}
.p-strength-section__button {
  margin: 32px auto 0;
}
.p-strength-section__link {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 24px 20px;
  background-color: var(--bgGray);
  border-radius: 10px;
}
.p-strength-section__linkText {
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}
.p-strength-section__linkText strong {
  font-size: 1.125rem;
  font-weight: 400;
}

.p-strength {
  counter-reset: strength;
}
.p-strength__header {
  padding-bottom: 48px;
}
.p-strength__hdl {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 55px;
}
.p-strength__copy {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
.p-strength__copy > strong {
  font-size: 1.3125rem;
}
.p-strength__copyImg {
  display: block;
  max-width: 360px;
  margin: 0 auto 38px;
}

.u-cl-gray {
  color: #999;
}

.u-bgc-gray {
  background-color: #999;
}

.u-cl-green {
  color: #40AA1D;
}

.u-bgc-green {
  background-color: #40AA1D;
}

.u-ff-en {
  font-family: "Inter", sans-serif;
}

.u-ta-c {
  text-align: center;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-txt-atten {
  color: var(--textGray);
}
.u-txt-atten::before {
  content: "※";
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
@media screen and (min-width: 769px) {
  .l-conversion__inner {
    gap: 30px;
  }
  .l-conversion__button.c-button {
    width: 368px;
  }
  .l-footer {
    padding: 0 50px;
  }
  .l-footer__inner {
    flex-flow: row nowrap;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 0;
  }
  .l-footer__link {
    justify-content: flex-start;
  }
  .l-footer__link li:not(:first-child) {
    margin-left: 8px;
    padding-left: 8px;
    border-left: solid 1px var(--textColor);
  }
  .l-header__inner {
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 17px 44px 17px 60px;
  }
  .l-header__link {
    font-size: 0.9375rem;
  }
  .l-section {
    padding: 160px 50px 0;
  }
  .l-section__hdl {
    font-size: 2.5rem;
  }
  .l-section__lead {
    font-size: 1rem;
    line-height: 2;
  }
  .l-subsection {
    padding-top: 85px;
  }
  .l-subsection:not(:first-of-type) {
    margin-top: 24px;
  }
  .l-subsection__hdl {
    font-size: 2rem;
    line-height: 1.5;
  }
  .l-subsection__hdl::before {
    font-size: 5rem;
    top: -20px;
  }
  .l-subsection__lead {
    font-size: 1rem;
    line-height: 2;
    margin-top: 35px;
  }
  .c-button {
    height: 54px;
  }
  .c-button a::after {
    right: 22px;
  }
  .c-button--small {
    max-width: 220px;
  }
  .c-button--large {
    font-size: 1.3125rem;
    max-width: 468px;
    height: 84px;
  }
  .c-button__ico {
    width: 25px;
    left: 36px;
  }
  .p-about-table__th, .p-about-table__td {
    padding: 10px 14px;
  }
  .p-about-table__th {
    font-size: 1.25rem;
    width: 212px;
  }
  .p-about-table__td {
    font-size: 0.9375rem;
  }
  .p-about__body {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: center;
    align-items: flex-end;
    padding-top: 68px;
  }
  .p-about__img {
    width: 146px;
  }
  .p-contact__inner {
    padding: 86px 50px 80px;
  }
  .p-contact__text {
    font-size: 2.5rem;
  }
  .p-contact__link {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-top: 32px;
  }
  .p-contact__button .c-button__ico {
    width: 20px;
    left: 15px;
  }
  .p-contact__button.c-button--large {
    max-width: 298px;
  }
  .p-faq-list__item {
    padding: 32px 36px 36px;
    border-radius: 10px;
  }
  .p-faq-list__item:not(:first-child) {
    margin-top: 32px;
  }
  .p-faq-list__question, .p-faq-list__answer {
    padding-left: 40px;
  }
  .p-faq-list__question {
    font-size: 1.125rem;
  }
  .p-faq-list__question::before {
    font-size: 2rem;
  }
  .p-faq-list__answer {
    font-size: 1rem;
    line-height: 2;
    margin-top: 26px;
  }
  .p-faq-list__answer::before {
    font-size: 1.5rem;
  }
  .p-faq {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  .p-faq__text {
    font-size: 1rem;
    margin: 60px auto 0;
  }
  .p-feature {
    padding-bottom: 175px;
  }
  .p-feature__button {
    margin: 60px auto 0;
  }
  .p-intro-issue {
    padding: 118px 50px 225px;
  }
  .p-intro-issue::after {
    width: 7600px;
    height: 742px;
    clip-path: polygon(50% 742px, 0% 0%, 7600px 0%);
  }
  .p-intro-issue__title {
    font-size: 1.75rem;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  .p-intro-issue__list {
    grid-template-columns: 23.5593220339% 26.1016949153% 26.4406779661% 21.8644067797%;
  }
  .p-intro-issue__item {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
  .p-intro-issue__item--item1 {
    padding-right: 24.4604316547%;
  }
  .p-intro-issue__item--item2 {
    padding-right: 25.3246753247%;
  }
  .p-intro-issue__item--item3 {
    padding-right: 25%;
  }
  .p-intro-issue__itemImg {
    margin-bottom: 30px;
  }
  .p-intro-issue__itemText {
    font-size: 1rem;
    line-height: 1.8;
  }
  .p-intro-issue__itemText strong {
    font-size: 1.125rem;
  }
  .p-intro-result {
    padding: 192px 0 120px;
  }
  .p-intro-result::after {
    width: 6600px;
    height: 617px;
    clip-path: polygon(50% 0%, 0% 617px, 6600px 617px);
  }
  .p-intro-result__inner {
    padding: 0 50px;
  }
  .p-intro-result__message {
    margin-bottom: 54px;
  }
  .p-intro-result__messageText {
    font-size: 2rem;
    line-height: 1.5;
  }
  .p-intro-result__messageText > strong {
    font-size: 2.75rem;
  }
  .p-intro-result__list {
    flex-flow: row nowrap;
    gap: 20px;
  }
  .p-intro-result__item {
    font-size: 1rem;
    width: 200px;
    padding: 4px;
  }
  .p-intro-result__item strong {
    font-size: 1.125rem;
  }
  .p-intro-solution__inner {
    padding: 0 50px;
  }
  .p-intro-solution__baloon {
    font-size: 1.625rem;
    width: 262px;
    height: 60px;
    margin: 0 auto 22px;
    border-radius: 10px;
  }
  .p-intro-solution__baloon::after {
    width: 17px;
    height: 9px;
    clip-path: polygon(50% 9px, 0% 0%, 17px 0%);
  }
  .p-intro-solution__title {
    font-size: 1.625rem;
  }
  .p-intro-solution__name {
    max-width: 858px;
    margin: 0 auto 10px;
  }
  .p-knowledge-section__title {
    font-size: 1.625rem;
  }
  .p-knowledge-section__subtitle {
    font-size: 0.9375rem;
  }
  .p-knowledge-section__body .splide__arrow {
    width: 43px;
    height: 43px;
  }
  .p-knowledge-section__body .splide__arrow svg {
    width: 10px;
    height: 10px;
  }
  .p-knowledge-section__body .splide__arrow--prev {
    left: -16px;
  }
  .p-knowledge-section__body .splide__arrow--next {
    right: -16px;
  }
  .p-knowledge-section__button {
    margin-top: 72px;
  }
  .p-knowledge {
    padding-bottom: 170px;
  }
  .p-kv-banner {
    width: 300px;
    position: fixed;
    bottom: 100px;
    right: 55px;
    z-index: 99;
  }
  .p-kv {
    background-image: url(/smart-mobility/sp/lp/codebeamer_a/images/kv.jpg);
  }
  .p-kv__inner {
    padding: 122px 58px 143px;
  }
  .p-kv__title {
    font-size: 5.5rem;
  }
  .p-kv__copy {
    font-size: 1.25rem;
  }
  .p-kv__copy strong {
    font-size: 2rem;
  }
  .p-kv__feature {
    justify-content: flex-start;
    gap: 40px;
  }
  .p-kv__featureItem {
    width: 176px;
  }
  .p-reason {
    padding-bottom: 115px;
  }
  .p-reason.l-section {
    padding-top: 115px;
  }
  .p-reason__hdl {
    font-size: 1rem;
    margin-top: 40px;
    margin-bottom: 24px;
  }
  .p-reason__list {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
  }
  .p-reason__button {
    margin: 60px auto 0;
  }
  .p-strength-menu {
    margin-top: 40px;
  }
  .p-strength-menu__title {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .p-strength-menu__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
    gap: 22px;
  }
  .p-strength-menu__item {
    width: 253px;
    min-height: 323px;
    padding: 30px 18px 20px;
  }
  .p-strength-menu__item p {
    font-size: 1rem;
  }
  .p-strength-menu__hdl {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 2lh;
    margin-bottom: 24px;
  }
  .p-strength-section {
    padding: 0 50px 60px;
  }
  .p-strength-section__header {
    padding-top: 60px;
  }
  .p-strength-section__header::before {
    font-size: 1.5rem;
    margin-bottom: 33px;
  }
  .p-strength-section__header::after {
    width: 28px;
    height: 2px;
    top: 96px;
  }
  .p-strength-section__hdl {
    font-size: 1.625rem;
  }
  .p-strength-section__hdl > strong {
    font-size: 2rem;
  }
  .p-strength-section__lead {
    font-size: 1rem;
    line-height: 2;
    margin-top: 36px;
  }
  .p-strength-section__img {
    margin: 50px auto 0;
    border-radius: 10px;
  }
  .p-strength-section__button {
    margin: 60px auto 0;
  }
  .p-strength-section__link {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 50px auto 0;
    padding: 24px 60px;
  }
  .p-strength-section__linkText {
    font-size: 1rem;
    padding-left: 22px;
  }
  .p-strength-section__linkText strong {
    font-size: 1.5rem;
  }
  .p-strength-section__linkButton.c-button--large {
    max-width: 305px;
    height: 74px;
  }
  .p-strength__header {
    padding-bottom: 80px;
  }
  .p-strength__hdl {
    font-size: 2.5rem;
  }
  .p-strength__copy {
    font-size: 2rem;
  }
  .p-strength__copy > strong {
    font-size: 2.75rem;
  }
  .p-strength__copyImg {
    max-width: 778px;
    margin: 0 auto 20px;
  }
  .u-d-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .l-conversion__button.c-button {
    font-size: 0.7rem;
    height: 46px;
    width: 166px;
  }
  .l-conversion__button.c-button a::after {
    right: 10px;
  }
  .l-conversion__button .c-button__ico {
    width: 12px;
    left: 9px;
  }
  .l-footer__link {
    margin-bottom: 13px;
    gap: 24px;
  }
  .l-header__link {
    margin-top: 11px;
  }
  .l-subsection__hdl::before {
    translate: 0 -50%;
  }
  .p-contact__text {
    margin-bottom: 20px;
  }
  .p-contact__button + .p-contact__button {
    margin-top: 18px;
  }
  .p-intro-issue__list {
    gap: 30px 20px;
  }
  .p-intro-issue__item {
    grid-row: span 2;
    gap: 14px;
  }
  .p-intro-result__list {
    padding: 0 26px;
  }
  .p-knowledge.l-section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .p-kv-banner {
    margin: 134px auto 0;
  }
  .p-kv-banner__button {
    display: none;
  }
  .p-kv__inner {
    max-width: 400px;
    margin: 0 auto;
  }
  .p-kv__copy {
    margin-bottom: 4px;
  }
  .p-kv__link {
    display: none;
  }
  .p-strength-menu__item:not(:first-child) {
    margin-top: 24px;
  }
  .p-strength-section__linkButton {
    margin: 16px auto 0;
  }
  .u-mb0-sp {
    margin-bottom: 0 !important;
  }
  .u-d-pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (hover: hover) {
  .l-footer__link a:hover {
    text-decoration: underline;
  }
  .c-button a:hover {
    opacity: 0.7;
  }
  .p-knowledge-section__item > a:hover {
    opacity: 0.7;
  }
  .p-kv-banner > a:hover {
    opacity: 0.7;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}