@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
input,
textarea {
  margin: 0;
  font-size: 1.4rem;
  color: #333;
  background-color: #111;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", "Segoe UI", sans-serif;
  font-weight: 400; /* Mac用 */
}

/* Windows専用調整 */
@supports (-ms-ime-align: auto) {
  body,
  input,
  textarea {
    font-weight: 500; /* 少し太くしてMacと揃える */
  }
}
h1,
h2,
h3,
h4 {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.6;
}

p {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.6;
}

em {
  font-style: normal;
}

a {
  font-size: 1.6rem;
  text-decoration: none;
  color: #fff;
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

p a {
  text-decoration: underline;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: dotted 1px #ccc;
}

li {
  font-size: 1.6rem;
  list-style: none;
  line-height: 1.6;
}

dl {
  font-size: 1.6rem;
}

dd,
dt,
dl {
  display: block;
}

table {
  border-collapse: collapse;
  font-size: 1.6rem;
}
table caption {
  text-align: left;
}
table th {
  padding: 15px 0;
}
table td {
  padding: 15px 30px;
}

img {
  vertical-align: middle;
}

.sectionHeading {
  text-align: center;
  margin-bottom: 60px;
}
.sectionHeading .package__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c2d91f 0%, #2fc8e7 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  margin-bottom: 28px;
}
.sectionHeading .package__badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #76d98c;
}
.sectionHeading__title {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .sectionHeading__title {
    font-size: 2.6rem;
  }
}
.sectionHeading__title2 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .sectionHeading__title2 {
    font-size: 2.8rem;
  }
}
.sectionHeading__line {
  display: block;
  width: 64px;
  height: 6px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #c2d91f 0%, #2fc8e7 100%);
}

.link_btn {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.link_btn:hover {
  opacity: 0.7;
}

.ctaBtn {
  width: min(100%, 660px);
  min-height: 84px;
  padding: 16px 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, #b8d915 0%, #73d48f 48%, #3ac7df 100%);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
@media (max-width: 767px) {
  .ctaBtn {
    min-height: 64px;
    padding: 5px 5px;
    gap: 10px;
  }
}
.ctaBtn:hover {
  opacity: 0.6 !important;
}
.ctaBtn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.ctaBtn__icon img {
  display: block;
  width: 34px;
  height: auto;
}
@media (max-width: 767px) {
  .ctaBtn__icon img {
    width: 24px;
  }
}
.ctaBtn__text {
  font-size: clamp(2rem, 1.75vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .ctaBtn__text {
    font-size: 1.8rem;
  }
}

.is-sp {
  display: none !important;
}

.is-pc {
  display: block !important;
}

@media (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
  .is-pc {
    display: none !important;
  }
}
.ta-c {
  text-align: center !important;
}

.fw-b {
  font-weight: bold !important;
}

.fw-n {
  font-weight: normal !important;
}

.ofh {
  overflow: hidden;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeUp.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 横カラム順番 */
.stagger > *:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger > *:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger > *:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger > *:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger > *:nth-child(5) {
  transition-delay: 0.5s;
}

.scrollShow {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.scrollShow.is-show {
  opacity: 1;
  transform: translateY(0);
}

.blog {
  background: #222;
  padding: 40px 24px 80px;
  color: #fff;
}
@media (max-width: 767px) {
  .blog {
    padding: 56px 20px 64px;
  }
}
.blog__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.blog__title {
  margin: 0 0 48px;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .blog__title {
    margin-bottom: 32px;
    font-size: 2.4rem;
  }
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.blog__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .blog__button {
    margin-top: 20px;
  }
}
.blog__link {
  position: relative;
  width: min(100%, 500px);
  min-height: 88px;
  padding: 20px 72px 20px 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.blog__link:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.48);
}
@media (max-width: 767px) {
  .blog__link {
    min-height: 40px;
    padding: 18px 56px 18px 20px;
    font-size: 1.6rem;
  }
}
.blog__linkIcon {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 767px) {
  .blog__linkIcon {
    right: 20px;
    width: 10px;
    height: 10px;
  }
}

.blogCard {
  display: block;
  background: #f2f2f2;
  text-decoration: none;
  color: #0e1b4d;
  padding: 14px 14px 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  min-width: 0;
}
@media (max-width: 767px) {
  .blogCard {
    padding-bottom: 10px;
  }
}
.blogCard:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}
.blogCard__image {
  aspect-ratio: 300/190;
  overflow: hidden;
  background: #ddd;
}
.blogCard__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogCard__body {
  padding: 26px 20px 0;
}
.blogCard__author {
  margin: 20px 0 0px;
  color: #bed417;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .blogCard__author {
    margin-bottom: 12px;
  }
}
.blogCard__heading {
  margin: 0;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.01em;
  word-break: break-word;
}
@media (max-width: 767px) {
  .blogCard__heading {
    font-size: 1.8rem;
  }
}

.contact {
  padding: 100px 20px 100px;
  background: #222;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .contact {
    padding: 70px 16px 60px;
  }
}
.contact__inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.contactForm {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  color: #fff;
}
.contactForm p {
  margin: 0;
}
.contactForm .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}
.contactForm .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 1.2rem;
  color: #ff8f8f;
}
.contactForm .wpcf7-spinner {
  display: block;
  margin: 16px auto 0;
}
.contactForm__heading {
  margin: 20px 0 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.contactForm__heading p {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .contactForm__heading {
    margin: 56px 0 10px;
    line-height: 1.5;
  }
  .contactForm__heading p {
    font-size: 2rem;
  }
}
.contactForm__headingRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 72px 0 28px;
}
@media (max-width: 767px) {
  .contactForm__headingRow {
    display: block;
    margin: 56px 0 20px;
  }
}
.contactForm__headingLink {
  flex-shrink: 0;
}
.contactForm__headingLink a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}
.contactForm__headingLink p {
  font-size: 1.4rem;
  margin: 40px 0 0;
  text-align: right;
}
@media (any-hover: hover) {
  .contactForm__headingLink a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .contactForm__headingLink {
    margin-top: 0;
  }
  .contactForm__headingLink a,
  .contactForm__headingLink p {
    font-size: 1.3rem;
    text-align: left;
  }
  .contactForm__headingLink p {
    margin-top: 10px;
  }
}
.contactForm__row {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  -moz-column-gap: 28px;
       column-gap: 28px;
  row-gap: 10px;
  margin-bottom: 38px;
}
@media (max-width: 767px) {
  .contactForm__row {
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin-bottom: 24px;
  }
}
.contactForm__row--textarea {
  align-items: start;
}
.contactForm__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
@media (max-width: 767px) {
  .contactForm__head {
    align-items: center;
  }
}
.contactForm__field {
  min-width: 0;
}
.contactForm__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}
.contactForm__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.02em;
}
.contactForm__label p {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .contactForm__label {
    font-size: 1.5rem;
  }
  .contactForm__label p {
    font-size: 1.5rem;
  }
}
.contactForm__required, .contactForm__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  min-height: 20px;
  padding: 1px 4px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}
