/* =============================================================
 * MT1 page (PUDU MT1)
 * Mobile first (~ 767px) / PC layout from 768px
 * Scope: body[data-page="mt1"]
 * ============================================================= */

.gPankuzu_inner {
  margin: 0 auto;
}

.prodNav_title {
  width: unset;
  min-width: unset;
  margin-bottom: 0;
}

.prodNav_title-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.prodNav_title-productName {
  color: var(--color-black);
  font-size: 12px;
  font-weight: 300;
  line-height: 180%;
  border: 1px solid var(--color-black);
  padding: 0 8px;
}

.mt1 {
  width: 100%;
  overflow-x: hidden;
  padding-top: 35px;
}

.mt1 :where(h1, h2, h3, h4, h5, h6, p, figure, blockquote) {
  margin: 0;
}
.mt1 :where(ul, ol) {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mt1 :where(img, picture, svg, video) {
  display: block;
  max-width: 100%;
  height: auto;
}
.mt1 :where(*, *::before, *::after) {
  box-sizing: border-box;
}

/* Utility: line break shown only on SP (< 768px) */
.br-sp {
  display: inline;
}

/* Utility: line break shown only on PC (>= 768px) */
.br-pc {
  display: none;
}

/* -----------------------------------------------------------
 * Shared: contact icon (inline SVG)
 * Colors are controlled via CSS custom properties so each button
 * can override them on :hover without swapping the SVG.
 * ----------------------------------------------------------- */
.contact-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.contact-icon__bg {
  fill: var(--contact-icon-bg, var(--color-gray-200));
  transition: fill 0.15s ease;
}

.contact-icon__arrow {
  stroke: var(--contact-icon-arrow, var(--color-white));
  transition: stroke 0.15s ease;
}

/* -----------------------------------------------------------
 * Shared: section title with triple stripe accent
 * ----------------------------------------------------------- */
.section-title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  line-height: 180%;
  padding-left: 30px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 2px;
  height: 36px;
  border-radius: 999px;
  background-color: var(--color-green);
  box-shadow:
    4px 0 0 var(--color-light-green),
    8px 0 0 var(--color-orange);
}


/* -----------------------------------------------------------
 * Hero
 * ----------------------------------------------------------- */
.mt1-hero {
  /* position: relative; */
  width: 100%;
}

.mt1-hero img {
  object-fit: cover;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* -----------------------------------------------------------
 * Intro (subtitle + models + contact)
 * ----------------------------------------------------------- */
.mt1-intro {
  padding: 32px 20px 60px;
  margin: 0 auto;
  max-width: 1080px;
}

.mt1-intro__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-light-green);
  margin-bottom: 20px;
}

.mt1-intro__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-foreground);
  line-height: 160%;
  margin-bottom: 20px;
}

.mt1-intro__models {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #f5f5f5;
  column-gap: 8px;
  padding: 10px 24px;
  margin-bottom: 32px;
}

.mt1-intro__models-label {
  font-size: 14px;
  font-weight: 600;
}

.mt1-intro__models-list {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mt1-intro__models-list .sep {
  font-size: 16px;
  font-weight: 300;
}

.mt1-intro__model {
  color: var(--color-light-green);
  font-weight: 600;
}

/* -----------------------------------------------------------
 * Video banner
 * ----------------------------------------------------------- */
.mt1-video {
  padding: 0 20px;
  max-width: 1080px;
  margin: 0 auto 60px;
}

.mt1-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

.mt1-video__frame .mejs__container {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
}

.mt1-video__frame .mejs__mediaelement video,
.mt1-video__frame .mejs__overlay,
.mt1-video__frame .mejs__poster {
  width: 100% !important;
  height: 100% !important;
}

/* -----------------------------------------------------------
 * 4 in 1 features
 * ----------------------------------------------------------- */
.mt1-features {
  padding: 0 20px 120px;
  max-width: 1080px;
  margin: 0 auto;
}

.mt1-features__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.point {
  display: grid;
  grid-template-areas:
    "header"
    "copy"
    "media";
  grid-template-columns: 1fr;
  background-color: var(--color-white);
}

.point__header {
  grid-area: header;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
}

.point__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light-green);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  padding: 0 16px;
  height: 100%;
}

