@charset "UTF-8";
/* 基本設定 */
html {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

body {
  font-family: Lato, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  background-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
}

.header {
  width: 100%;
  margin: 0 auto;
}
.header .brand {
  position: fixed;
  top: 20px;
  left: 50px;
  z-index: 1000;
}

.header-nav {
  position: fixed;
  top: 70px;
  right: 50px;
  z-index: 1000;
  font-weight: 900;
}
.header-nav__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding-left: 0;
}
.header-nav__list-item {
  list-style: none;
}
.header-nav__list-item a {
  text-decoration: none;
}

.footer {
  font-size: 0.75rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin: 32px;
}
.footer-content__company .brand {
  margin-bottom: 32px;
}
.footer-content__company .brand img {
  width: 240px;
}
.footer-content__company address {
  display: block;
  font-style: normal;
}
.footer-content__nav {
  text-align: end;
}
.footer-content__nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
  padding-left: 0;
}
.footer-content__nav ul li {
  list-style: none;
}
.footer-content__nav ul li a {
  text-decoration: none;
}

.footer-sns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}
.footer-sns li {
  list-style: none;
}
.footer-sns li a {
  text-decoration: none;
}

.footer-bottom {
  position: relative;
  width: 100%;
  height: 72px;
  border-top: 1px solid #fff;
}
.footer-bottom small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}
.footer-bottom a {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 100%;
  text-decoration: none;
  border-inline-start: 1px solid #fff;
}

.d-none {
  display: none;
}

.brand {
  display: block;
}
.brand img {
  width: 316.48px;
  height: 55px;
}

.link-enhance {
  padding-inline: 4px;
  color: #c1272d;
}