.contactForm__required p, .contactForm__optional p {
  font-size: 1.2rem;
  color: #222;
}
@media (max-width: 767px) {
  .contactForm__required, .contactForm__optional {
    width: 36px;
    min-height: 18px;
    font-size: 1rem;
  }
  .contactForm__required p, .contactForm__optional p {
    font-size: 1rem;
  }
}
.contactForm__required {
  color: #222;
  background: #bed417;
}
.contactForm__optional {
  color: #222;
  background: #bcbcbc;
}
.contactForm__input, .contactForm__select, .contactForm__textarea {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
}
.contactForm__input::-moz-placeholder, .contactForm__select::-moz-placeholder, .contactForm__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contactForm__input::placeholder, .contactForm__select::placeholder, .contactForm__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contactForm__input:focus, .contactForm__select:focus, .contactForm__textarea:focus {
  outline: none;
  border-color: #bed417;
}
@media (max-width: 767px) {
  .contactForm__input, .contactForm__select, .contactForm__textarea {
    display: block;
    width: 100%;
    height: 52px;
    padding: 0 14px;
    font-size: 1.5rem;
  }
}
.contactForm__select {
  padding-right: 46px;
  background-image: linear-gradient(45deg, transparent 45%, #8a8a8a 45%, #8a8a8a 55%, transparent 55%), linear-gradient(-45deg, transparent 45%, #8a8a8a 45%, #8a8a8a 55%, transparent 55%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.contactForm__textarea {
  height: 220px;
  min-height: 220px;
  padding: 16px 18px;
  resize: vertical;
}
@media (max-width: 767px) {
  .contactForm__textarea {
    height: 180px;
    min-height: 180px;
    padding: 14px;
  }
}
.contactForm__checkboxWrap {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .contactForm__checkboxWrap {
    margin-top: 40px;
  }
}
.contactForm__checkboxRow {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  -moz-column-gap: 28px;
       column-gap: 28px;
  row-gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .contactForm__checkboxRow {
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin-bottom: 20px;
  }
}
.contactForm__checkbox {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.8;
}
.contactForm__checkbox .wpcf7-list-item {
  margin: 0;
}
.contactForm__checkbox .wpcf7-list-item-label {
  color: #fff;
}
.contactForm__checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0 12px 0 0;
  vertical-align: middle;
  accent-color: #bed417;
  cursor: pointer;
  flex: 0 0 20px;
}
.contactForm__checkbox a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1.3rem;
}
.contactForm__checkbox label {
  display: inline-flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .contactForm__checkbox {
    font-size: 1.4rem;
  }
  .contactForm__checkbox label {
    display: flex;
    align-items: flex-start;
  }
  .contactForm__checkbox input[type=checkbox] {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    flex: 0 0 22px;
  }
}
.contactForm__submit {
  margin-top: 72px;
  text-align: center;
}
@media (max-width: 767px) {
  .contactForm__submit {
    margin-top: 48px;
  }
}
.contactForm__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: 68px;
  padding: 20px 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #222;
  background: #bed417;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}
@media (any-hover: hover) {
  .contactForm__button:hover {
    opacity: 0.85;
  }
}
@media (max-width: 767px) {
  .contactForm__button {
    width: 100%;
    min-height: 64px;
    padding: 16px 20px;
    font-size: 1.8rem;
  }
}

/* ----------------------------
 Contact Form 7 Message
----------------------------- */
.wpcf7-response-output {
  margin: 30px auto 0;
  padding: 30px 0;
  font-size: 1.4rem;
  line-height: 1.6;
  border-radius: 4px;
  text-align: center;
}