.point__title {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.point__title h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.point__title span {
  font-size: 12px;
  font-weight: 300;
}

.point__copy {
  grid-area: copy;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.point__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 160%;
}

.point__media {
  grid-area: media;
}

.point__image {
  display: block;
  width: 100%;
  height: auto;
}

/* -----------------------------------------------------------
 * Scenes
 * ----------------------------------------------------------- */
.mt1-scenes {
  padding: 40px 20px 80px;
  background-color: var(--color-background);
}

.mt1-scenes__contents {
  max-width: 1080px;
  margin: 0 auto;
}

.mt1-scenes__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-blue);
  text-align: center;
  margin-bottom: 32px;
  line-height: 140%;
}

.mt1-scenes__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.scene {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  align-items: center;
}

.scene__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  text-align: center;
}

.scene__image {
  display: block;
  width: 100%;
  height: auto;
}

.scene__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 160%;
}

/* -----------------------------------------------------------
 * Use Cases (nested inside .mt1-scenes)
 * ----------------------------------------------------------- */
.mt1-use-cases {
  margin-top: 60px;
}

.mt1-use-cases__title {
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 180%;
  margin-bottom: 32px;
}

.mt1-use-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.use-case {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  border: 1px solid #cccccc;
}

.use-case__image {
  display: block;
  width: 100%;
  aspect-ratio: 172 / 94;
  object-fit: cover;
}

.use-case__label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
  padding: 4px 0;
}

/* -----------------------------------------------------------
 * Stats
 * ----------------------------------------------------------- */
.mt1-stats {
  padding: 120px 20px 0px 20px;
  margin: 0 auto 120px;
}

.mt1-stats__row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mt1-stats__chart {
  display: block;
  width: 100%;
  height: auto;
}

.mt1-stats__copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mt1-stats__lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
}

.mt1-stats__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}

.mt1-stats__claim {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--color-light-green) 10%, transparent);
  padding: 10px 18px;
  color: var(--color-light-green);
}

.mt1-stats__claim-label {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  margin-right: 4px;
}

.mt1-stats__claim-label-top {
  font-size: 16px;
  font-weight: 600;
  padding-left: 2px;
  letter-spacing: 10%;
  color: var(--color-dark-green);
  line-height: 140%;
  white-space: nowrap;
}

.mt1-stats__claim-label-bottom {
  font-size: 28px;
  font-weight: 600;
  line-height: 140%;
  white-space: nowrap;
}

.mt1-stats__claim-pct {
  font-size: 68px;
  font-weight: 600;
  line-height: 140%;
  white-space: nowrap;
}

.mt1-stats__claim-suffix {
  font-size: 48px;
  font-weight: 600;
  line-height: 140%;
  white-space: nowrap;
  margin-top: 10px;
}

/* -----------------------------------------------------------
 * Flow
 * ----------------------------------------------------------- */
.mt1-flow {
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  margin: 0 auto 120px;
}

.mt1-flow__main {
  padding: 0px 20px;
}

.mt1-flow__row {
  margin-bottom: 60px;
}

.mt1-flow__row .section-title {
  margin-bottom: 60px;
}

.mt1-flow__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  border: 1px solid color-mix(in srgb, var(--color-blue) 30%, transparent);
  border-radius: 999px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 600;
}

.step__title {
  font-size: 20px;
  font-weight: 600;
}

.step__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 160%;
}

/* Highlight variant: steps 3 and 5 sit in a tinted box, indented */
.step__highlight {
  background-color: var(--color-background);
  padding: 16px;
  margin: 28px 0px;
}

/* Dotted connector between steps */
.step__dots {
  margin-left: 32px;
  border-left: 6px dotted var(--color-gray-200);
}

.dots-3 {
  height: 34px;
}

.step-with-dots {
  display: flex;
  gap: 16px;
}

.step-with-dots .step {
  flex: 1;
}

.mt1-contact-btn-container {
  padding: 0 20px;
}

/* -----------------------------------------------------------
 * Support
 * ----------------------------------------------------------- */
.mt1-support {
  max-width: 1080px;
  margin: 0 auto 120px;
}

.mt1-support .section-title {
  margin-bottom: 60px;
}