*:has(> .bg-video) {
  position: relative;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

*:has(> .bg-dot) {
  position: relative;
}
*:has(> .bg-dot)::after {
  position: absolute;
  top: 0;
  left: 0;
  /* モザイクが動画の上に表示されるように */
  z-index: -1;
  width: 100%;
  height: 100%;
  /* モザイクがクリックやタッチイベントをブロックしないように */
  pointer-events: none;
  content: "";
  background-image: radial-gradient(circle, #000 15%, transparent 15%);
  background-size: 8px 8px;
  /* モザイクの透明度を調整 */
  opacity: 0.5;
}

.darken {
  filter: brightness(0.8);
}

.text-neon {
  font-weight: 400;
  color: transparent;
  /* 白色のネオン効果 */
  text-shadow: 0.03em -0.03em 5px color-mix(in srgb, transparent 50%, #fff);
  /* text-stroke: 1px vc.$main;text-stroketext-stroke */
  -webkit-text-stroke: 1px #fff;
}

.section {
  width: min(100%, 1200px);
  padding-inline: 40px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 32px;
  font-size: 6rem;
}

.section-title-center {
  text-align: center;
  text-transform: uppercase;
}

.interstitial-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 320px;
  overflow: hidden;
}
.interstitial-section::before, .interstitial-section::after {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 45%;
  pointer-events: none;
  content: "";
}
.interstitial-section::before {
  top: 0;
  background: linear-gradient(to bottom, #000, transparent);
}
.interstitial-section::after {
  bottom: 0;
  background: linear-gradient(to top, #000, transparent);
}

.btn {
  display: block;
  height: 48px;
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  border-radius: 24px;
}

.btn-outline {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.btn-outline:hover {
  color: #000;
  background-color: #fff;
}

.mv {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: calc(100vh + 20px + 55px);
  padding-inline: 114px;
  padding-top: 100px;
}

.mv-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  font-weight: 900;
}
.mv-text__name {
  font-size: 150px;
}
.mv-text__copy {
  font-size: 60px;
  text-transform: uppercase;
}

.about {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 4rem;
}

.about-icon {
  width: 50px;
  height: 50px;
}

.about-copy {
  font-size: 1.5rem;
}

.about-text {
  max-width: 580px;
  line-height: 2rem;
}

.feat-list {
  display: flex;
  flex-direction: column;
  padding-left: 0;
}
.feat-list__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 40px;
  list-style: none;
  border-bottom: 1px solid #fff;
}
.feat-list__item:first-child {
  border-top: 1px solid #fff;
}
.feat-list__item--text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 45%;
}
.feat-list__item--img {
  width: 50%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.feat-list__item--img:nth-child(2) {
  object-position: right;
}

/* TODO : 仮スタイリング 画像をランダムに一つずつ表示 */
.operation-list {
  display: flex;
  flex-direction: column;
  padding-left: 0;
}
.operation-list__item {
  padding-block: 40px;
  list-style: none;
  border-bottom: 1px solid #fff;
}
.operation-list__item:first-child {
  border-top: 1px solid #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px 32px;
  padding-left: 0;
}
.process-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 16px;
  padding-top: 16px;
  list-style: none;
  border-top: 1px solid #fff;
}
.process-list__item--title {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: end;
  width: 100%;
  font-size: 1.5rem;
  text-align: end;
}
.process-list__item--title > span {
  font-size: 56px;
}

.testimonials.section {
  padding-inline: 0;
}

.testimonials-intro {
  margin-bottom: 40px;
  text-align: center;
}
.testimonials-intro__label {
  padding-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
}
.testimonials-intro__title, .testimonials-intro__desc {
  padding-top: 16px;
}
.testimonials-intro__title {
  font-size: 2.25rem;
  font-weight: 900;
}
.testimonials-intro__desc {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  line-height: 2rem;
}

.testimonials-item {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #fff;
}
.testimonials-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.testimonials-item:last-of-type {
  border-bottom: 1px solid #fff;
}
.testimonials-item__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
}
.testimonials-item__text--title {
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding-inline: 40px;
  margin-block: 24px;
}
.testimonials-item__text--title-index {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}
.testimonials-item__text--title-index::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: radial-gradient(circle, #fff 20%, transparent 20%);
  background-repeat: repeat-x;
  background-size: 18px 10px;
}
.testimonials-item__text--title-index span {
  font-size: 4rem;
  line-height: 1em;
}
.testimonials-item__text--title-heading {
  font-size: 1.5rem;
  font-weight: 400;
}
.testimonials-item__text--content-challenge, .testimonials-item__text--content-solution {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 40px;
}
.testimonials-item__text--content-challenge-title, .testimonials-item__text--content-solution-title {
  width: 128px;
  padding-block: 8px;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
}
.testimonials-item__text--content-challenge {
  background-color: #333;
}
.testimonials-item__text--content-challenge-title {
  color: #000;
  background-color: #fff;
}
.testimonials-item__text--content-solution {
  background-color: #fff;
}
.testimonials-item__text--content-solution-title {
  color: #fff;
  background-color: #000;
}
.testimonials-item__text--content-solution-desc {
  color: #000;
}
.testimonials-item__img {
  /* TODO : 画像下の余白を消す */
  width: 60%;
  height: 100%;
}
.testimonials-item__img img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonials-conclusion {
  width: 100%;
  max-width: 540px;
  margin: 80px auto 0;
  font-weight: 900;
  line-height: 2rem;
  text-align: center;
}

.compare-table-area {
  width: 100%;
  margin: 0 auto;
  overflow-x: scroll;
}

.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border: 0;
}
.compare-table th,
.compare-table td {
  padding: 4px;
  border: 1px solid #fff;
}
.compare-table th:first-child,
.compare-table td:first-child {
  border-left: 0;
}
.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0;
}
.compare-table th {
  font-weight: 900;
}
.compare-table td {
  font-size: 0.75rem;
  text-align: start;
}
.compare-table thead th,
.compare-table thead td {
  border-top: 0;
}
.compare-table thead th:first-child,
.compare-table thead td:first-child {
  border-left: 0;
}
.compare-table thead th:last-child,
.compare-table thead td:last-child {
  border-right: 0;
}
.compare-table thead th {
  text-align: center;
  background-color: #333;
}
.compare-table thead th:first-of-type {
  background-color: color-mix(in srgb, #c1272d 30%, transparent);
}
.compare-table tbody th {
  text-align: start;
}
.compare-table tbody td:first-of-type {
  background-color: color-mix(in srgb, #c1272d 30%, transparent);
}
.compare-table tbody tr:has(> th[rowspan="2"]) td {
  text-align: center;
  border-bottom: 1.5px dotted #fff;
}
.compare-table tbody tr:has(> th[rowspan="2"]) + tr td {
  border-top: 1.5px dotted #fff;
}
.compare-table tbody tr:last-of-type td {
  border-bottom: 0;
}
.compare-table tbody tr:nth-last-child(2) th {
  border-bottom: 0;
}

.price-catch {
  margin-bottom: 32px;
  font-weight: 900;
  text-align: center;
}

.price-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  place-items: center center;
}

.price-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  justify-items: center;
  padding-top: 32px;
  overflow: hidden;
  background-color: color-mix(in srgb, #000 90%, #fff);
  border-radius: 8px;
  box-shadow: 0 0 8px -2px #fff;
  transition: filter 0.2s ease-in-out;
}
.price-card__title {
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.price-card__amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 2.25rem;
  line-height: 1em;
  text-align: center;
}
.price-card__amount span {
  height: fit-content;
  font-size: 0.75rem;
  line-height: 1em;
}
.price-card__btn {
  width: min(100%, 168px);
}
.price-card__descs {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  width: fit-content;
  padding: 32px 16px 32px 32px;
  margin: 0;
  background-color: color-mix(in srgb, #000 70%, #fff);
}
.price-card__descs--item {
  position: relative;
  width: calc(100% - 16px);
  line-height: 1.2rem;
  list-style: none;
}
.price-card__descs--item::before {
  position: absolute;
  top: calc((1.2rem - 0.8em) / 2);
  left: -16px;
  display: inline-block;
  width: 4px;
  height: 0.8em;
  content: "";
  background-color: #fff;
}
.price-card:hover {
  filter: invert(1);
}

.faq details {
  padding: 24px 32px 24px calc(32px + 2rem);
  border-bottom: 1px solid #fff;
}
.faq details:first-of-type {
  border-top: 1px solid #fff;
}
.faq details summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}
.faq details summary::-webkit-details-marker {
  display: none;
}
.faq details summary::before {
  position: absolute;
  top: 0;
  left: -2rem;
  width: 2rem;
  font-weight: 900;
  content: "Q";
}
.faq details p {
  position: relative;
  margin-top: 1rem;
}
.faq details p::before {
  position: absolute;
  top: 0;
  left: -2rem;
  width: 2rem;
  font-weight: 900;
  content: "A";
}
.faq details[open] .faq__icon-close {
  transform: rotate(180deg);
}
.faq__icon-close {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 24px;
  margin-left: 6px;
  transition: transform 0.2s ease-in-out;
  transform-origin: center 43%;
}
.faq__icon-close::before, .faq__icon-close::after {
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  content: "";
  background-color: #fff;
}
.faq__icon-close::before {
  left: 0;
  transform: rotate(45deg);
}
.faq__icon-close::after {
  right: 0;
  transform: rotate(-45deg);
}

.contact-form .lp-form .lp-form-field, .contact-form .lp-form > p {
  padding-block: 40px;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-form .lp-form:first-child {
  border-top: 1px solid #fff;
}
.contact-form .lp-form label {
  width: 25%;
  font-weight: 900;
}
.contact-form .lp-form .lp-form-field-input,
.contact-form .lp-form .wpcf7-form-control-wrap {
  display: block;
  width: 75%;
}
.contact-form .lp-form input,
.contact-form .lp-form textarea,
.contact-form .lp-form select {
  width: 100%;
  padding: 8px;
}
.contact-form .lp-form input::placeholder,
.contact-form .lp-form textarea::placeholder,
.contact-form .lp-form select::placeholder {
  color: color-mix(in srgb, #000 25%, transparent);
}
.contact-form__check {
  display: flex;
  justify-content: center;
  margin-block: 32px;
}
.contact-form .lp-form-btn, .contact-form__btn {
  width: min(100%, 168px);
  margin: 32px auto;
}
.contact-form button {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 0.75rem;
  height: 48px;
  padding: 0 32px;
  text-transform: uppercase;
  border-radius: 24px;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.lp-form-text {
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-align: center;
}
.lp-form-text a {
  color: #e86560;
  text-decoration: underline;
}
.lp-form-text a:hover {
  opacity: 0.7;
}

/*# sourceMappingURL=lp_erp_style.css.map */
