    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --blue: #228bdc;
      --blue-light: #69bffc;
      --blue-pale: #f4fdff;
      --navy: #1a2a4a;
      --navy-mid: #2869b3;
      --yellow: #ffe417;
      --orange: #ff881e;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--navy);
      overflow-x: hidden;
      background: #fff;
    }

    .page-wrap {
      width: 100%;
      margin: 0 auto;
      position: relative;
    }

    /* Centered 1440px content wrapper inside full-width sections */
    .inner {
      width: 1440px;
      margin: 0 auto;
      position: relative;
      height: 100%;
    }

    /* ─── HEADER ─── */
    .header {
      position: fixed;
      top: 0;
      width: 100%;
      height: 60px;
      background: linear-gradient(17.77deg, #69bffc 66.15%, #228bdc 110.34%);
      z-index: 1000;
      overflow: hidden;
    }

    .header__logo {
      position: absolute;
      left: 20px;
      height: auto;
      width: auto;
    }

    .header__logo img {
      height: 35.79px;
      width: 259.87px;
      object-fit: contain;
      object-position: left center;
      margin-top: 12px;
      margin-bottom: 12px;
    }

    .header__nav {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      gap: 32px;
      align-items: center;
      white-space: nowrap;
    }

    .header__nav a {
      color: var(--blue-pale);
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      padding: 0 12px;
    }

    .header__cta {
      position: absolute;
      right: 0;
      top: 0;
      width: 169px;
      height: 60px;
      background: linear-gradient(to top, #ffe417, #ff881e);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }

    .header__cta span {
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      letter-spacing: 2px;
    }

    .header__cta img {
      width: 18px;
      height: 18px;
    }

    /* ─── SP-only line break ─── */
    .sp-br {
      display: none;
    }

    /* ─── HAMBURGER (hidden on PC) ─── */
    .header__hamburger {
      display: none;
    }

    /* ─── SP MENU (hidden by default) ─── */
    .sp-menu {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: linear-gradient(168.59deg, #69bffc 16.86%, #228bdc 84.35%);
      overflow-y: auto;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-16px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .sp-menu.is-open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .sp-menu__header {
      position: relative;
      width: 100%;
      height: 46px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      overflow: hidden;
    }

    .sp-menu__logo {
      position: absolute;
      left: 20px;
      top: 9px;
      height: 28px;
      width: 144px;
    }

    .sp-menu__logo img {
      height: 28px;
      width: 144px;
      object-fit: contain;
      margin: 0;
    }

    .sp-menu__cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      position: absolute;
      right: 46px;
      top: 0;
      height: 46px;
      width: 80px;
      background: linear-gradient(to top, #ffe417, #ff881e);
      text-decoration: none;
      padding: 0 6px;
    }

    .sp-menu__cta span {
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      letter-spacing: 0;
    }

    .sp-menu__cta img {
      width: 18px;
      height: 18px;
    }

    .sp-menu__close {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 0;
      top: 0;
      width: 46px;
      height: 46px;
      background: #1a2a4a;
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      border: none;
      cursor: pointer;
    }

    .sp-menu__nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 0 20px;
      margin-top: 8px;
    }

    .sp-menu__nav a {
      display: block;
      padding: 16px 4px;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.5px;
    }

    .sp-menu__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 32px 20px 0;
      height: 56px;
      border-radius: 28px;
      background: linear-gradient(to top, #ffe417, #ff881e);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      text-decoration: none;
      letter-spacing: 1px;
    }

    .sp-menu__btn img {
      width: 18px;
      height: 18px;
    }

    .sp-menu__close-link {
      display: block;
      text-align: center;
      padding: 24px;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      font-family: 'Noto Sans JP', sans-serif;
      background: none;
      border: none;
      cursor: pointer;
      width: 100%;
      letter-spacing: 1px;
    }

    /* ─── MV ─── */
    .mv {
      position: relative;
      width: 100%;
      height: 694px;
      background: linear-gradient(168.59deg, #69bffc 16.86%, #228bdc 84.35%);
      overflow: hidden;
    }

    .mv__title {
      position: absolute;
      left: 50%;
      top: 138px;
      transform: translateX(calc(-50% + 25px));
      color: #fff;
      font-size: 52px;
      font-weight: 700;
      letter-spacing: 10px;
      white-space: nowrap;
      text-align: center;
    }

    .mv__sub {
      position: absolute;
      left: 50%;
      top: 214px;
      transform: translateX(-50%);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 4px;
      white-space: nowrap;
      text-align: center;
    }

    .mv__btn-orange {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 265px;
      width: 243px;
      height: 50px;
      border-radius: 25px;
      background: linear-gradient(to top, #ffe417, #ff881e);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }

    .mv__btn-orange span {
      color: var(--blue-pale);
      font-size: 16px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      letter-spacing: 2px;
    }

    .mv__btn-blue {
      position: absolute;
      left: 733px;
      top: 265px;
      width: 243px;
      height: 50px;
      border-radius: 25px;
      background: var(--blue-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }

    .mv__btn-blue span {
      color: var(--navy);
      font-size: 16px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      letter-spacing: 1px;
    }

    .mv__person-right {
      position: absolute;
      left: 1002px;
      top: 237px;
      width: 276px;
      height: 457px;
      object-fit: cover;
    }

    .mv__person-left {
      position: absolute;
      left: 130px;
      top: 265.87px;
      width: 305.265px;
      height: 458.643px;
      object-fit: cover;
    }

    .mv__app-screen {
      position: absolute;
      left: 50%;
      transform: translateX(calc(-50% + 3px));
      top: 355px;
      width: 582px;
      height: 340px;
      object-fit: cover;
    }

    .mv__app-ui {
      position: absolute;
      left: 496px;
      top: 381px;
      width: 455px;
      height: 254px;
      object-fit: cover;
      border-radius: 2px;
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      position: relative;
      width: 100%;
      background: var(--blue-pale);
    }

    .cta-banner--h138 {
      height: 138px;
    }

    .cta-banner--h143 {
      height: 143px;
      background: linear-gradient(to right, #228bdc, #69bffc);
    }

    .cta-banner--h143 .cta-banner__heading,
    .cta-banner--h143 .cta-banner__sub {
      color: #fff;
    }

    .cta-banner__inner {
      width: 1099px;
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cta-banner__text {
      flex: 1;
    }

    .cta-banner__heading {
      font-size: 30px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 3px;
      line-height: 1.2;
    }

    .cta-banner__sub {
      font-size: 16px;
      font-weight: 500;
      color: var(--navy);
      letter-spacing: 2px;
      margin-top: 4px;
    }

    .btn-orange-gradient {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 243px;
      height: 60px;
      border-radius: 42px;
      background: linear-gradient(to top, #ffe417, #ff881e);
      cursor: pointer;
      border: none;
      text-decoration: none;
      flex-shrink: 0;
    }

    .btn-orange-gradient span {
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      letter-spacing: 2px;
    }

    .btn-orange-gradient img {
      width: 20px;
      height: 20px;
    }

    /* ─── 課題 SECTION ─── */
    .kadai {
      position: relative;
      width: 100%;
      height: 753px;
      overflow: hidden;
      margin-bottom: -154px;
      z-index: 1;
    }

    .kadai__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 753px;
    }

    .kadai__heading {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 119px;
      text-align: center;
      color: #fff;
      display: flex;
      align-items: baseline;
      gap: 12px;
      white-space: nowrap;
    }

    .kadai__heading-sub {
      font-size: 26px;
      font-weight: 700;
      line-height: 1.4;
    }

    .kadai__heading-main {
      font-size: 34px;
      font-weight: 700;
      line-height: 1.4;
    }

    .kadai__cards {
      position: absolute;
      top: 194px;
      left: 178px;
      display: flex;
      gap: 21px;
    }

    .kadai__card {
      width: 238px;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .kadai__card--1 {
      height: 320px;
    }

    .kadai__card--2 {
      height: 320px;
    }

    .kadai__card--3 {
      height: 324px;
    }

    .kadai__card--4 {
      height: 328px;
    }

    .kadai__card-top {
      background: #f0f0f0;
      width: 237px;
      height: 180px;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    .kadai__card-top img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .kadai__card-bottom {
      background: #827e7d;
      height: 130px;
      padding: 12px 16px 16px;
      position: relative;
    }

    .kadai__card-num-wrap {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 44px;
    }

    .kadai__card-num-wrap img {
      width: 44px;
      height: 44px;
    }

    .kadai__card-num {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--blue-pale);
      width: 44px;
      text-align: center;
      line-height: 44px;
      z-index: 1;
    }

    .kadai__card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--blue-pale);
      margin-top: 30px;
      text-align: center;
    }

    .kadai__card-desc {
      font-size: 13px;
      font-weight: 400;
      color: var(--blue-pale);
      margin-top: 6px;
      text-align: center;
      line-height: 1.5;
    }

    /* ─── サービス概要 ─── */
    .service-overview {
      position: relative;
      width: 100%;
      background: #f1f7ff;
      padding-bottom: 80px;
      padding-top: 80px;
      overflow: hidden;
    }

    .service-overview__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
    }

    .service-overview__meishi {
      position: absolute;
      top: 0;
      right: 0;
      width: 540px;
      height: 540px;
      object-fit: contain;
      pointer-events: none;
    }

    .service-overview__photo {
      position: absolute;
      left: 938px;
      top: -42px;
      width: 631px;
      height: 545px;
      object-fit: cover;
      -webkit-mask-image: url(assets/concept-photo-mask.svg);
      mask-image: url(assets/concept-photo-mask.svg);
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      z-index: 1;
    }

    .service-overview__top {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: fit-content;
      margin-left: 169px;
      padding-top: 187px;
      position: relative;
      z-index: 2;
    }

    .service-overview__logo-area {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .service-overview__logo {
      height: 50px;
    }

    .service-overview__slash {
      font-size: 24px;
      color: var(--blue);
      font-weight: 400;
    }

    .service-overview__logo-text {
      font-size: 20px;
      font-weight: 600;
      color: var(--navy);
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 2px;
      align-self: flex-end;
    }

    .service-overview__title {
      width: fit-content;
      padding-top: 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-overview__title-main {
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.5;
      letter-spacing: 1px;
      display: block;
      width: fit-content;
    }

    .text-orange {
      color: #ff881e;
    }

    .text-orange-underline {
      color: #ff881e;
      text-decoration: underline;
      text-decoration-color: #fffecc;
      text-decoration-thickness: 14px;
      text-underline-offset: 2px;
    }

    .text-kanji {
      font-size: 40px;
    }

    .text-kana {
      font-size: 30px;
    }

    .service-overview__underline {
      margin: 12px 0 0 184px;
      width: 741px;
      height: 14px;
      background: var(--yellow);
      position: relative;
      z-index: 2;
    }

    .service-overview__cards {
      padding: 80px 169px 0;
      position: relative;
      z-index: 2;
    }

    .service-card {
      width: 1102px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 5px 6px rgba(40, 105, 179, 0.08);
      padding: 32px 40px;
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 24px;
      min-height: 310px;
    }

    .service-card__left {
      flex: 1;
    }

    .service-card__badge {
      display: inline-block;
      border: 2px solid var(--navy);
      border-radius: 4px;
      padding: 4px 12px;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .service-card__title {
      font-size: 28px;
      font-weight: 700;
      background: linear-gradient(90deg, #228bdc, #69bffc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .service-card__underline {
      width: 400px;
      height: 6px;
      background: #fffecc;
      margin-bottom: 16px;
    }

    .service-card__desc {
      font-size: 15px;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.7;
    }

    .service-card__illus {
      width: 400px;
      height: 220px;
      flex-shrink: 0;
      object-fit: contain;
    }

    /* ─── コンセプト ─── */
    .concept {
      position: relative;
      width: 100%;
      height: 840px;
      overflow: hidden;
    }

    .concept__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 840px;
      object-fit: cover;
      object-position: center top;
    }

    .concept__overlay {
      position: absolute;
      inset: 0;
      background: rgba(244, 253, 255, 0.2);
      mix-blend-mode: screen;
    }

    .concept__ellipse {
      position: absolute;
      left: 412px;
      top: 3px;
      width: 621px;
      height: 596px;
      z-index: 1;
    }

    .concept__blue-box {
      display: none;
    }

    .concept__title-wrap {
      position: absolute;
      left: 0;
      top: 89px;
      width: 1440px;
      text-align: center;
      z-index: 3;
    }

    .concept__title-line1 {
      font-size: 40px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 8px;
      line-height: 55px;
    }

    .concept__highlight {
      color: #fff;
    }

    .concept__title-line2 {
      font-size: 34px;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 4px;
      line-height: 1.3;
      margin-top: 4px;
    }

    .concept__subtitle {
      position: absolute;
      left: 0;
      top: 259px;
      width: 1440px;
      text-align: center;
      font-size: 20px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 4px;
      z-index: 3;
    }

    .concept__body {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 360px;
      width: 700px;
      text-align: center;
      font-size: 15px;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.9;
      z-index: 3;
    }

    .concept__body p {
      margin: 0 0 6px;
      font-size: 18px;
    }

    .concept__body p:last-child {
      margin-bottom: 0;
    }

    .concept__underline {
      position: absolute;
      left: 496px;
      top: 495px;
      width: 394px;
      height: 11px;
      background: #fffecc;
      z-index: 2;
    }

    /* ─── 業務・ツールについて ─── */
    .tools {
      position: relative;
      width: 100%;
      height: auto;
      background: #fff;
    }

    .tools .inner {
      height: auto;
    }

    .tools__heading {
      width: 100%;
      padding-top: 69px;
      padding-bottom: 40px;
      text-align: center;
    }

    .tools__heading-main {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.4;
    }

    .tools__heading-main span {
      color: var(--orange);
    }

    .tools__heading-sub {
      font-size: 16px;
      font-weight: 400;
      color: var(--navy);
      margin-top: 8px;
      letter-spacing: 1px;
    }

    /* Before/After Table */
    .ba-table {
      width: 1105px;
      margin: 0 auto;
    }

    .ba-header {
      display: flex;
      width: 1105px;
      height: 56px;
    }

    .ba-header__before {
      width: 551px;
      height: 56px;
      background: #bdbdbd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 4px;
      font-family: 'Montserrat', sans-serif;
    }

    .ba-header__arrow {
      width: 3px;
      background: #fff;
    }

    .ba-header__after {
      width: 551px;
      height: 56px;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 4px;
      font-family: 'Montserrat', sans-serif;
    }

    .ba-row {
      display: flex;
      width: 1105px;
      position: relative;
      border-top: 1px solid #e0e0e0;
      min-height: 263px;
    }

    .ba-cell-before {
      width: 551px;
      border-right: 2px solid #bdbdbd;
      padding: 40px 40px;
      background: #fff;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 20px;
    }

    .ba-cell__box {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 20px;
      width: 100%;
    }

    .comp-table__col-header {
      display: none;
    }

    .ba-cell__img {
      width: 230px;
      height: 230px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .ba-cell-after {
      width: 551px;
      border-left: 2px solid var(--blue);
      padding: 40px 40px;
      background: #fff;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 20px;
    }

    .ba-cell__title {
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .ba-cell__title--blue {
      color: var(--blue);
    }

    .ba-cell__body {
      font-size: 14px;
      font-weight: 400;
      color: #555;
      line-height: 1.7;
    }

    .ba-arrow-overlay {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--blue);
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ba-arrow-overlay img {
      display: none;
    }

    .ba-arrow-overlay::after {
      content: '';
      border-style: solid;
      border-width: 9px 0 9px 16px;
      border-color: transparent transparent transparent #fff;
      margin-left: 3px;
    }

    /* だけじゃない banner */
    .dakejanai-banner {
      width: fit-content;
      text-align: center;
      margin: 40px auto 40px;
      white-space: nowrap;
      padding: 24px 0;
    }

    .dakejanai-banner__text {
      font-size: 16px;
      font-weight: 700;
      color: #1a2a4a;
      white-space: nowrap;
    }

    .dakejanai-banner__text span {
      color: #1a2a4a;
    }

    .dakejanai-dotted {
      position: relative;
      color: #1a2a4a;
      font-size: 18px;
      letter-spacing: 4px;
      margin-left: 20px;
    }

    .dakejanai-dotted::before {
      content: '';
      position: absolute;
      top: -14px;
      left: 0;
      right: 0;
      height: 8px;
      background-image: radial-gradient(circle, var(--blue) 3px, transparent 3px);
      background-size: 22px 8px;
      background-repeat: repeat-x;
      background-position: 19px 0;
    }

    /* MAZZeCは section */
    .mazzec-wa {
      width: 100%;
      background: var(--blue-pale);
      padding: 0 0 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .mazzec-wa__badge {
      background: var(--blue);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      padding: 8px 32px;
      border-radius: 999px;
      letter-spacing: 2px;
      white-space: nowrap;
      margin-bottom: 24px;
    }

    .mazzec-wa__heading {
      width: 900px;
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      color: var(--blue);
      line-height: 1.5;
      letter-spacing: 1px;
      margin: 20px 0;
    }

    .mazzec-wa__sub {
      width: 800px;
      text-align: center;
      font-size: 16px;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.7;
      letter-spacing: 2px;
      margin-bottom: 40px;
    }

    .point-cards {
      width: 1440px;
      display: flex;
      justify-content: flex-start;
      padding: 0 170px;
      gap: 60px;
    }

    .point-card {
      width: 320px;
      height: auto;
      background: #fff;
      border: 1px solid var(--blue);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .point-card__top {
      background: #fff;
      padding: 24px 20px 16px;
      text-align: center;
      flex-shrink: 0;
    }

    .point-card__num {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 2px;
      margin-bottom: 12px;
      background: var(--blue);
      border-radius: 999px;
      padding: 4px 16px;
      display: inline-block;
    }

    .point-card__title {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.5;
    }

    .point-card__img-area {
      width: 254px;
      height: 141px;
      margin: 16px auto;
      flex-shrink: 0;
    }

    .point-card__img-area img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .point-card__body {
      padding: 0 20px 24px;
      flex: 1;
      background: #fff;
      text-align: center;
    }

    .point-card__desc {
      font-size: 14px;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.7;
    }

    /* ─── 機能 ─── */
    .features {
      position: relative;
      width: 100%;
      height: auto;
      background: #fff;
      padding: 60px 0 80px;
    }

    .features__inner {
      position: relative;
      width: 1109px;
      height: auto;
      margin: 0 auto;
    }

    .features__heading {
      width: 1109px;
      text-align: center;
      margin-bottom: 40px;
    }

    .features__heading-en {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 2px;
    }

    .features__heading-ja {
      font-size: 33px;
      font-weight: 700;
      color: var(--navy);
      margin-top: 8px;
      margin-bottom: 20px;
    }

    .features__grid {
      width: 1109px;
    }

    .features__row {
      display: flex;
      gap: 30px;
      margin-bottom: 30px;
    }

    .features__card {
      width: 253px;
      text-align: center;
    }

    .features__card-img {
      width: 253px;
      height: 160px;
      background: #d9d9d9;
      border-radius: 4px;
      overflow: hidden;
    }

    .features__card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .features__card-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 1.2px;
      margin-top: 18px;
      white-space: nowrap;
    }

    .features__card-body {
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      line-height: 24px;
      letter-spacing: 0.28px;
      margin-top: 8px;
      width: 232px;
    }

    /* ─── 料金 ─── */
    .pricing {
      position: relative;
      width: 100%;
      height: auto;
      background: var(--blue-pale);
      padding-bottom: 80px;
      padding-top: 80px;
    }

    .pricing .inner {
      height: auto !important;
    }

    /* Flow (導入の流れ) */
    .flow {
      width: 1099px;
      margin: 0 auto;
      background: #f4fdff;
    }

    .flow__heading {
      text-align: center;
      margin-bottom: 32px;
    }

    .flow__heading-en {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 2px;
    }

    .flow__heading-ja {
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      margin-top: 8px;
    }

    .flow__cards {
      display: flex;
      align-items: stretch;
      height: 241px;
      width: 1103px;
    }

    .flow-card {
      position: relative;
      height: 241px;
      flex-shrink: 0;
    }

    .flow-card--1 {
      width: 286px;
      background: #fff;
      border: 1px solid var(--blue);
      z-index: 1;
    }

    .flow-card--2 {
      margin-left: -31px;
      width: 327px;
      background-image: url(assets/flow-card-2.svg);
      background-size: 100% 100%;
      z-index: 2;
    }

    .flow-card--3 {
      margin-left: -36px;
      width: 301px;
      background-image: url(assets/flow-card-3.svg);
      background-size: 100% 100%;
      z-index: 3;
    }

    .flow-card--4 {
      margin-left: -20px;
      width: 276px;
      background-image: url(assets/flow-card-4.svg);
      background-size: 100% 100%;
      z-index: 4;
    }

    .flow-card__icon {
      position: absolute;
      top: 52px;
      left: 50%;
      transform: translateX(-50%);
    }

    .flow-card--1 .flow-card__icon {
      width: 48px;
      height: 32px;
    }

    .flow-card--2 .flow-card__icon {
      width: 60px;
      height: 43px;
    }

    .flow-card--3 .flow-card__icon {
      width: 74px;
      height: 49px;
      top: 44px;
    }

    .flow-card--4 .flow-card__icon {
      width: 48px;
      height: 57px;
      top: 36px;
    }

    .flow-card__title {
      position: absolute;
      top: 117px;
      left: 20px;
      right: 20px;
      font-size: 20px;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 1.2px;
      text-align: center;
      white-space: nowrap;
    }

    /* .flow-card--2 .flow-card__title — uses base centering */

    .flow-card__desc {
      position: absolute;
      top: 152px;
      left: 20px;
      right: 20px;
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      text-align: center;
      line-height: 24px;
      letter-spacing: 0.28px;
    }

    /* .flow-card--2 .flow-card__desc — uses base centering */

    .flow-arrow {
      display: none;
    }

    /* Fee boxes */
    .fee-boxes {
      width: 1099px;
      margin: 60px auto 0;
    }

    .fee-boxes__title {
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      color: var(--orange);
      margin-bottom: 8px;
      letter-spacing: 2px;
    }

    .fee-boxes__subtitle {
      text-align: center;
      font-size: 16px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 32px;
      letter-spacing: 1px;
    }

    .fee-box__tax {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 4px;
    }

    .fee-box--white .fee-box__tax {
      color: #888;
    }

    .fee-box__checks {
      display: flex;
      gap: 12px;
      margin-top: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .fee-check {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.85);
    }

    .fee-check::before {
      content: "✓ ";
    }

    .fee-box--white .fee-check {
      color: var(--navy);
    }

    .fee-gap--amp {
      font-size: 36px;
      background: var(--blue) !important;
      border: none !important;
      color: #fff !important;
      width: 56px !important;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      align-self: center;
      position: relative;
      z-index: 2;
      margin-left: -20px !important;
      margin-right: -20px !important;
    }

    .concept__link {
      color: var(--blue);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: #fffecc;
      text-decoration-thickness: 3px;
      text-underline-offset: 3px;
    }

    .fee-boxes__row {
      display: flex;
      gap: 0;
      align-items: stretch;
    }

    .fee-box {
      border-radius: 8px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fee-box--blue {
      width: 323px;
      height: 274px;
      background: var(--blue);
    }

    .fee-box--white {
      flex: 1;
      height: 274px;
      border: 2px solid var(--blue);
      background: #fff;
    }

    .fee-box__label {
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .fee-box--blue .fee-box__label {
      color: var(--yellow);
    }

    .fee-box--white .fee-box__label {
      color: var(--navy);
    }

    .fee-box__amount {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.1;
    }

    .fee-box--blue .fee-box__amount {
      font-size: 40px;
      color: #fff;
    }

    .fee-box--white .fee-box__amount {
      font-size: 36px;
      color: var(--blue);
    }

    .fee-box__sub {
      font-size: 12px;
      font-weight: 400;
      margin-top: 8px;
    }

    .fee-box--blue .fee-box__sub {
      color: rgba(255, 255, 255, 0.8);
    }

    .fee-box--white .fee-box__sub {
      color: #888;
    }

    .fee-gap {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--blue);
      font-weight: 700;
      flex-shrink: 0;
      align-self: center;
      position: relative;
      z-index: 2;
      margin-left: -20px;
      margin-right: -20px;
    }

    /* Comparison table */
    .comparison {
      max-width: 1101px;
      margin: 60px auto 0;
      background: #fff;
      border-radius: 16px;
      border: 1px solid #228bdc;
      padding: 40px;
    }

    .comparison__heading {
      text-align: center;
      margin-bottom: 32px;
    }

    .comparison__heading-en {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 2px;
    }

    .comparison__heading-ja {
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      margin-top: 8px;
    }

    .comparison__desc {
      text-align: center;
      font-size: 14px;
      color: var(--navy);
      line-height: 1.8;
      margin: 20px 0 28px;
    }

    .comp-table-wrap {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #dde4ef;
      max-width: 810px;
      margin: 0 auto;
    }

    .comp-table {
      width: 100%;
      border-collapse: collapse;
    }

    .comp-table th {
      height: 54px;
      padding: 0 12px;
      font-size: 15px;
      font-weight: 700;
      text-align: center;
    }

    .comp-table th:first-child {
      background: #2869b3;
      width: 220px;
    }

    .comp-table th.th-mazzec {
      background: #2869b3;
      color: var(--navy);
      border-left: 3px solid #ff881e;
      border-right: 3px solid #ff881e;
      border-top: 3px solid #ff881e;
    }

    .comp-table th.th-other {
      color: #fff;
      background: #2869b3;
      font-size: 14px;
      border: 1px solid #2869b3;
    }

    .comp-table th .logo-table-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .comp-table th .logo-table-wrap img {
      height: 30px;
      width: auto;
      aspect-ratio: 164 / 31;
    }

    .comp-table td {
      padding: 16px 12px;
      font-size: 14px;
      font-weight: 400;
      text-align: center;
      border-bottom: 1px solid #dde4ef;
    }

    .comp-table td:first-child {
      text-align: center;
      color: #fff;
      font-weight: 500;
      background: var(--navy);
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .comp-table td.td-mazzec {
      background: #fffce8;
      color: var(--navy);
      font-weight: 700;
      border-left: 3px solid #ff881e;
      border-right: 3px solid #ff881e;
    }

    .comp-table td.td-other {
      color: var(--navy);
      background: #fff;
      border-left: 1px solid #dde4ef;
    }

    .comp-table tbody tr:last-child td.td-mazzec {
      border-bottom: 3px solid #ff881e;
    }

    .check-icon {
      font-size: 18px;
    }

    /* ─── CONTACT ─── */
    .contact {
      position: relative;
      width: 100%;
      height: 1454px;
      background: linear-gradient(-49.83deg, #69bffc 6.18%, #228bdc 70.11%);
    }

    .contact__heading {
      position: absolute;
      left: 0;
      top: 88px;
      width: 1440px;
      text-align: center;
    }

    .contact__heading-en {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 2px;
    }

    .contact__heading-ja {
      font-size: 37px;
      font-weight: 700;
      color: #fff;
      margin-top: 12px;
      line-height: 1.3;
      letter-spacing: 1px;
    }

    .contact__heading-sub {
      font-size: 20px;
      font-weight: 500;
      color: #fff;
      margin-top: 12px;
      line-height: 1.7;
    }

    .contact__form-box {
      position: absolute;
      left: 290px;
      top: 334px;
      width: 860px;
      background: #fff;
      border-radius: 8px;
      padding: 64px;
    }

    .form-field {
      margin-bottom: 28px;
    }

    .form-field--split {
      display: flex;
      gap: 12px;
    }

    .form-field--split .form-input {
      flex: 1;
      min-width: 0;
    }

    .form-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .form-required {
      color: var(--orange);
      font-size: 12px;
      font-weight: 600;
    }

    .form-input {
      width: 100%;
      height: 44px;
      border: 1px solid #ccc;
      border-radius: 4px;
      padding: 0 14px;
      font-size: 14px;
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--navy);
      outline: none;
    }

    .form-input:focus {
      border-color: var(--blue);
    }

    .form-textarea {
      width: 100%;
      height: 146px;
      border: 1px solid #ccc;
      border-radius: 4px;
      padding: 12px 14px;
      font-size: 14px;
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--navy);
      outline: none;
      resize: vertical;
    }

    .form-textarea:focus {
      border-color: var(--blue);
    }

    .form-checkboxes {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .form-checkbox-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--navy);
      cursor: pointer;
    }

    .form-checkbox-item input[type="checkbox"] {
      width: 18px;
      height: 18px;
      accent-color: var(--blue);
    }

    .form-submit {
      width: 80px;
      height: 40px;
      background: #1a69c6;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      letter-spacing: 2px;
      margin-top: 16px;
      display: block;
    }

    .form-submit:hover {
      background: #1558a8;
    }

    .form-input--error {
      border-color: #cc0033;
    }

    .form-error-text {
      color: #cc0033;
      font-size: 12px;
      margin-top: 4px;
    }

    .form-notice--error {
      background: #fff0f0;
      color: #cc0033;
      border: 1px solid #cc0033;
      border-radius: 4px;
      padding: 12px 16px;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .form-submit--loading {
      position: relative;
      color: transparent;
      pointer-events: none;
    }

    .form-submit--loading::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 16px;
      height: 16px;
      margin: -8px 0 0 -8px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-top-color: #fff;
      border-radius: 50%;
      animation: form-spin 0.7s linear infinite;
    }

    @keyframes form-spin {
      to { transform: rotate(360deg); }
    }

    /* ─── FOOTER ─── */
    .footer {
      width: 100%;
      height: 44px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer__copy {
      font-size: 12px;
      font-weight: 500;
      color: #fff;
      font-family: 'Noto Sans JP', sans-serif;
    }

    /* ─── RESPONSIVE (iPhone 393px) ─── */
    @media (max-width: 768px) {
      body {
        min-width: 0;
        overflow-x: hidden;
      }

      .page-wrap {
        width: 100%;
      }

      /* Contain all section-level blocks */
      .mv,
      .cta-banner,
      .kadai,
      .service-overview,
      .concept,
      .tools,
      .features,
      .pricing,
      .contact,
      .footer {
        width: 100% !important;
        overflow: hidden;
        box-sizing: border-box;
      }

      /* Fix .inner containing block — PC CSS sets width:1440px */
      .inner {
        width: 100% !important;
        max-width: 393px !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      /* Inner blocks that need width reset */
      .point-cards,
      .ba-table,
      .ba-header,
      .ba-row,
      .ba-cell-before,
      .ba-cell-after,
      .flow,
      .fee-boxes,
      .comparison,
      .features__inner,
      .comp-table-wrap,
      .features__grid,
      .concept__title-wrap,
      .concept__subtitle,
      .tools__heading,
      .mazzec-wa__heading,
      .mazzec-wa__sub,
      .contact__heading,
      .contact__heading-ja,
      .contact__heading-sub {
        width: 100% !important;
        max-width: 393px;
        box-sizing: border-box;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
      }

      /* Reset absolute pos to static for inner headings */
      .concept__title-wrap,
      .concept__subtitle,
      .tools__heading,
      .mazzec-wa__heading,
      .mazzec-wa__sub,
      .contact__heading {
        position: static !important;
        padding: 0 20px;
      }

      .concept__title-wrap {
        padding-top: 80px;
      }

      .concept__subtitle {
        padding-top: 12px;
      }

      .mazzec-wa__heading {
        font-size: 18px !important;
        padding: 12px 20px 0;
      }

      .mazzec-wa__sub {
        font-size: 13px !important;
        padding: 8px 20px 0;
      }

      .header {
        width: 100%;
        left: 0;
        transform: none;
        height: 46px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      }

      .header__logo {
        top: 9px;
        height: 28px;
        width: 144px;
      }

      .header__logo img {
        height: 28px;
        width: 144px;
        margin: 0;
      }

      .header__nav {
        display: none;
      }

      .header__cta {
        width: 80px;
        height: 46px;
        right: 46px;
        padding: 0 6px;
      }

      .header__cta span {
        font-size: 12px;
        letter-spacing: 0;
      }

      .header__hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        position: absolute;
        right: 0;
        top: 0;
        width: 46px;
        height: 46px;
        background: #1a2a4a;
        border: none;
        cursor: pointer;
        padding: 0;
      }

      .header__hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
      }

      .mv {
        width: 100%;
        height: 650px;
      }

      .sp-br {
        display: inline;
      }

      .mv__title {
        font-size: 34px;
        top: 98px;
        letter-spacing: 3px;
        transform: translateX(-50%);
        white-space: normal;
        width: 355px;
        text-align: center;
        left: 50%;
        z-index: 2;
        margin-bottom: 16px;
      }

      .mv__sub {
        font-size: 14px;
        top: 210px;
        left: 50%;
        transform: translateX(-50%);
        letter-spacing: 1px;
        width: 236px;
        white-space: normal;
        text-align: center;
        z-index: 2;
        line-height: 1.7;
      }

      .mv__btn-orange {
        left: 75px;
        top: 276px;
        width: 243px;
        height: 50px;
        z-index: 2;
        transform: none;
      }

      .mv__btn-blue {
        left: 75px;
        top: 339px;
        width: 243px;
        height: 50px;
        z-index: 2;
      }

      .mv__btn-orange span,
      .mv__btn-blue span {
        font-size: 14px;
        letter-spacing: 1px;
      }

      .mv__person-right {
        left: 283px;
        top: 450px;
        width: 117px;
        height: 204px;
        z-index: 1;
      }

      .mv__title,
      .mv__sub {
        z-index: 2;
      }

      .mv__person-left {
        display: block;
        left: -7px;
        top: 468px;
        width: 111px;
        height: 182px;
        object-fit: cover;
        object-position: top center;
        z-index: 1;
      }

      .mv__app-screen {
        left: 29px;
        transform: none;
        top: 430px;
        width: 335px;
        height: 196px;
        z-index: 0;
      }

      .mv__app-ui {
        left: 60px;
        top: 442px;
        width: 273px;
        height: 152px;
        z-index: 1;
      }

      .cta-banner {
        width: 100%;
        height: auto;
        padding: 24px 20px;
      }

      .cta-banner--h138,
      .cta-banner--h143 {
        height: auto;
      }

      .cta-banner__inner {
        position: static;
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
      }

      .cta-banner__heading {
        font-size: 18px;
        letter-spacing: 0;
      }

      .cta-banner__sub {
        font-size: 13px;
        letter-spacing: 0;
      }

      .btn-orange-gradient {
        width: 100%;
        height: 50px;
      }

      .btn-orange-gradient span {
        font-size: 22px;
      }

      /* CTA バナー内のボタンは Figma に合わせて 80px */
      .cta-banner .btn-orange-gradient {
        height: 80px;
        font-size: 15px;
      }

      .kadai {
        width: 100%;
        height: auto;
        padding-bottom: 220px;
        margin-bottom: -220px;
        z-index: 2;
      }

      .kadai__bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
      }

      .kadai__heading {
        position: static;
        transform: none;
        padding-top: 40px;
        margin: 0 auto;
        width: 100%;
        text-align: center;
        display: block;
        white-space: normal;
      }

      .kadai__heading-sub {
        font-size: 20px;
        letter-spacing: 8px;
      }

      .kadai__heading-main {
        font-size: 30px;
        letter-spacing: 8px;
      }

      .kadai__cards {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        padding: 24px 16px 0;
        gap: 12px;
      }

      .kadai__card {
        width: calc(50% - 6px);
      }

      .kadai__card--1,
      .kadai__card--2,
      .kadai__card--3,
      .kadai__card--4 {
        height: auto;
      }

      .service-overview {
        width: 100%;
        height: auto;
        overflow: hidden;
        padding-top: 90px;
      }

      .service-overview__photo {
        display: none;
      }

      .service-overview__meishi {
        display: none;
      }

      .service-overview__top {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-top: 24px !important;
        width: 100%;
        align-items: center;
      }

      .service-overview__logo-area {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        padding-top: 0;
        width: 100%;
      }

      .service-overview__logo {
        height: 28px;
        width: auto;
      }

      .service-overview__slash {
        display: none;
      }

      .service-overview__title {
        position: static;
        padding: 16px 20px 0;
      }

      .service-overview__title-main {
        font-size: 18px;
        text-align: center;
        width: 100%;
      }

      .service-overview .text-kanji {
        font-size: 34px;
      }

      .service-overview__title-main strong {
        display: block;
        font-size: 34px;
        font-weight: 700;
      }

      .service-overview__underline {
        position: static;
        width: 100%;
        margin: 8px 0 24px;
      }

      .service-overview__cards {
        position: static;
        width: 100%;
        padding: 0 20px 0;
        margin-top: 24px;
      }

      .service-card {
        width: 100%;
        flex-direction: column;
        padding: 24px 20px;
        margin-bottom: 16px;
        min-height: auto;
        gap: 0;
      }

      .service-card__left {
        display: contents;
      }

      .service-card__illus {
        order: 1;
        width: 100%;
        height: auto;
        margin: 0 0 16px;
        object-fit: contain;
        border-radius: 0;
      }

      .service-card__badge {
        order: 2;
        margin-bottom: 12px;
      }

      .service-card__title {
        order: 3;
        font-size: 20px;
      }

      .service-card__underline {
        order: 4;
        width: 100%;
      }

      .service-card__desc {
        order: 5;
      }

      .concept {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
        isolation: isolate;
        padding-bottom: 40px;
      }

      .concept__bg {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: -1;
      }

      .concept__overlay {
        position: absolute;
        inset: 0;
      }

      .concept__ellipse {
        display: none;
      }

      .concept__blue-box {
        position: absolute !important;
        top: 0;
        left: 50%;
        transform: translateX(-50%) !important;
        width: 253px;
        height: 47px;
        z-index: 2;
      }

      .concept__title-wrap {
        position: static !important;
        top: auto !important;
        margin-top: 44px;
        padding: 0 20px;
        text-align: center;
      }

      .concept__title-line1 {
        font-size: 26px;
        line-height: 40px;
        letter-spacing: 2px;
      }

      .concept__title-line1 .concept__highlight {
        font-size: 32px;
      }

      .concept__title-line2 {
        font-size: 24px;
        letter-spacing: 1px;
      }

      .concept__subtitle {
        position: static !important;
        top: auto !important;
        margin-top: 16px;
        padding: 0 !important;
        width: 260px !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 18px;
        letter-spacing: 1px;
        text-align: center;
      }

      .concept__body {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: calc(100% - 40px);
        margin: 16px auto 0;
        text-align: center;
        font-size: 14px;
      }

      .concept__body p {
        font-size: 14px;
      }

      .concept__underline {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 80%;
        margin: 12px auto 0;
      }

      .tools {
        width: 100%;
        height: auto;
        padding-bottom: 40px;
      }

      .tools__heading {
        position: static;
        padding-top: 40px;
      }

      .tools__heading-main {
        font-size: 22px;
      }

      .ba-table {
        position: static;
        margin: 24px 0 0;
        width: 100%;
      }

      .ba-header {
        flex-direction: row;
        width: 100%;
        height: 40px;
      }

      .ba-header__before {
        width: 50%;
        height: 40px;
        font-size: 14px;
        border-radius: 8px 0 0 0;
      }

      .ba-header__after {
        width: 50%;
        height: 40px;
        font-size: 14px;
        border-radius: 0 8px 0 0;
      }

      .ba-header__arrow {
        display: block;
        width: 2px;
      }

      .ba-row {
        flex-direction: row;
        width: 100%;
        min-height: auto;
      }

      .ba-cell-before {
        width: 50%;
        border-right: 2px solid #bdbdbd;
        border-bottom: 1px solid #e0e0e0;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 8px;
        background: #F1F1F1;
      }

      .ba-cell__box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
        background: #fff;
        border: 1px solid #BDBDBD;
        border-radius: 8px;
        padding: 12px 8px;
      }

      .ba-cell-after {
        width: 50%;
        border-left: 2px solid var(--blue);
        border-bottom: 1px solid #e0e0e0;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 8px;
        background: #F4FDFF;
      }

      .ba-cell__img {
        width: 100%;
        height: auto;
        max-height: 120px;
        object-fit: contain;
      }

      .ba-cell__title {
        font-size: 13px;
        text-align: center;
      }

      .ba-cell__body {
        font-size: 11px;
        text-align: center;
      }

      .ba-arrow-overlay {
        display: flex;
        width: 36px;
        height: 36px;
      }

      .ba-arrow-overlay::after {
        border-width: 7px 0 7px 12px;
      }

      .dakejanai-banner {
        position: static;
        margin: 32px auto 0;
        width: 90%;
      }

      .dakejanai-banner__text {
        font-size: 16px;
        white-space: normal;
        line-height: 1.6;
      }

      .dakejanai-banner {
        white-space: normal !important;
        padding: 16px 0;
      }

      .mazzec-wa {
        position: static;
        width: 100% !important;
        max-width: none !important;
        height: auto;
        padding-bottom: 40px;
      }

      .mazzec-wa__badge {
        position: static;
        display: inline-block;
        margin: 32px auto 0;
        transform: none;
        left: auto;
      }

      .mazzec-wa__heading {
        position: static;
        width: 340px;
        margin: 16px auto 0;
        font-size: 20px;
      }

      .mazzec-wa__sub {
        position: static;
        width: 340px;
        margin: 12px auto 0;
        font-size: 14px;
      }

      .point-cards {
        position: static;
        flex-direction: column;
        padding: 24px 20px 0;
        gap: 16px;
      }

      .point-card {
        width: 100%;
        height: auto;
      }

      .point-card__body {
        flex: none;
      }

      .features {
        width: 100%;
        height: auto;
        padding: 0 0 40px;
      }

      .features__inner {
        position: static;
        width: 100%;
        height: auto;
      }

      .features__heading {
        position: static;
        padding-top: 24px;
        width: 100%;
        text-align: center;
      }

      .features__heading-en {
        font-size: 16px;
      }

      .features__heading-ja {
        font-size: 22px;
      }

      .features__grid {
        position: static;
        margin-top: 24px;
        padding: 0 20px;
      }

      .features__row {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        margin-bottom: 0;
      }

      .features__card {
        width: 160px;
      }

      .features__card-img {
        width: 160px;
        height: 100px;
      }

      .features__card-title {
        font-size: 14px;
        margin-top: 8px;
      }

      .features__card-body {
        font-size: 12px;
        width: 160px;
      }

      .pricing {
        width: 100%;
        height: auto;
        padding-bottom: 40px;
        padding-top: 40px;
        overflow: visible;
      }

      .pricing .inner {
        width: 100% !important;
        height: auto !important;
      }

      .flow {
        position: static;
        padding: 40px 20px 0;
        width: 100%;
      }

      .flow__cards {
        position: static;
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 24px;
      }

      .flow-card {
        position: static;
        width: 100%;
        height: auto;
        min-height: 140px;
        background-image: none !important;
        background: #fff !important;
        border: 1px solid var(--blue) !important;
        z-index: auto !important;
        display: grid;
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        align-content: center;
        padding: 20px 16px;
        gap: 6px 16px;
      }

      .flow-card--2,
      .flow-card--3,
      .flow-card--4 {
        margin-left: 0;
      }

      .flow-card__icon {
        position: static;
        transform: none;
        display: block;
        margin: 0 auto;
        grid-column: 1;
        grid-row: 1;
        left: auto !important;
        justify-self: center;
      }

      .flow-card__title {
        position: static;
        font-size: 14px;
        margin-top: 4px;
        text-align: center;
        grid-column: 1;
        grid-row: 2;
        white-space: normal;
        left: auto !important;
      }

      .flow-card__desc {
        position: static;
        font-size: 12px;
        line-height: 1.6;
        margin-top: 0;
        text-align: center;
        grid-column: 2;
        grid-row: 1 / 3;
        left: auto !important;
      }

      .fee-boxes {
        position: static;
        padding: 32px 20px 0;
        width: 100%;
      }

      .fee-boxes__row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
      }

      .fee-box--blue,
      .fee-box--white {
        width: 100%;
        max-width: 340px;
        height: auto;
        padding: 24px;
      }

      .fee-gap {
        display: none;
      }

      .fee-boxes__title {
        font-size: 18px;
      }

      .comparison {
        position: static;
        padding: 32px 16px 40px;
        width: 100%;
        max-width: none;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        margin: 0 !important;
      }

      .comp-table-wrap {
        padding: 0;
        overflow-x: visible;
        border-radius: 8px;
      }

      /* ── モバイル縦レイアウト ── */
      .comp-table {
        min-width: 0;
        width: 100%;
        display: block;
      }

      /* ヘッダー行を非表示 */
      .comp-table thead {
        display: none;
      }

      .comp-table tbody {
        display: block;
        width: 100%;
      }

      /* 各フィーチャー行を flex でラップ */
      .comp-table tbody tr {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        border-bottom: 1px solid #d0e8f5;
      }

      .comp-table tbody tr:last-child {
        border-bottom: none;
      }

      /* フィーチャー名：全幅ヘッダー（列ヘッダー行を除く） */
      .comp-table tbody tr:not(.comp-table__col-header) td:first-child {
        flex: 0 0 100%;
        background: var(--navy);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        padding: 8px 16px;
        text-align: center;
        box-sizing: border-box;
      }

      /* MAZZeC / 他社 の値セル：横並び50% */
      .comp-table td.td-mazzec,
      .comp-table td.td-other {
        flex: 0 0 50%;
        font-size: 13px;
        padding: 10px 8px;
        text-align: center;
        box-sizing: border-box;
      }

      /* 列ヘッダー行（tbody 最上部） */
      .comp-table__col-header {
        display: flex !important;
        flex-wrap: nowrap;
      }

      .comp-table .comp-table__col-header td {
        flex: 0 0 50%;
        max-width: 50%;
        overflow: hidden;
        background: #fff !important;
        color: var(--navy) !important;
        font-size: 12px;
        font-weight: 700;
        padding: 8px;
        text-align: center;
        box-sizing: border-box;
        border-bottom: none !important;
      }

      .comp-table .comp-table__col-header td.comp-col-mazzec {
        color: var(--blue) !important;
        border-right: 1px solid #d0e8f5;
      }

      .comp-col-logo { width: 110px; height: 15px; object-fit: contain; display: block; margin: 0 auto; }

      .comp-table .comp-table__col-header td.comp-col-other {
        color: #888 !important;
      }

      .comp-table th .logo-table-wrap img {
        height: 18px;
      }

      .comparison__heading-en {
        font-size: 16px;
      }

      .comparison__heading-ja {
        font-size: 20px;
      }

      .comparison__desc {
        font-size: 13px;
        text-align: center;
        margin: 16px 0 20px;
      }

      .contact {
        width: 100%;
        height: auto;
        padding-bottom: 60px;
        background: linear-gradient(145deg, #69bffc 16%, #228bdc 84%);
      }

      .contact__heading {
        position: static;
        padding-top: 40px;
      }

      .contact__heading-en {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
      }

      .contact__heading-ja {
        font-size: 22px;
        letter-spacing: 0;
        color: #fff;
      }

      .contact__heading-sub {
        font-size: 13px;
        padding: 0 20px;
        color: #fff;
      }

      .contact__form-box {
        position: static;
        margin: 32px 20px 0;
        width: calc(100% - 40px);
        padding: 32px 20px;
        background: #fff;
      }

      .footer {
        width: 100%;
      }

      .footer__copy {
        font-size: 11px;
      }
    }