.mt1-support__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0px 20px;
}

.mt1-support__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mt1-support__header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mt1-support__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--color-light-green) 10%, transparent);
  color: var(--color-light-green);
}

.mt1-support__icon svg {
  width: 32px;
  height: 32px;
}

.mt1-support__title {
  font-size: 20px;
  font-weight: 600;
}

.mt1-support__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 160%;
}

/* -----------------------------------------------------------
 * Options
 * ----------------------------------------------------------- */
.mt1-options {
  max-width: 1080px;
  margin: 0 auto 120px;
}

.mt1-options .section-title {
  margin-bottom: 20px;
}

.mt1-options__list-container {
  padding: 0 20px;
}

.mt1-options__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
  background-color: #f5f5f5;
  font-size: 16px;
  font-weight: 600;
}

.mt1-options__item {
  position: relative;
  padding-left: 12px;
}

.mt1-options__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-light-green);
}

/* -----------------------------------------------------------
 * Compare
 * ----------------------------------------------------------- */
.mt1-compare {
  max-width: 1080px;
  margin: 0 auto 120px;
}

.mt1-compare .section-title {
  margin-bottom: 20px;
}

.mt1-compare__scroll {
  overflow-x: auto;
  padding: 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE（一応） */
}

.mt1-compare__scroll::-webkit-scrollbar {
  display: none;
}

.mt1-compare__inner {
  min-width: 600px;
}

.mt1-compare__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 12px;
}

.mt1-compare__card {
  display: flex;
  flex-direction: column;
}

.mt1-compare__card-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.mt1-compare__card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-light-green);
}

.mt1-compare__rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mt1-compare__row {
  background-color: #f5f5f5;
  padding: 12px;
}

.mt1-compare__row-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mt1-compare__row-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mt1-compare__row-value {
  font-size: 14px;
  font-weight: 300;
}

/* =============================================================
 * ヘッダーのみ640pxで切り替え
 * ============================================================= */
@media (min-width: 640px) {
  body[data-page="mt1"] {
    min-width: unset;
  }

  .prodNav_title-container {
    gap: 32px;
    margin-bottom: 0;
  }

  .prodNav_title-productName {
    font-size: 16px;
    padding: 4px 20px;
  }
}
/* =============================================================
 * PC (>= 768px)
 * ============================================================= */