/* 送信成功 */
.wpcf7 form.sent .wpcf7-response-output {
  color: #222;
  background: #bed417;
  border: none;
}

/* 送信エラー */
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  color: #fff;
  background: #c94a4a;
  border: none;
}

/* バリデーションエラー */
.wpcf7 form.invalid .wpcf7-response-output {
  color: #fff;
  background: #ff6b6b;
  border: none;
}

/* スパム */
.wpcf7 form.spam .wpcf7-response-output {
  color: #fff;
  background: #b30000;
  border: none;
}

/* 入力エラー */
.wpcf7-not-valid {
  border-color: #ff6b6b !important;
}

/* エラーテキスト */
.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 1.2rem;
  color: #ff6b6b;
}

.wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.cta {
  padding: 100px 20px;
  background-image: linear-gradient(rgba(34, 34, 34, 0.5), rgba(34, 34, 34, 0.5)), url("../img/solutionBg.png");
  background-position: center;
  background-size: cover;
  text-align: center;
}
@media (max-width: 767px) {
  .cta {
    padding: 60px 16px 60px;
  }
}
.cta__lead {
  color: #c8df17;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .cta__lead {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.cta__text {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cta__text {
    font-size: 2rem;
  }
}

.faq {
  padding: 100px 20px 120px;
  background: #222222;
  color: #fff;
}
.faq__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}
.faq__heading {
  text-align: center;
  margin-bottom: 48px;
}
.faq__title {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.faq__line {
  display: block;
  width: 60px;
  height: 5px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, #b8d91c 0%, #19c6d1 100%);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faqCard {
  padding: 28px 36px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.faqCard__row {
  display: grid;
  grid-template-columns: 34px 1fr;
  -moz-column-gap: 14px;
       column-gap: 14px;
}
.faqCard__row--question {
  align-items: center;
}
.faqCard__row--answer {
  align-items: start;
  margin-top: 18px;
}
.faqCard__label {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 200;
}
.faqCard__label--q {
  color: #b8d91c;
  font-size: 3.2rem;
}
.faqCard__label--a {
  color: #ccc;
  font-size: 3.2rem;
}
.faqCard__title {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.faqCard__body p {
  margin: 0;
  color: #ccc;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.faqCard__body strong {
  padding-bottom: 6px;
  background: linear-gradient(90deg, rgba(190, 212, 23, 0.3) 0%, rgba(39, 203, 236, 0.3) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.45em;
  background-position: 0 75%;
  color: #fff;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 72px 16px 88px;
  }
  .faq__heading {
    margin-bottom: 32px;
  }
  .faq__title {
    font-size: 3rem;
  }
  .faq__line {
    width: 52px;
    height: 4px;
    margin-top: 16px;
  }
  .faqCard {
    padding: 22px 18px 24px;
  }
  .faqCard__row {
    grid-template-columns: 28px 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .faqCard__row--answer {
    margin-top: 14px;
  }
  .faqCard__label--q, .faqCard__label--a {
    font-size: 2.8rem;
  }
  .faqCard__title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .faqCard__body p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.flow {
  padding: 100px 20px 120px;
  background: #222222;
  color: #fff;
}
.flow__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}
.flow__lead {
  margin: 0 0 48px;
  color: #ccc;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.flowCard {
  display: grid;
  grid-template-columns: 56px 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 30px 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.flowCard__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-top: -1px;
  border-radius: 5px;
  background: #aebf1f;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.flowCard__num--2 {
  background: #8abd55;
}
.flowCard__num--3 {
  background: #66be79;
}
.flowCard__num--4 {
  background: #51bea7;
}
.flowCard__num--5 {
  background: #32b6d4;
}
.flowCard__content {
  min-width: 0;
}
.flowCard__title {
  margin: 0;
  margin-top: 6px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.flowCard__body {
  margin-top: 20px;
}
.flowCard__body p {
  margin: 0;
  color: #ccc;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.flowCard__note {
  margin-top: 16px !important;
  color: #bcbcbc !important;
  font-size: 1.2rem !important;
  line-height: 1.8 !important;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .flow {
    padding: 60px 16px 60px;
  }
  .flow__lead {
    margin-bottom: 32px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .flowCard {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding: 20px 18px 22px;
  }
  .flowCard__num {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  .flowCard__title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .flowCard__body {
    margin-top: 10px;
  }
  .flowCard__body p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .flowCard__note {
    margin-top: 12px !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
  }
}
.footer {
  background: #222;
  padding: 80px 20px 60px;
  text-align: center;
}
.footer__inner {
  width: min(100%, 900px);
  margin: auto;
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__logo img {
  width: 260px;
  height: auto;
  display: block;
  margin: auto;
}
.footer__copy {
  font-size: 1.4rem;
  color: #bdbdbd;
  letter-spacing: 0.04em;
}

.footer__logo img {
  width: 300px;
}

.footer__logo:hover {
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .footer {
    padding: 0px 16px 120px;
  }
  .footer__logo img {
    width: 200px;
  }
}
.fv {
  position: relative;
  overflow: hidden;
  background: linear-gradient(#050505 0%, #777 100%);
  color: #fff;
  padding: 70px 20px 56px;
}
.fv::before {
  content: "";
  position: absolute;
  inset: auto 0 -140px 0;
  height: 360px;
  pointer-events: none;
  z-index: 0;
}
.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fv__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1600px);
  margin: 0 auto;
}
.fv__body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.98fr);
  align-items: start;
}
.fv__content {
  padding-top: 8px;
  margin-left: 10%;
}
.fv__catch {
  margin: 0 0 10px;
  font-size: clamp(3.6rem, 3.4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.fv__logo {
  width: min(100%, 340px);
  margin-bottom: 30px;
}
.fv__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.fv__lead {
  display: inline-block;
  margin: 0 0 34px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.5);
  font-size: clamp(1.4rem, 1.55vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
}
.fv__note {
  margin: 10px 0 0 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #aaa;
}
.fv__ctaWrap {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.fvPoints {
  display: grid;
  gap: 28px;
  line-height: 1.2;
}
.fvPoints__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: flex-start;
}
.fvPoints__icon {
  width: 50px;
  height: 50px;
  margin-top: 5px;
}
.fvPoints__icon img {
  width: 100%;
  height: 100%;
}
.fvPoints__sub {
  margin: 0 0 2px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02rem;
}
.fvPoints__main {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #c7df13;
  display: inline;
  padding-bottom: 4px;
}
.fvPoints__main3 {
  border-bottom: 2px solid #c7df13;
  padding-bottom: 4px;
}
.fvPoints__main2 {
  margin: 0px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.fvPoints__accent {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: #c7df13;
  border-bottom: 2px solid #c7df13;
  display: inline;
  padding-bottom: 4px;
}

.fvVisual {
  position: relative;
}
.fvVisual__item {
  position: absolute;
}
.fvVisual__item img {
  display: block;
  width: 100%;
  height: auto;
}
.fvVisual__item--top {
  top: 0;
  width: 100%;
  z-index: 2;
}
.fvVisual__item--bottom {
  right: 130px;
  bottom: 24px;
  width: 56%;
  z-index: 3;
}
.fvVisual__item--rack {
  top: -8px;
  right: -26px;
  width: 34%;
  z-index: 1;
  opacity: 0.62;
}

@media (max-width: 767px) {
  .fv {
    padding-top: 56px;
  }
  .fv__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .fv__content {
    max-width: 900px;
    margin-left: 0px;
  }
  .fv__lead {
    margin-bottom: 28px;
  }
  .fv__note {
    font-size: 1rem;
    line-height: 1.4;
    color: #aaa;
  }
  .fvVisual {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
  }
  .fvVisual__item--top {
    left: 0;
    width: 62%;
  }
  .fvVisual__item--bottom {
    right: 120px;
    bottom: 0;
    width: 54%;
  }
  .fvVisual__item--rack {
    right: 0;
    width: 29%;
  }
  .fv {
    padding: 10px 16px 34px;
  }
  .fv::before {
    inset: auto 0 -120px 0;
    height: 240px;
  }
  .fv__body {
    gap: 26px;
  }
  .fv__catch {
    margin-bottom: 0px;
    font-size: 2.4rem;
    line-height: 1.3;
    color: #fcfcfc;
  }
  .fv__logo {
    width: min(100%, 290px);
    margin-bottom: 18px;
  }
  .fv__lead {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 10px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .fv__note {
    margin-top: 10px;
  }
  .fv__ctaWrap {
    margin-top: 20px;
  }
  .fv__cta {
    min-height: 64px;
    padding: 14px 16px;
    gap: 10px;
    border-radius: 4px;
  }
  .fv__ctaIcon img {
    width: 22px;
  }
  .fv__ctaText {
    font-size: 1.9rem;
    line-height: 1.45;
    text-align: center;
  }
  .fvPoints {
    gap: 16px;
  }
  .fvPoints__item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }
  .fvPoints__icon {
    width: 34px;
    height: 34px;
    font-size: 1.8rem;
    margin-top: 2px;
  }
  .fvPoints__sub {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .fvPoints__main {
    margin-top: 2px;
    font-size: 1.8rem;
    line-height: 1.4;
    text-underline-offset: 4px;
  }
  .fvPoints__main2 {
    margin: 0px;
    margin-top: 2px;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .fvPoints__accent {
    font-size: 1.8rem;
    line-height: 1.45;
  }
  .fvVisual__item--top {
    position: relative;
    top: auto;
    left: auto;
    width: 78%;
    margin: 0 auto;
  }
  .fvVisual__item--bottom {
    width: 64%;
    right: auto;
    left: 0;
    bottom: 0;
  }
  .fvVisual__item--rack {
    width: 32%;
    right: 0;
    top: 0;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #050505;
  padding: 14px 20px;
}
.header__logo {
  height: 44px;
  margin-right: 40px;
}
.header__logo img {
  height: 100%;
}
.header__logo:hover {
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}
.header__inner {
  max-width: 1400px;
  margin: auto auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.header__menu a:hover {
  color: #fff;
}
.header__menu a.is-current {
  color: #fff;
  font-weight: 700;
  position: relative;
}
.header__menu a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, #b6d818, #39c4d6);
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 3px;
  background: linear-gradient(90deg, #b6d818, #39c4d6);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.6rem;
  transition: 0.3s;
  margin-left: 30px;
}
.header__cta:hover {
  opacity: 0.85;
}
.header__icon {
  display: flex;
  align-items: center;
}
.header__icon img {
  width: 17px;
  height: auto;
  margin-top: -3px;
}

section {
  scroll-margin-top: 100px;
}

.lineup {
  background: #2f3138;
  color: #fff;
  padding: 120px 20px 100px;
}
.lineup__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}
.lineup__cta {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}
.lineup__cta:hover {
  opacity: 0.7;
}

.lineupBlock + .lineupBlock {
  margin-top: 88px;
}
.lineupBlock__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: solid 1px #ccc;
}

.lineupGrid {
  display: grid;
  gap: 40px 28px;
}
.lineupGrid--col3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}
.lineupGrid--col4 {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: stretch;
}
.lineupGrid--col2Wide {
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr);
  gap: 40px 36px;
  align-items: start;
}

.lineupCategory {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.lineupCategory__title {
  min-height: 40px;
  margin-bottom: 20px;
  color: #c2d91f;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.lineupCategory__title span {
  display: block;
  margin-top: 4px;
  font-size: 1.4rem;
  line-height: 1.45;
}

.lineupCards {
  display: grid;
  gap: 0;
  height: 100%;
  align-items: stretch;
}
.lineupCards--col1 {
  grid-template-columns: minmax(0, 1fr);
}
.lineupCards--col2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lineupCards--col4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lineupCard {
  min-width: 0;
  min-height: 320px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, opacity 0.25s ease;
  border: 1px solid #2e3138;
}
.lineupCard:hover {
  transform: translateY(-10px);
  opacity: 0.92;
}
.lineupCard__image {
  flex: 1;
  min-height: 248px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 0;
}
.lineupCard__image img {
  display: block;
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.lineupCard__name {
  min-height: 78px;
  padding: 12px 10px;
  background: #c2d91f;
  color: #222;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.lineupButton {
  width: min(100%, 520px);
  min-height: 76px;
  border: 1px solid #c2d91f;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 64px 18px 24px;
  color: #c2d91f;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.lineupButton span {
  position: relative;
  z-index: 2;
}
.lineupButton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #c2d91f;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.lineupButton::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 28px;
  z-index: 2;
}
.lineupButton:hover {
  color: #0d0d0d;
}
.lineupButton:hover::before {
  transform: scaleX(1);
}

@media (max-width: 1100px) {
  .sectionHeading {
    margin-bottom: 56px;
  }
  .sectionHeading .package__badge {
    min-width: 220px;
    font-size: 1.6rem;
    padding: 10px 22px;
    margin-bottom: 22px;
  }
  .sectionHeading__title {
    font-size: 3.8rem;
  }
  .lineupBlock__title {
    font-size: 3rem;
  }
  .lineupGrid--col3, .lineupGrid--col4, .lineupGrid--col2Wide {
    grid-template-columns: 1fr;
  }
  .lineupCards--col4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .lineup {
    padding: 60px 16px 72px;
  }
  .sectionHeading .package__badge {
    min-width: auto;
    width: 100%;
    max-width: 280px;
    font-size: 1.4rem;
  }
  .sectionHeading__title {
    font-size: 2.8rem;
  }
  .sectionHeading__line {
    width: 52px;
    height: 5px;
  }
  .lineupBlock + .lineupBlock {
    margin-top: 64px;
  }
  .lineupBlock__title {
    font-size: 2.4rem;
    margin-bottom: 28px;
  }
  .lineupCategory__title {
    min-height: auto;
    font-size: 1.6rem;
  }
  .lineupCards--col2, .lineupCards--col4 {
    grid-template-columns: 1fr 1fr;
  }
  .lineupCard {
    min-height: 240px;
  }
  .lineupCard__image {
    min-height: 170px;
  }
  .lineupCard__image img {
    max-height: 140px;
  }
  .lineupCard__name {
    min-height: 64px;
    font-size: 1.6rem;
  }
  .lineupButton {
    min-height: 64px;
    font-size: 1.6rem;
    padding-right: 52px;
  }
  .lineupButton::after {
    right: 22px;
  }
}
.package {
  padding: 80px 0 120px;
  background: #2f3138;
  color: #fff;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.package__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.package__header {
  text-align: center;
  margin-bottom: 48px;
}
.package__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b7de22 0%, #2fd4f3 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.package__line {
  display: block;
  width: 56px;
  height: 5px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, #b7de22 0%, #2fd4f3 100%);
  border-radius: 999px;
}
.package__table {
  display: grid;
  grid-template-columns: 242px repeat(3, 1fr);
}
.package__cell:nth-child(8n+2), .package__cell:nth-child(8n+3), .package__cell:nth-child(8n+4) {
  background: #57595d;
}
.package__cell {
  background: #404247;
  padding: 10px 14px;
  margin-bottom: 1px;
  margin-right: 1px;
  gap: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.package__cell img {
  width: 90%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.package__cell--blank {
  background: transparent;
  border-right: none;
  border-bottom: none;
}
.package__cell--head {
  min-height: 82px;
  background: transparent;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.package__cell--label {
  background: #222;
  color: #bed417;
  font-size: 16px;
  font-weight: 700;
}
.package__cell--name {
  background: #fff;
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 700;
}
.package__cell--name2 {
  background: #fff;
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 700;
}
.package__cell--image {
  background: #fff !important;
  padding: 0 !important;
}
.package__cell--gpu {
  background: #c3d91a !important;
  color: #101010;
  font-size: 14px;
  font-weight: 700;
}
.package__cell--section {
  margin-top: 18px;
}
@media (max-width: 1100px) {
  .package__table {
    grid-template-columns: 200px repeat(3, minmax(180px, 1fr));
    overflow-x: auto;
  }
  .package__cell {
    font-size: 14px;
  }
  .package__cell--head {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .package {
    padding: 72px 16px;
  }
  .package__header {
    margin-bottom: 32px;
  }
  .package__badge {
    min-height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }
  .package__title {
    margin-top: 20px;
    font-size: 22px;
  }
  .package__line {
    width: 48px;
    height: 4px;
    margin-top: 18px;
  }
  .package__tableWrap {
    overflow-x: auto;
  }
  .package__table {
    min-width: 980px;
    grid-template-columns: 170px repeat(3, 1fr);
  }
  .package__cell {
    min-height: 24px;
    font-size: 14px;
    padding: 5px 5px;
  }
  .package__cell--head {
    min-height: 72px;
    font-size: 28px;
  }
  .package__cell--label {
    font-size: 14px;
  }
  .package__cell--name {
    min-height: 64px;
    font-size: 20px;
  }
  .package__cell--name2 {
    font-size: 18px;
  }
  .package__cell--image {
    min-height: 170px;
  }
  .package__cell--gpu {
    font-size: 14px;
  }
}

.package__cell__note {
  text-align: left;
  font-size: 1.3rem;
  color: #999;
  margin-top: 40px;
}

.serverPoint {
  padding: 100px 20px 120px;
  background: #eee;
  color: #333;
}
.serverPoint__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.serverPoint__lead {
  margin: 0 0 56px;
  color: #454b56;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
.serverPoint__list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.sectionHeading--dark .sectionHeading__title {
  color: #2f3540;
}

.pointCard {
  max-width: 1110px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 56px;
  padding: 72px 64px;
  background: #f5f5f5;
  border: 1px solid #e7e7e7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.pointCard--reverse {
  grid-template-columns: 1fr 300px;
}
.pointCard--reverse .pointCard__image {
  order: 2;
}
.pointCard--reverse .pointCard__content {
  order: 1;
}
.pointCard__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.pointCard__content {
  min-width: 0;
}
.pointCard__title {
  margin: 0;
  color: #3a3a3a;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.pointCard__line {
  display: block;
  width: 60px;
  height: 5px;
  margin-top: 25px;
  background: #b8d91c;
}
.pointCard__body {
  margin-top: 30px;
}
.pointCard__body p {
  margin: 0;
  color: #333;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: justify;
}
.pointCard__body p + p {
  margin-top: 18px;
}
.pointCard mark {
  padding: 0.3em 0.2rem;
  margin-right: 0.2rem;
  background: linear-gradient(90deg, rgba(190, 212, 23, 0.5) 0%, rgba(39, 203, 236, 0.5) 100%);
  color: inherit;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .serverPoint {
    padding: 72px 16px 88px;
  }
  .serverPoint__lead {
    margin-bottom: 36px;
    font-size: 1.4rem;
    line-height: 1.9;
    text-align: left;
  }
  .serverPoint__list {
    gap: 20px;
  }
  .pointCard {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
  }
  .pointCard--reverse {
    grid-template-columns: 1fr;
  }
  .pointCard--reverse .pointCard__image,
  .pointCard--reverse .pointCard__content {
    order: initial;
  }
  .pointCard__image img {
    aspect-ratio: 2/1;
  }
  .pointCard__title {
    font-size: 1.9rem;
    line-height: 1.6;
  }
  .pointCard__line {
    width: 44px;
    height: 4px;
    margin-top: 14px;
  }
  .pointCard__body {
    margin-top: 18px;
  }
  .pointCard__body p {
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .pointCard__body p + p {
    margin-top: 14px;
  }
}
.problem {
  background: #777;
  padding: 80px 20px 100px;
  color: #fff;
}
.problem__inner {
  width: min(100%, 980px);
  margin: 0 auto;
}
.problem__title {
  text-align: center;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 60px;
  letter-spacing: 0.04em;
}
.problem__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.problem__item {
  display: block;
  position: relative;
  padding: 14px 28px 14px 54px;
  font-size: 1.9rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  background: rgba(34, 35, 38, 0.5);
  transition: background 0.3s ease;
}
.problem__item p {
  margin: 0;
  text-align: center;
}
.problem__item strong {
  font-weight: 700;
  color: #c2d91f;
}
.problem__item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23c2d91f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain;
}
.problem__item:hover {
  background: rgba(34, 35, 38, 0.6);
}

@media (max-width: 767px) {
  .problem {
    padding: 30px 16px 40px;
  }
  .problem__list {
    gap: 5px;
  }
  .problem__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .problem__item {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 16px 18px 16px 42px;
  }
  .problem__item p {
    text-align: left;
  }
  .problem__item::before {
    left: 14px;
    width: 16px;
    height: 16px;
  }
}
.reason {
  padding: 100px 20px 120px;
  background: linear-gradient(90deg, #9ccf2f 0%, #45b8c6 100%);
}
.reason__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.reason__list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.reasonCard {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 48px 36px 42px;
  background: #fff;
  text-align: center;
}
.reasonCard__num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
}
.reasonCard__icon {
  margin-bottom: 24px;
}
.reasonCard__icon img {
  width: 90%;
}
.reasonCard__title {
  margin-bottom: 16px;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
}
.reasonCard__textWrap {
  flex: 1;
}
.reasonCard__text {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #333;
}
.reasonCard__text + .reasonCard__text {
  margin-top: 14px;
}
.reasonCard mark {
  padding: 0.25em 0.2em;
  background: linear-gradient(90deg, rgb(190, 212, 23) 0%, rgb(39, 203, 236) 100%);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.reasonCard__arrow {
  width: 0;
  height: 0;
  margin: 20px auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #d0d0d0;
}
.reasonCard__note {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: #333;
  text-align: center;
}
.reasonCard__caption {
  margin-top: 14px;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #888;
  text-align: center;
}

@media (max-width: 767px) {
  .reason {
    padding: 60px 16px 60px;
  }
  .reason__list {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reasonCard {
    padding: 36px 24px 32px;
  }
  .reasonCard__num {
    top: 16px;
    left: 18px;
    font-size: 4.8rem;
  }
  .reasonCard__icon {
    margin-bottom: 18px;
  }
  .reasonCard__icon img {
    width: 72%;
  }
  .reasonCard__title {
    margin-bottom: 14px;
    font-size: 1.9rem;
  }
  .reasonCard__text {
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .reasonCard mark {
    font-size: 1.6rem;
  }
  .reasonCard__arrow {
    margin: 18px auto;
  }
  .reasonCard__note {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .reasonCard__caption {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.solution {
  position: relative;
  color: #fff;
  background: #222;
  letter-spacing: 0.1em;
}
.solution__bg {
  position: relative;
  padding: 100px 20px 120px;
  background-image: linear-gradient(rgba(34, 34, 34, 0.5), rgba(34, 34, 34, 0.5)), url("../img/solutionBg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}
.solution__head {
  margin-bottom: 0px;
}
.solution__title {
  margin: 0;
  font-size: 4rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.solution__titleMark {
  display: inline;
  padding: 0.2em 0.2em;
  margin-right: 0.2em;
  background: linear-gradient(90deg, #bed417 0%, #27cbec 100%);
  color: #fff;
  letter-spacing: 0.02em;
}
.solution__lead {
  margin-bottom: 42px;
}
.solution__leadText {
  margin: 0;
  font-size: 2.4rem;
  line-height: 2.4;
  font-weight: 700;
}
.solution__leadText + .solution__leadText {
  margin-top: 2px;
}
.solution__Mark {
  background: linear-gradient(to right, #bed417 0%, #27cbec 100%) left bottom/100% 2px no-repeat;
  padding-bottom: 0.4em;
}
.solution__leadMark {
  color: #bed417;
  font-size: 3rem;
}
.solution__body {
  max-width: 760px;
  margin: 0 auto;
}
.solution__text {
  margin: 0;
  font-size: 1.8rem;
  line-height: 2.5;
  font-weight: 700;
}
.solution__text + .solution__text {
  margin-top: 2px;
}
.solution__message {
  margin: 15px 0 0;
  font-size: 2.4rem;
  line-height: 1.8;
  font-weight: 700;
}

.solution__img {
  display: block;
  width: 80%;
  margin: 100px auto 0;
  max-width: 900px;
}

@media screen and (max-width: 767px) {
  .solution__bg {
    padding: 56px 20px 60px;
    background-position: center;
  }
  .solution__head {
    margin-bottom: 24px;
  }
  .solution__title {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .solution__titleMark {
    padding: 0.06em 0.16em;
  }
  .solution__Mark {
    padding-bottom: 0.2em;
  }
  .solution__lead {
    margin-bottom: 28px;
  }
  .solution__leadMark {
    font-size: 1.8rem;
  }
  .solution__leadText {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .solution__body {
    max-width: 100%;
  }
  .solution__text {
    font-size: 1.3rem;
    line-height: 1.9;
    display: inline;
  }
  .solution__message {
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.solution {
  /* ▼ 三角 */
}
.solution::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 40px solid #777; /* 上セクションの背景色 */
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .solution::after {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #777; /* 上セクションの背景色 */
  }
}

.support {
  background: #f3f3f3;
  padding: 120px 20px 100px;
  color: #333;
}
.support__inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}
.support__lead {
  margin: 0 auto 56px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.9;
  color: #555;
}

.supportBlock + .supportBlock {
  margin-top: 88px;
}
.supportBlock__visual {
  width: min(100%, 820px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.supportBlock__visual img {
  display: block;
  width: 90%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.supportBlock--secondary {
  margin-top: 96px;
}

.supportPanel {
  background: #fff;
  margin-top: -56px;
  padding: 72px 56px 36px;
  position: relative;
  z-index: 1;
}
.supportPanel__title {
  margin: 20px 0 28px;
  text-align: center;
  color: #c3d61b;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.supportTable__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  -moz-column-gap: 36px;
       column-gap: 36px;
  padding: 26px 0;
  border-top: 1px solid #e7e7e7;
}
.supportTable__row:last-child {
  border-bottom: 1px solid #e7e7e7;
}
.supportTable__head {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #4b4b4b;
  letter-spacing: 0.1em;
}
.supportTable__body {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  line-height: 1.8;
  color: #333;
}
.supportTable__body small {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
}
.supportTable__body strong {
  font-weight: bold;
}

@media (max-width: 1024px) {
  .support {
    padding: 100px 20px 120px;
  }
  .support__lead {
    font-size: 1.6rem;
    margin-bottom: 48px;
  }
  .sectionHeading__title {
    font-size: 4rem;
  }
  .supportPanel {
    padding: 64px 40px 32px;
  }
  .supportPanel__title {
    font-size: 4.2rem;
  }
  .supportTable__row {
    grid-template-columns: 200px 1fr;
    -moz-column-gap: 28px;
         column-gap: 28px;
  }
}
@media (max-width: 767px) {
  .support {
    padding: 60px 16px 60px;
  }
  .support__lead {
    margin-bottom: 36px;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: left;
  }
  .sectionHeading {
    margin-bottom: 28px;
  }
  .sectionHeading__title {
    font-size: 3rem;
  }
  .sectionHeading__line {
    width: 52px;
    height: 5px;
    margin-top: 14px;
  }
  .supportBlock + .supportBlock {
    margin-top: 64px;
  }
  .supportBlock__visual img {
    aspect-ratio: 2/1;
  }
  .supportPanel {
    margin-top: -24px;
    padding: 40px 20px 20px;
  }
  .supportPanel__title {
    margin-bottom: 20px;
    font-size: 3rem;
  }
  .supportTable__row {
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 20px 0;
  }
  .supportTable__head {
    justify-content: flex-start;
    text-align: left;
    font-size: 1.7rem;
  }
  .supportTable__body {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.usecase {
  padding: 80px 20px;
  background: #fff;
}
.usecase__inner {
  width: min(100%, 1200px);
  margin: auto;
}
.usecase__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #39485b;
  margin-bottom: 50px;
  line-height: 1.4;
}
.usecase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.usecaseCard {
  background: #fff;
  box-shadow: 0px 0px 10px #e3e3e3;
  padding-bottom: 10px;
}
.usecaseCard__inner {
  background: #fff;
  overflow: hidden;
}
.usecaseCard__case {
  text-align: center;
  font-size: 26px;
  color: #ccc;
  padding: 22px 0 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.usecaseCard__image img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.usecaseCard__body {
  padding: 32px 28px 30px;
}
.usecaseCard__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
}
.usecaseCard__target {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.usecaseCard__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  margin: 20px;
  display: flex;
  align-items: center;
  min-height: 3em;
  line-height: 1.5;
}
.usecaseCard__label {
  min-width: 54px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: #666;
  padding: 6px 10px;
  border-radius: 2px;
}
.usecaseCard__label--solve {
  background: #c3d91a;
  color: #000;
}
.usecaseCard__text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .usecase {
    padding: 50px 16px 50px;
  }
  .usecase__title {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .usecase__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .usecaseCard__image img {
    height: 200px;
  }
  .usecaseCard__body {
    padding: 24px 20px;
  }
  .usecaseCard__title {
    font-size: 20px;
  }
  .usecaseCard__target {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .usecaseCard__row {
    align-items: flex-start;
  }
  .usecaseCard__text {
    font-size: 14px;
  }
}
.header__nav {
  display: block;
}
.header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #b6d818, #39c4d6);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: 16px;
  flex-shrink: 0;
}
.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.headerDrawer {
  display: none;
}

@media (max-width: 1100px) {
  .header {
    padding: 10px 0;
    background: #050505;
  }
  .header__inner {
    gap: 12px;
  }
  .header__nav, .header__cta {
    display: none;
  }
  .header__toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .headerDrawer {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 64px);
    background: #050505;
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .headerDrawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .headerDrawer__inner {
    padding: 20px 16px 32px;
    overflow-y: auto;
    height: 100%;
  }
  .headerDrawer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .headerDrawer__menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .headerDrawer__menu a {
    display: block;
    padding: 16px 4px;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .headerDrawer__menu a.is-current {
    color: #b6d818;
  }
  .headerDrawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 40px;
    padding: 16px 20px;
    border-radius: 3px;
    background: linear-gradient(90deg, #b6d818, #39c4d6);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.8rem;
  }
}
.target {
  padding-top: 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.target__img {
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .target {
    padding-top: 40px;
  }
}

.targetList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  margin: 60px 0 100px;
  list-style: none;
}
@media (max-width: 767px) {
  .targetList {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 0 30px;
  }
}

.targetItem {
  padding: 26px 28px;
  border-radius: 6px;
  color: #fff;
}
@media (max-width: 767px) {
  .targetItem {
    padding: 20px;
  }
}
.targetItem__label {
  display: inline-block;
  padding: 6px 12px;
  font-size: 1.4rem;
  font-weight: bold;
  font-weight: 700;
  margin-bottom: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}
.targetItem__text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 15px;
}

.targetLead__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #d8d8d8;
  margin-bottom: 15px;
  margin-top: 10px;
}

.targetItem:nth-child(3n+1) {
  background: rgba(89, 123, 186, 0.3);
}

.targetItem:nth-child(3n+2) {
  background: rgba(38, 89, 183, 0.4);
}

.targetItem:nth-child(3n+3) {
  background: rgba(20, 40, 79, 0.8);
}

.fixedCta {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 99;
  padding: 0 0 0;
}
.fixedCta a {
  width: 100%;
  border-radius: 0;
}/*# sourceMappingURL=style.css.map */