@media (min-width: 768px) {

  .br-sp {
    display: none;
  }

  .br-pc {
    display: inline;
  }

  .contact-icon {
    width: 20px;
    height: 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-title::before {
    top: 11px;
  }

  /* Intro */
  .mt1-intro {
    padding: 100px 20px;
    text-align: center;
  }

  .mt1-intro__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .mt1-intro__text {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .mt1-intro__models {
    display: inline-flex;
    justify-content: center;
    padding: 23px 28px;
    margin-bottom: 52px;
    column-gap: 40px;
  }

  .mt1-intro__models-label {
    font-size: 20px;
  }

  .mt1-intro__models-list {
    gap: 20px;
  }

  .mt1-intro__models-list .sep {
    font-size: 20px;
  }

  .mt1-intro__model {
    font-size: 20px;
  }

  /* Video */
  .mt1-video {
    margin-bottom: 140px;
  }

  /* Features - alternating horizontal layout */
  .mt1-features {
    padding: 0 20px 140px;
  }

  .mt1-features__list {
    gap: 80px;
  }

  .point {
    grid-template-areas:
      "header media"
      "copy media";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 40px;
  }

  /* Alternating: even points have image on the LEFT, content on the RIGHT */
  .point:nth-child(even) {
    grid-template-areas:
      "media header"
      "media copy";
  }

  .point__num {
    font-size: 18px;
    padding: 0 18px;
  }

  .point__title {
    padding: 0 24px;
    height: 77px;
  }

  .point__title h3 {
    font-size: 20px;
    line-height: 160%;
  }

  .point__title span {
    font-size: 14px;
    line-height: 160%;
  }

  .point__copy {
    padding: 32px 20px 0px;
    gap: 8px;
  }

  .point__text {
    font-size: 16px;
  }


  /* Scenes - 3 columns on PC */
  .mt1-scenes {
    padding: 56px 32px 80px;
  }

  .mt1-scenes__contents {
    padding: 0 20px;
  }

  .mt1-scenes__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .mt1-scenes__grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
  }

  .scene {
    flex: 1 1 325px;
    min-width: 325px;
    max-width: 325px;
  }

  .scene__text {
    font-size: 16px;
  }

  /* Use Cases - 3 columns on PC */
  .mt1-use-cases {
    margin-top: 80px;
  }

  .mt1-use-cases__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .use-case__image {
    aspect-ratio: 333 / 180;
  }

  .use-case__label {
    font-size: 20px;
  }

  /* Stats - 2 columns on PC */
  .mt1-stats {
    max-width: 1080px;
    padding: 140px 20px 0px 20px;
    margin: 0 auto 140px;
  }

  .mt1-stats__row {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }

  .mt1-stats__chart {
    flex: 1 1 0;
  }

  .mt1-stats__copy {
    flex: 1 1 0;
    gap: 40px;
  }

  .mt1-stats__lead {
    font-size: 32px;
  }

  .mt1-stats__body {
    font-size: 16px;
  }

  .mt1-stats__claim {
    padding: 10px 32px;
    gap: 8px;
  }

  .mt1-stats__claim-label {
    margin-right: 8px;
    margin-top: 14px;
  }

  .mt1-stats__claim-label-top {
    font-size: 28px;
    margin-bottom: -8px;
    padding-left: 4px;
  }

  .mt1-stats__claim-label-bottom {
    font-size: 44px;
  }

  .mt1-stats__claim-pct {
    font-size: 120px;
  }

  .mt1-stats__claim-suffix {
    font-size: 72px;
    margin-top: 24px;
  }

  /* Flow */
  .mt1-flow {
    padding: 0px 20px;
  }

  .mt1-flow__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 108px;
    margin-bottom: 40px;
  }

  .mt1-flow .section-title {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .mt1-flow__main {
    padding: 0px;
    flex: 1 1 0;
  }

  .step__head {
    gap: 20px;
  }

  .step__num {
    font-size: 16px;
  }

  .step__title {
    font-size: 24px;
  }

  .step__text {
    font-size: 16px;
  }

  /* Support - 2 columns */
  .mt1-support {
    padding: 0 20px;
    margin-bottom: 140px;
  }

  .mt1-support__grid {
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 120px;
  }

  .mt1-support__item {
    flex: 1 1 0;
  }

  .mt1-support__icon {
    width: 60px;
    height: 60px;
  }

  .mt1-support__icon svg {
    width: 36px;
    height: 36px;
  }

  .mt1-support__title {
    font-size: 24px;
  }

  .mt1-support__text {
    font-size: 16px;
  }

  /* Options */
  .mt1-options {
    padding: 0px 20px;
    margin-bottom: 140px;
  }

  .mt1-options .section-title {
    margin-bottom: 40px;
  }

  .mt1-options__list-container {
    padding: 0px;
  }

  .mt1-options__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    font-size: 20px;
    gap: 24px;
  }

  .mt1-options__item {
    padding-left: 12px;
  }

  .mt1-options__item::before {
    width: 5px;
    height: 5px;
  }

  /* Compare */
  .mt1-compare {
    padding: 0 20px;
    margin-bottom: 140px;
  }

  .mt1-compare__scroll {
    overflow-x: visible;
    padding: 0;
  }

  .mt1-compare__inner {
    min-width: 0;
  }

  .mt1-compare__cards {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    column-gap: 40px;
    max-width: unset;
  }

  .mt1-compare__card:nth-child(1) {
    grid-column: 2;
  }

  .mt1-compare__card:nth-child(2) {
    grid-column: 3;
  }

  .mt1-compare__card-img {
    height: auto;
    margin-bottom: 16px;
  }

  .mt1-compare__card-name {
    font-size: 20px;
    font-weight: 600;
  }

  .mt1-compare__rows {
    gap: 4px;
  }

  .mt1-compare__row {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    column-gap: 40px;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
  }

  .mt1-compare__row-label {
    font-size: 16px;
    margin-bottom: 0;
  }

  .mt1-compare__row-values {
    display: contents;
  }

  .mt1-compare__row-value {
    font-size: 16px;
  }

}
