/* ========================================
  タブレット：FVより下のPCデザインを縮小
======================================== */

@media screen and (min-width: 768px) and (max-width: 1060px) {

  html,
  body {
    overflow-x: hidden;
  }

  .tablet-scale-area {
    width: 1060px;
    max-width: none;
    zoom: var(--top-tablet-section-scale, 1);
  }
}

/* 共通レイアウト・見出し・ボタン */
body {
  color: var(--maeq-navy02);
  font-family: "Noto Sans JP", sans-serif;
}

.container {
  width: min(var(--site-base-container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading>span {
  display: block;
  margin-bottom: 8px;
  color: var(--maeq-navy01);
  font-size: 15px;
  font-weight: var(--w-bold);
  letter-spacing: .12em;
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: var(--w-bold);
  line-height: 1.45;
}

.section-heading p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.8;
}

.section-heading--light,
.section-heading--light>span {
  color: var(--maeq-white);
}

.cta-button,
.page-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--maeq-navy02);
  border-radius: 100px;
  color: var(--maeq-navy02);
  font-weight: var(--w-bold);
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 4px var(--maeq-gray07);
  transition: opacity .15s ease-out, box-shadow .15s ease-out, transform .15s ease-out;
}

.cta-button {
  flex-direction: column;
  width: 100%;
  min-height: 56px;
  padding: 9px 38px 9px 22px;
}

.cta-button::after,
.page-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.cta-button small {
  font-size: 12px;
}

.cta-button strong {
  font-size: 18px;
  font-weight: var(--w-bold);
}

.cta-button--navy {
  color: var(--maeq-white);
  background: var(--maeq-navy02);
}

.cta-button--yellow {
  background: var(--maeq-yellow);
}

.page-button {
  width: min(350px, 100%);
  min-height: 52px;
  margin: 40px auto 0;
  padding: 10px 45px;
  background: var(--maeq-white);
  font-size: 16px;
}

.cta-button:hover,
.page-button:hover {
  opacity: .7;
}

.cta-button:active,
.page-button:active {
  opacity: 1;
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .container {
    width: calc(100% - 34px);
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .section-heading p {
    font-size: 14px;
  }
}



@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ========================================
  黄色い平行四辺形の下線
======================================== */

.maeq-highlight {
  position: relative;
  z-index: 0;

  display: inline-block;

  color: var(--maeq-navy02);
  font-style: normal;
}

.maeq-highlight::before {
  content: "";

  position: absolute;
  z-index: -1;
  right: 23%;
  bottom: -7px;
  left: 22%;

  height: 16px;

  background-color: var(--maeq-yellow);

  transform: skewX(-18deg);
}

@media screen and (max-width: 767px) {
  .maeq-highlight::before {
    right: 12px;
    bottom: -6px;
    left: 12px;

    height: 12px;
  }
}

/* ========================================
  黄色い下線付きタイトル
======================================== */

.maeq-line-title {
  position: relative;
  z-index: 0;

  display: inline-block;

  margin: 0;

  color: var(--maeq-black01);
  font-size: 46px;
  font-weight: var(--w-bold);
  line-height: 1.3;
}

.maeq-line-title::before {
  content: "";

  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 2px;
  left: 0;

  height: 16px;

  background-color: var(--maeq-yellow);

  transform: skewX(-18deg);
}

@media screen and (max-width: 767px) {
  .maeq-line-title {
    font-size: 32px;
  }

  .maeq-line-title::before {
    bottom: 1px;

    height: 10px;
  }
}

/* ========================================
  共通の横長ピル型ボタン
======================================== */

.maeq-pill-button {
  display: flex;
  align-items: center;

  box-sizing: border-box;
  width: 350px;
  height: 72px;

  border: 2px solid var(--maeq-navy02);
  border-radius: 100px;

  font-weight: var(--w-bold);
  text-decoration: none;
}

/* ========================================
  スマホのみ改行
======================================== */
  .br_sp {
	display: none;
  }

@media screen and (max-width: 440px) {
  .br_sp {
	display: block;
  }
}

/* ========================================
  PCのみ改行
======================================== */
@media screen and (max-width: 440px) {
  .br_pc {
	display: none;
  }
}


/* ------------------------------------------------------------------------- */


/* ========================================
  FV
======================================== */

.fv {
  position: relative;

  min-height: 550px;
  margin-top: var(--header-height);

  overflow: visible;
  background-color: var(--maeq-bg01);
}

.fv__stage {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;

  width: 1512px;
  height: 550px;

  transform: translateX(-50%) scale(1);
  transform-origin: top center;
}

/* 1400〜1511px */

@media screen and (min-width: 1400px) and (max-width: 1511px) {
  .fv {
    min-height: 506px;
  }

  .fv__stage {
    transform: translateX(-50%) scale(0.92);
  }
}


/* 1300〜1399px */

@media screen and (min-width: 1300px) and (max-width: 1399px) {
  .fv {
    min-height: 473px;
  }

  .fv__stage {
    transform: translateX(-50%) scale(0.86);
  }
}


/* 1200〜1299px */

@media screen and (min-width: 1200px) and (max-width: 1299px) {
  .fv {
    min-height: 435px;
  }

  .fv__stage {
    transform: translateX(-50%) scale(0.79);
  }
}


/* 1100〜1199px */

@media screen and (min-width: 1100px) and (max-width: 1199px) {
  .fv {
    min-height: 396px;
  }

  .fv__stage {
    transform: translateX(-50%) scale(0.72);
  }
}


/* 1000〜1099px */

@media screen and (min-width: 1000px) and (max-width: 1099px) {
  .fv {
    min-height: 363px;
  }

  .fv__stage {
    transform: translateX(-50%) scale(0.66);
  }
}


/* 900〜999px */

@media screen and (min-width: 900px) and (max-width: 999px) {
  .fv {
    min-height: 325px;
  }

  .fv__stage {
    transform: translateX(-50%) scale(0.59);
  }
}


/* 768〜899px */

@media screen and (min-width: 768px) and (max-width: 899px) {
  .fv {
    min-height: 275px;
  }

  .fv__stage {
    transform: translateX(-50%) scale(0.5);
  }
}

@media screen and (min-width: 768px) {
  .fv::before {
    content: "";

    position: absolute;
    z-index: 0;
    top: calc(var(--header-height) * -1);
    right: 0;
    left: 0;

    height: var(--header-height);

    background-color: var(--maeq-bg01);

    pointer-events: none;
  }
}

/* ========================================
  中央のメインビジュアル
======================================== */

.fv__visual {
  position: absolute;
  z-index: 2;
  top: -30px;
  left: 543px;

  width: 682px;
  height: 559px;
}

.fv__visual>img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ========================================
  ITトレンドのバッジ
======================================== */

.fv__badge-wrap {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 100px;

  width: 102px;
  height: 124px;
}

.fv__badge {
  display: block;

  width: 102px;
  height: 124px;

  object-fit: cover;
}

.fv__badge-wrap span {
  position: absolute;
  top: 6px;
  right: 4px;

  color: var(--maeq-black01);
  font-size: 7px;
  line-height: 1;
}

.fv__sp-it-note {
  display: none;
}


/* ========================================
  FV左側
======================================== */

.fv__content {
  position: absolute;
  z-index: 3;
  top: 80px;
  left: 67px;

  width: 504px;
}


/* FVタイトル */

.fv__title {
  width: 441px;
  margin-right: auto;
  margin-left: auto;
}

.fv__title img {
  display: block;
  width: 100%;
}

/* ========================================
  FVのCTA全体
======================================== */

.fv__actions {
  display: grid;
  grid-template-columns: 230px 264px;
  align-items: end;
  gap: 10px;

  width: 504px;
  margin-top: 24px;
}


/* ========================================
  各CTAのラッパー
======================================== */

.fv-cta-wrap {
  position: relative;

  display: flex;
  align-items: flex-end;

  height: 86px;
}

.fv-cta {
  box-sizing: border-box;
}


/* ========================================
  ボタン上部の吹き出し
======================================== */

/* 吹き出し画像共通 */

.fv-cta-bubble-img {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;

  display: block;
  height: 36px;

  transform: translateX(-50%);
}

/* ========================================
  CTAボタン共通
======================================== */

.fv-cta {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 60px;

  border: 2px solid var(--maeq-navy02);
  border-radius: 100px;

  font-weight: var(--w-bold);
  text-decoration: none;

  box-shadow:
    0 2px 1.75px var(--maeq-gray07);
}

.fv-cta:hover {
  opacity: 0.7;
}

.fv-cta:active {
  opacity: 1;
  box-shadow: none;
}

.fv-cta,
.fv-cta-bubble,
.fv-cta__download-text {
  letter-spacing: 0;
}


/* ========================================
  お問い合わせボタン
======================================== */

.fv-cta--contact {
  gap: 12px;

  padding:
    12px 16px 12px 24px;

  color: var(--maeq-white);
  background-color: var(--maeq-navy02);
}

.fv-cta--contact>strong {
  color: var(--maeq-white);
  font-size: 18px;
  font-weight: var(--w-semibold);
  letter-spacing: 0;
  line-height: 1;
}


/* ========================================
  資料ダウンロードボタン
======================================== */

.fv-cta--download {
  gap: 12px;

  padding:
    12px 16px 12px 24px;

  color: var(--maeq-navy02);
  background-color: var(--maeq-yellow);
}

/* ========================================
  左側のアイコン
======================================== */

.fv-cta__icon {
  display: block;
  flex: 0 0 auto;

  object-fit: contain;
}

.fv-cta__icon--mail {
  width: 36px;
  height: 41px;
}

.fv-cta__icon--download {
  width: 36px;
  height: 40.449px;
}


/* お問い合わせの文字 */

.fv-cta>strong {
  font-size: 18px;
  font-weight: var(--w-semibold);
  line-height: normal;
  white-space: nowrap;
}


/* ========================================
  右向き矢印
======================================== */

.fv-cta__arrow {
  display: block;
  flex: 0 0 10px;

  width: 10px;
  margin-left: auto;

  object-fit: contain;
}


/* ========================================
  資料ダウンロードの文字
======================================== */

.fv-cta__download-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.fv-cta__download-text small {
  display: flex;
  align-items: center;
  color: var(--maeq-navy02);
  font-size: 12px;
  font-weight: var(--w-bold);
  line-height: 1;
  white-space: nowrap;
}


/* 「無料」ラベル */

.fv-cta__download-text small b {
  margin-right: 0;
  padding: 4px;

  border-radius: 3px;

  color: var(--maeq-white);
  background-color: var(--maeq-navy02);

  font-weight: var(--w-semibold);
  line-height: 1;
}


/* 「資料ダウンロード」 */

.fv-cta__download-text strong {
  width: 144px;
  color: var(--maeq-navy02);
  font-size: 18px;
  font-weight: var(--w-bold);
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  margin-top: -2px;
}


/* ========================================
  FV右下の強み・注釈
======================================== */

.fv__strength-area {
  position: absolute;
  right: 100px;
  bottom: 10px;
  z-index: 4;

  width: 370px;
}


/* 3つの強み */

.fv__strengths {
  display: flex;
  gap: 5px;
}

.fv__strengths img {
  display: block;

  width: 120px;
  height: 120px;

  object-fit: contain;
}


/* 強み下の注釈 */

.fv__notes {
  display: flex;
  flex-direction: column;
  gap: 2px;

  width: max-content;
  margin-top: 4px;
  margin-left: 48px;

  color: var(--maeq-white);
  font-size: 10px;
  font-weight: var(--w-regular);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.fv__notes p {
  margin: 0;
}


/* ========================================
  FV下部の幾何学パターン
======================================== */

.fv__pattern {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 45px;

  background: url(../img/common/deco_footer.png);
  background-repeat: repeat-x;
  background-position: top right;
  background-size: cover;

  overflow: hidden;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  /* ========================================
    スマホ版FV
  ======================================== */

  .fv {
    display: flex;
    flex-direction: column;

    min-height: 588px;
    padding-bottom: 45px;
  }

  .fv__stage {
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: auto;

    transform: none;
  }

  /* メインビジュアル */

  .fv__visual {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    order: 1;

    width: 100%;
    height: auto;
    margin-top: 32px;
  }

  .fv__visual>img:first-child {
    display: block;

    width: 100%;
    height: auto;
  }


  /* ITトレンドのバッジ */

  .fv__badge-wrap {
    top: 10px;
    right: 10px;
    left: auto;

    width: 60px;
    height: 73px;
  }

  .fv__badge {
    width: 60px;
    height: auto;
  }

  .fv__badge-wrap span {
    top: 3px;
    right: 1px;

    font-size: 6px;
  }

  .fv__pattern,
  .fv__pattern img {
    height: 45px;
  }

  .fv__sp-it-note {
    display: block;

    margin: 8px 0 0;

    color: var(--maeq-navy02);
    font-size: 7px;
    font-weight: var(--w-regular);
    letter-spacing: 0;
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
  }

  .fv__badge-wrap span {
    top: 3px;
    right: 1px;

    font-size: 0;
  }

  .fv__badge-wrap span::before {
    content: "※";

    font-size: 6px;
    line-height: 1;
  }


  /* FVタイトル */

  .fv__content {
    position: relative;
    top: auto;
    left: auto;
    order: 2;

    width: 100%;
    padding: 6px 31px 10px;
  }

  .fv__title {
    width: 100%;
    margin-top: 0;
  }


  /* スマホではFV内CTAを非表示 */

  .fv__actions {
    display: none;
  }


  /* スマホでは3つの強みを非表示 */

  .fv__strength-area {
    display: none;
  }


  /* 下部の幾何学パターン */

  .fv__pattern {
    height: 45px;
  }
}

/* ========================================
  導入企業
======================================== */

.company-slider-section {
  width: 100%;
  height: 287px;
  padding-top: 26px;

  overflow: hidden;

  background-color: var(--maeq-white);

  box-sizing: border-box;
}


/* ========================================
  説明文＋実績バッジ
======================================== */

.company-slider-heading {
  display: grid;
  grid-template-columns: max-content 421px;
  align-items: center;
  justify-content: center;
  gap: 30px;

  width: fit-content;
  max-width: 100%;
  height: 65px;
  margin: 0 auto 34px;
}

.company-slider-heading__text {
  color: var(--maeq-black01);

  font-size: 18px;
  font-weight: var(--w-medium);
  line-height: 1.5;
  white-space: nowrap;
}

.company-slider-heading__badge {
  display: block;

  width: 421px;
  height: auto;

  object-fit: contain;
}


/* ========================================
  導入企業ロゴ：無限ループ
======================================== */

.company-logo-loop {
  width: 100%;
  height: 40px;

  overflow: hidden;
}

.company-logo-loop--left {
  margin-top: 32px;
}


/* 動かすトラック */

.company-logo-loop__track {
  display: flex;

  width: max-content;

  will-change: transform;
}


/* 1セット分 */

.company-logo-loop__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}


/* ロゴ1個 */

.company-logo-loop__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  height: 40px;
  padding-right: 14px;
  padding-left: 14px;

  box-sizing: border-box;
}

.company-logo-loop__item img {
  display: block;

  width: auto;
  max-width: 240px;
  height: 40px;

  object-fit: contain;
}


/* 上段：右へ */

.company-logo-loop--right .company-logo-loop__track {
  animation:
    company-logo-to-right 35s linear infinite;
}


/* 下段：左へ */

.company-logo-loop--left .company-logo-loop__track {
  animation:
    company-logo-to-left 35s linear infinite;
}


/* 左方向 */

@keyframes company-logo-to-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* 右方向 */

@keyframes company-logo-to-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}


/* ========================================
  スマホ
======================================== */

@media screen and (max-width: 767px) {
  .company-logo-loop {
    height: 32px;
  }

  .company-logo-loop--left {
    margin-top: 24px;
  }

  .company-logo-loop__item {
    height: 32px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .company-logo-loop__item img {
    max-width: 180px;
    height: 32px;
  }
}


/* ========================================
  動きを減らす設定
======================================== */

@media (prefers-reduced-motion: reduce) {
  .company-logo-loop__track {
    animation-play-state: paused;
  }
}


/* ========================================
  スマホ版
======================================== */

@media screen and (max-width: 767px) {
  .company-slider-section {
    height: auto;
    padding: 30px 0 36px;
  }

  .company-slider-heading {
    display: flex;
    flex-direction: column;
    gap: 16px;

    width: calc(100% - 34px);
    height: auto;
    margin: 0 auto 30px;
  }

  .company-slider-heading__text {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .company-slider-heading__badge {
    width: min(315px, 100%);
    height: auto;
  }

  .company-logo-slider {
    height: 32px;
  }

  .company-logo-slider--bottom {
    margin-top: 24px;
  }

  .company-logo-slider .swiper-slide {
    height: 32px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .company-logo-slider .swiper-slide img {
    max-width: 180px;
    height: 32px;
  }
}

/* ========================================
  お悩み・解決
======================================== */

.worry {
  padding: 92px 10px;
  background-color: var(--maeq-bg02);
}

.worry__inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .worry {
    padding: 60px 20px;
  }
}


/* ========================================
  お悩みタイトル
======================================== */

.worry__title {
  color: var(--maeq-black01);
  font-size: 42px;
  font-weight: var(--w-bold);
  line-height: 1.2;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .worry__title {
    font-size: 26px;
    line-height: 1.5;
  }
}


/* ========================================
  お悩み画像
======================================== */

.worry__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;

  margin-top: 38px;
}

.worry__list img {
  display: block;

  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .worry__list {
    grid-template-columns: 1fr;
    gap: 16px;

    width: min(280px, 100%);
    margin: 28px auto 0;
  }
}


/* ========================================
  下向き矢印
======================================== */

.worry__arrow {
  display: block;

  width: 75px;
  height: 79px;
  margin: 40px auto 0;

  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .worry__arrow {
    width: 55px;
    height: auto;
    margin: 24px auto;
  }
}


/* ========================================
  解決タイトル
======================================== */

.worry__solution-title {
  color: var(--maeq-black01);
  font-size: 42px;
  font-weight: var(--w-bold);
  line-height: 1.45;
  text-align: center;
}

.worry__solution-title strong {
  position: relative;
  z-index: 0;

  color: var(--maeq-navy02);
  font-weight: var(--w-bold);
  font-size: 56px;
}

.worry__solution-title strong::after {
  content: "";

  position: absolute;
  z-index: -1;
  right: 25%;
  bottom: 3px;
  left: 20%;

  height: 16px;

  background-color: var(--maeq-yellow);

  transform: skewX(-18deg);
}

.worry__solution-title span {
  font-weight: var(--w-bold);
}

@media screen and (max-width: 767px) {
  .worry__solution-title {
    font-size: 25px;
  }

  .worry__solution-title strong {
    font-size: 34px;
  }

  .worry__solution-title strong::after {
    height: 10px;
  }
}


/* ========================================
  解決カード一覧
======================================== */

.solution-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;

  margin-top: 38px;
}

@media screen and (max-width: 767px) {
  .solution-list {
    grid-template-columns: 1fr;
    gap: 20px;

    width: min(316px, 100%);
    margin: 28px auto 0;
  }
}


/* ========================================
  解決カード
======================================== */

.solution-card {
  display: flex;
  flex-direction: column;

  min-width: 0;
  overflow: hidden;

  border: 2px solid var(--maeq-navy02);
  border-radius: 24px;

  background-color: var(--maeq-white);
}

.solution-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 223px;

  overflow: hidden;
}

.solution-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .solution-card {
    height: auto;
    min-height: 373px;
  }
}


/* ========================================
  解決カードのテキスト
======================================== */

.solution-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 28px;

  padding: 0 20px 32px;
}

.solution-card__body h3 {
  color: var(--maeq-black01);
  font-size: 28px;
  font-weight: var(--w-bold);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.solution-card__body p {
  color: var(--maeq-black01);
  font-size: 16px;
  font-weight: var(--w-regular);
  line-height: 1.6;
}

.solution-card__body p strong {
  font-weight: var(--w-semibold);
}

@media screen and (max-width: 767px) {
  .solution-card__body h3 {
    font-size: 24px;
  }

  .solution-card__body p {
    font-size: 15px;
  }
}

/* ========================================
  前給とは
======================================== */

.about {
  padding: 92px 10px;
  background-color: var(--maeq-white);
}

.about__inner {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;

  box-sizing: border-box;
  width: min(980px, 100%);
  height: 453px;
  margin: 0 auto;
  padding: 38px 10px;

  overflow: visible;

  border: 1px solid var(--maeq-navy02);
  border-radius: 36px;

  background-color: var(--maeq-white);
}

@media screen and (max-width: 767px) {
  .about {
    padding: 60px 20px;
  }

  .about__inner {
    gap: 32px;

    height: auto;
    min-height: auto;
    padding: 32px 28px 16px;

    border-radius: 24px;
  }
}

/* ========================================
  前給って？：タイトル
======================================== */

.about__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  margin: 0;

  line-height: 1;
  text-align: center;
}


/* 「前給」画像 */

.about__title-logo {
  display: block;
  flex: 0 0 auto;

  width: 112px;
  height: auto;
}


/* 「まえきゅうって？」 */

.about__title-reading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  min-width: 0;
}

.about__title-kana {
  display: block;
  flex: 0 1 auto;

  width: 220px;
  height: auto;
}

.about__title-question {
  flex: 0 0 auto;

  color: var(--maeq-black01);

  font-size: 40px;
  font-weight: var(--w-bold);
  line-height: 1;
  white-space: nowrap;
}


/* ========================================
  前給って？：タイトル スマホ
======================================== */

@media screen and (max-width: 767px) {
  .about__title {
    flex-direction: column;
    gap: 10px;
  }

  .about__title-logo {
    width: 100px;
  }

  .about__title-reading {
    gap: 4px;

    width: 100%;
  }

  .about__title-kana {
    width: min(190px, calc(100% - 90px));
  }

  .about__title-question {
    font-size: 27px;
  }
}


/* ========================================
  前給とは：説明全体
======================================== */

.about__detail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  height: 256px;
}

@media screen and (max-width: 767px) {
  .about__detail {
    flex-direction: column;
    align-items: center;
    gap: 28px;

    width: 100%;
  }

  .about__detail,
  .about__content {
    height: auto;
  }
}


/* ========================================
  前給とは：スマートフォン画像
======================================== */

.about__mock {
  flex: 0 0 130px;

  width: 130px;
  height: 256px;
}

.about__mock img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .about__mock {
    flex-basis: auto;

    width: 110px;
    height: auto;
  }

  .about__mock img {
    height: auto;
  }
}


/* ========================================
  前給とは：文章部分
======================================== */

.about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  height: 256px;
}

.about__description {
  color: var(--maeq-black01);
  font-size: 20px;
  font-weight: var(--w-regular);
  line-height: 1.6;
}

.about__description strong {
  font-weight: var(--w-semibold);
}

@media screen and (max-width: 767px) {
  .about__content {
    align-items: center;
    gap: 20px;

    width: 100%;
  }

  .about__description {
    font-size: 16px;
    line-height: 1.8;
  }

  .about__description br {
    display: none;
  }
}


/* ========================================
  前給とは：メッセージとイラスト
======================================== */

.about__message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__message h3 {
  color: var(--maeq-black01);
  font-size: 24px;
  font-weight: var(--w-bold);
  line-height: 1.6;
  white-space: nowrap;
}

.about__message img {
  position: relative;
  z-index: 2;
  display: block;

  width: 392px;
  height: 206px;

  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .about__message {
    align-items: center;

    width: 100%;
  }

  .about__message h3 {
    font-size: 19px;
    text-align: center;
    white-space: nowrap;
  }

  .about__message img {
    width: min(310px, 100%);
    height: auto;
  }
}

/* ========================================
  導入効果
======================================== */

.effect {
  padding: 92px 10px;
  background-color: #eff2f4;
}

.effect__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;

  width: min(980px, 100%);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .effect {
    padding: 60px 20px;
  }

  .effect__inner {
    gap: 28px;
  }
}


/* ========================================
  導入効果：見出し全体
======================================== */

.effect__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  width: 100%;

  color: var(--maeq-black01);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .effect__heading {
    gap: 24px;
  }
}


/* ========================================
  導入効果：タイトル
======================================== */

.section-title-mark {
  position: relative;
  isolation: isolate;

  display: inline-block;

  color: var(--maeq-black02);
  font-size: 40px;
  font-weight: var(--w-bold);
  line-height: 1.2;
}

.section-title-mark>span {
  position: relative;
  z-index: 2;
  font-weight: var(--w-bold);
}

.section-title-mark>img {
  position: absolute;
  z-index: 1;
  top: -18px;
  left: calc(100% - 15px);

  display: block;

  width: 56px;
  height: 56px;

  object-fit: contain;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .section-title-mark {
    font-size: 32px;
  }

  .section-title-mark>img {
    top: -10px;
    left: calc(100% - 8px);

    width: 44px;
    height: 44px;
  }
}


/* ========================================
  導入効果：導入文
======================================== */

.effect__lead {
  color: var(--maeq-black02);
  font-size: 24px;
  font-weight: var(--w-regular);
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .effect__lead {
    font-size: 17px;
    line-height: 1.8;
  }

  .effect__lead br {
    display: none;
  }
}


/* ========================================
  導入効果：カード一覧
======================================== */

.effect__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;

  width: 100%;
}

@media screen and (max-width: 767px) {
  .effect__list {
    grid-template-columns: 1fr;
    gap: 20px;

    width: min(475px, 100%);
  }
}


/* ========================================
  導入効果：カード共通
======================================== */

.effect-card {
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;

  min-width: 0;
  height: 350px;
  padding: 24px 32px 24px;

  border: 1px solid var(--maeq-navy02);
  border-radius: 24px;

  color: var(--maeq-black01);
  background-color: var(--maeq-white);
}

@media screen and (max-width: 767px) {
  .effect-card {
    height: auto;
    padding: 26px 20px 22px;
  }
}


/* ========================================
  導入効果：カードタイトル
======================================== */

.effect-card__title {
  width: fit-content;
  margin: 0;
  padding: 0 2px;

  border-bottom: 2px solid var(--maeq-black01);

  color: var(--maeq-black01);
  font-size: 24px;
  font-weight: var(--w-semibold);
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .effect-card__title {
    font-size: 21px;
  }
}


/* ========================================
  求人応募数：企業・数値・グラフ
======================================== */

.effect-card--application {
  gap: 30px;
}

.effect-card__application-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  width: 100%;
}

.effect-card__company p {
  margin: 0;
}

.effect-card__number {
  margin: 4px 0 0;
  line-height: 1;
}

.effect-card__number strong,
.effect-card__number span {
  line-height: 1;
}

.effect-card__result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;

  padding-top: 10px;
}

.effect-card__company {
  display: flex;
  align-items: center;
  gap: 9px;
}

.effect-card__company img {
  display: block;

  width: 55px;
  height: 55px;

  object-fit: contain;
}

.effect-card__company p {
  color: var(--maeq-black01);
  font-size: 14px;
  font-weight: var(--w-bold);
  line-height: 1.3;
  white-space: nowrap;
}

.effect-card__number {
  display: flex;
  align-items: baseline;

  color: var(--maeq-black02);
  font-weight: var(--w-bold);
  line-height: 1;
  white-space: nowrap;
}

.effect-card__number strong {
  font-size: 68px;
  font-weight: var(--w-bold);
}

.effect-card__number span {
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: var(--w-bold);
}

.effect-card__application-chart {
  display: block;

  width: 193px;
  height: 170px;

  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .effect-card--application {
    gap: 16px;
  }

  .effect-card__application-body {
    justify-content: center;
    gap: 12px;
  }

  .effect-card__company {
    gap: 6px;
  }

  .effect-card__company img {
    width: 44px;
    height: 44px;
  }

  .effect-card__company p {
    font-size: 12px;
  }

  .effect-card__number strong {
    font-size: 48px;
  }

  .effect-card__number span {
    font-size: 22px;
    letter-spacing: 0;
  }

  .effect-card__application-chart {
    width: min(170px, 48%);
    height: auto;
  }
}


/* ========================================
  離職率：説明・グラフ
======================================== */

.effect-card--turnover {
  gap: 16px;
}

.effect-card__turnover-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  width: 100%;
}

.effect-card__turnover-heading>p {
  color: var(--maeq-black01);
  font-size: 16px;
  font-weight: var(--w-regular);
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
}

.effect-card__turnover-heading>p strong {
  font-weight: var(--w-bold);
}

.effect-card__turnover-chart {
  display: block;

  width: 317px;
  height: 166px;

  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .effect-card__turnover-heading>p {
    font-size: 14px;
    white-space: normal;
  }

  .effect-card__turnover-chart {
    width: min(317px, 100%);
    height: auto;
  }
}


/* ========================================
  導入効果：注釈
======================================== */

.effect-card__note {
  width: 100%;
  margin-top: auto;

  color: var(--maeq-black01);
  font-size: 10px;
  font-weight: var(--w-regular);
  line-height: 1.6;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .effect-card__note {
    margin-top: 10px;
    font-size: 9px;
  }
}

/* ========================================
  導入事例
======================================== */

.case {
  overflow: hidden;
  padding: 92px 0;
  background-color: #b6ccdb;
}

.case__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  width: 100%;
}

@media screen and (max-width: 767px) {
  .case {
    padding: 60px 0;
  }

  .case__inner {
    gap: 28px;
  }
}


/* ========================================
  導入事例：スライダー全体
======================================== */

.case-slider-wrap {
  position: relative;

  width: min(980px, calc(100% - 80px));
}

.case-swiper {
  width: 100%;
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .case-slider-wrap {
    width: calc(100% - 40px);
  }
}


/* ========================================
  導入事例：カード
======================================== */

.case-card {
  box-sizing: border-box;

  width: 100%;
  height: auto;
  padding: 40px 40px 60px;

  overflow: hidden;

  border: 1px solid var(--maeq-navy02);
  border-radius: 36px;

  color: var(--maeq-black01);
  background-color: var(--maeq-white);
}

@media screen and (max-width: 767px) {
  .case-card {
    padding: 26px 20px 32px;
    border-radius: 24px;
  }
}


/* ========================================
  導入事例：企業名・タグ・タイトル
======================================== */

.case-card__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;

  width: 100%;
  margin-bottom: 20px;
}

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

.case-card__company>p {
  color: var(--maeq-black01);
  font-size: 16px;
  font-weight: var(--w-bold);
  line-height: 1.4;
  white-space: nowrap;
}

.case-card__tags {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.case-card__tags li {
  padding: 1px 11px;

  border: 2px solid var(--maeq-navy02);
  border-radius: 25px;

  color: var(--maeq-navy02);
  font-size: 14px;
  font-weight: var(--w-bold);
  line-height: 1.4;
  white-space: nowrap;
}

.case-card__heading h3 {
  color: var(--maeq-black02);
  font-size: 24px;
  font-weight: var(--w-bold);
  line-height: 1.45;
}

@media screen and (max-width: 767px) {
  .case-card__company {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .case-card__company>p {
    font-size: 15px;
    white-space: normal;
  }

  .case-card__tags {
    flex-wrap: wrap;
  }

  .case-card__tags li {
    font-size: 12px;
  }

  .case-card__heading h3 {
    font-size: 20px;
  }

  .case-card__heading h3 br {
    display: none;
  }
}


/* ========================================
  導入事例：画像と課題・効果
======================================== */

.case-card__detail {
  display: grid;
  grid-template-columns: 431px 431px;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.case-card__image {
  width: 431px;
  height: 226px;

  overflow: hidden;
}

.case-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.case-card__result {
  display: flex;
  flex-direction: column;
  gap: 4px;

  width: 100%;
}

@media screen and (max-width: 767px) {
  .case-card__detail {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 431 / 226;
  }
}


/* ========================================
  導入事例：課題・効果
======================================== */

.case-card__result-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;

  min-height: 111px;
}

.case-card__label {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 10px 5px;

  font-size: 16px;
  font-weight: var(--w-bold);
  line-height: 1;
  white-space: nowrap;
}

.case-card__label--problem {
  color: var(--maeq-white);
  background-color: var(--maeq-navy02);
}

.case-card__label--effect {
  color: var(--maeq-navy02);
  background-color: var(--maeq-yellow);
}

.case-card__text {
  align-self: center;

  margin: 0;

  color: var(--maeq-black02);
  font-size: 16px;
  font-weight: var(--w-regular);
  line-height: 1.5;
}

.case-card__text strong {
  font-weight: var(--w-bold);
}

@media screen and (max-width: 767px) {
  .case-card__result-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;

    min-height: auto;
  }

  .case-card__label {
    min-height: 100px;
    font-size: 14px;
  }

  .case-card__text {
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.7;
  }
}


/* ========================================
  導入事例：前後ボタン
======================================== */

.case-swiper__prev,
.case-swiper__next {
  position: absolute;
  z-index: 5;
  top: 50%;

  width: 40px;
  height: 40px;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background-color: transparent;
  cursor: pointer;

  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

.case-swiper__prev {
  left: -20px;
}

.case-swiper__next {
  right: -20px;
}

.case-swiper__prev:hover,
.case-swiper__next:hover {
  opacity: 0.7;
}

.case-swiper__prev img,
.case-swiper__next img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

@media screen and (max-width: 767px) {

  .case-swiper__prev,
  .case-swiper__next {
    width: 36px;
    height: 36px;
  }

  .case-swiper__prev {
    left: -18px;
  }

  .case-swiper__next {
    right: -18px;
  }
}


/* ========================================
  導入事例：ページネーション
======================================== */

.case-swiper__pagination {
  position: static;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  width: auto;
  height: 12px;
}

.case-swiper__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;

  opacity: 1;
  background-color: #999999;
}

.case-swiper__pagination .swiper-pagination-bullet-active {
  background-color: var(--maeq-navy02);
}

/* ========================================
  導入事例カード：リンク・ホバー
======================================== */

.case-card {
  display: block;

  color: var(--maeq-black01);
  text-decoration: none;
  cursor: pointer;

  box-shadow: none;
}

/*
  共通CSSの a:hover { opacity: 0.8; } を打ち消す
*/
.case-card:hover {
  opacity: 1;

  box-shadow:
    0 0 5px rgba(15, 34, 73, 0.25);
}

/*
  写真だけを薄くする
*/
.case-card:hover .case-card__image img {
  opacity: 0.7;
}

/*
  秒数指定なしですぐ変化させる
*/
.case-card,
.case-card__image img {
  transition: none;
}

/*
  キーボード操作時
*/
.case-card:focus-visible {
  opacity: 1;
  outline: 3px solid var(--maeq-navy01);
  outline-offset: 4px;

  box-shadow:
    0 0 5px rgba(15, 34, 73, 0.25);
}

.case-card:focus-visible .case-card__image img {
  opacity: 0.7;
}


/* ========================================
  共通：一覧リンクボタン
======================================== */

.page-link-button {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  width: 350px;
  min-height: 56px;
  padding: 10px 24px;

  border: 2px solid var(--maeq-navy02);
  border-radius: 50px;

  color: var(--maeq-navy02);
  background-color: var(--maeq-white);

  font-size: 20px;
  font-weight: var(--w-bold);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.page-link-button>span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.page-link-button>img {
  position: absolute;
  top: 50%;
  right: 24px;

  display: block;

  width: 9px;
  height: 16px;

  object-fit: contain;

  transform: translateY(-50%);
}

.page-link-button:hover {
  opacity: 0.7;
}

.page-link-button:active {
  opacity: 1;
}

.page-link-button:focus-visible {
  outline: 3px solid var(--maeq-navy01);
  outline-offset: 4px;
}

@media screen and (max-width: 767px) {
  .page-link-button {
    width: min(300px, 100%);
    min-height: 52px;
    padding: 9px 44px;

    font-size: 17px;
  }

  .page-link-button>img {
    right: 20px;

    width: 8px;
    height: 15px;
  }
}

/* ========================================
  導入実績
======================================== */

.company-results {
  padding: 92px 10px;
  background-color: var(--maeq-white);
}

.company-results__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  width: min(980px, 100%);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .company-results {
    padding: 60px 20px;
  }

  .company-results__inner {
    gap: 28px;
  }
}


/* ========================================
  導入実績：タイトル・説明
======================================== */

.company-results__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;

  width: 100%;

  text-align: center;
}

.company-results__lead {
  color: var(--maeq-black02);
  font-size: 24px;
  font-weight: var(--w-regular);
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .company-results__heading {
    gap: 24px;
  }

  .company-results__lead {
    font-size: 17px;
    line-height: 1.8;
  }
}


/* ========================================
  導入実績：ロゴ一覧ボックス
======================================== */

.company-results__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  box-sizing: border-box;
  width: 100%;
  padding: 40px 100px;

  border: 1px solid var(--maeq-navy02);
  border-radius: 36px;

  background-color: var(--maeq-white);
}

@media screen and (max-width: 767px) {
  .company-results__box {
    padding: 28px 20px;

    border-radius: 24px;
  }
}


/* ========================================
  導入実績：企業ロゴ画像
======================================== */

.company-results__logos {
  display: block;
  width: 100%;
}

.company-results__logos img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1960 / 848;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .company-results__logos img {
    aspect-ratio: auto;
    object-fit: contain;
  }
}

/* ========================================
  中間CTA
======================================== */

.middle-cta {
  position: relative;
  z-index: 0;

  padding: 60px 20px 42px;

  overflow: hidden;

  background-color: var(--maeq-navy01);
}

/* 下部の幾何学画像 */

.middle-cta::before,
.closing-cta::before {
  content: "";

  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;

  height: 138px;

  background-image: url("../img/common/deco_CTA.png");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 138px;
}


/* ========================================
  白いボックス
======================================== */

.middle-cta__inner {
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 40px 60px;

  border: 1px solid var(--maeq-navy02);
  border-radius: 36px;

  background-color: var(--maeq-white);
}


/* ========================================
  CTA上部のコピー
======================================== */

.middle-cta__copy {
  display: flex;
  align-items: baseline;
  justify-content: center;

  margin: 0;

  color: var(--maeq-black01);
  font-size: 32px;
  font-weight: var(--w-bold);
  line-height: 1.45;
  text-align: center;
}

.middle-cta__copy em {
  font-size: 46px;
  line-height: 1;
}


/* ========================================
  CTAボタン全体
======================================== */

.middle-cta__actions {
  display: grid;
  grid-template-columns: repeat(2, 350px);
  justify-content: center;
  gap: 24px;

  margin-top: 24px;
}


/* ========================================
  ボタンラッパー
======================================== */

.middle-cta-button-wrap {
  position: relative;

  display: flex;
  align-items: flex-end;

  width: 350px;
  height: 100px;
}


/* ========================================
  吹き出し画像
======================================== */

.middle-cta-button__bubble {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;

  display: block;

  width: auto;
  max-width: none;
  height: 36px;

  transform: translateX(-50%);
}


/* ========================================
  ボタン共通
======================================== */

.middle-cta-button {
  position: relative;

  width: 100%;
}

.middle-cta-button--contact {
  gap: 24px;

  padding: 12px 24px 12px 40px;

  color: var(--maeq-white);
  background-color: var(--maeq-navy02);
}

.middle-cta-button--download {
  gap: 16px;

  padding: 12px 16px 12px 30px;

  color: var(--maeq-navy02);
  background-color: var(--maeq-yellow);
}


/* ========================================
  アイコン
======================================== */

.middle-cta-button__icon {
  display: block;
  flex: 0 0 auto;

  object-fit: contain;
}

.middle-cta-button__icon--mail {
  width: 50px;
  height: 56px;
}

.middle-cta-button__icon--download {
  width: 50px;
  height: 57px;
}


/* ========================================
  お問い合わせテキスト
======================================== */

.middle-cta-button--contact>strong {
  color: var(--maeq-white);
  font-size: 24px;
  font-weight: var(--w-bold);
  line-height: 1;
  white-space: nowrap;
}


/* ========================================
  資料ダウンロードテキスト
======================================== */

.middle-cta-button__download-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;

  min-width: 0;
}

.middle-cta-button__download-text small {
  display: flex;
  align-items: center;

  color: var(--maeq-navy02);
  font-size: 16px;
  font-weight: var(--w-bold);
  line-height: 1;
  white-space: nowrap;
}

.middle-cta-button__download-text small b {
  margin-right: 0;
  padding: 4px;

  border-radius: 3px;

  color: var(--maeq-white);
  background-color: var(--maeq-navy02);

  font-size: 16px;
  font-weight: var(--w-semibold);
  line-height: 1;
}

.middle-cta-button__download-text strong {
  color: var(--maeq-navy02);
  font-size: 24px;
  font-weight: var(--w-bold);
  line-height: 1;
  white-space: nowrap;
}


/* ========================================
  矢印アイコン
======================================== */

.middle-cta-button__arrow {
  display: block;
  flex: 0 0 auto;

  width: 13px;
  height: 26px;
  margin-left: auto;

  object-fit: contain;
}


/* ========================================
  中間CTA：スマホ
======================================== */

@media screen and (max-width: 767px) {
  /* セクション */

  .middle-cta {
    padding: 40px 20px 48px;
  }

  .middle-cta::before {
    height: 74px;
    background-size: auto 74px;
  }


  /* 白いボックス */

  .middle-cta__inner {
    padding: 40px 20px;

    border-radius: 24px;
  }


  /* コピー */

  .middle-cta__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;

    width: 100%;
    max-width: 350px;
    color: var(--maeq-black01);
    margin: 0 auto;
    font-weight: var(--w-bold);
    text-align: left;
  }

  .middle-cta__copy-first,
  .middle-cta__copy-second {
    display: block;
  }

  .middle-cta__copy-first {
    font-size: 22px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .middle-cta__copy-second {
    font-size: 22px;
    line-height: 1.4;
  }

  .middle-cta__copy em {
    font-size: 35px;
    font-style: normal;
  }


  /* CTA全体 */

  .middle-cta__actions {
    grid-template-columns: minmax(0, 350px);
    gap: 12px;

    margin-top: 20px;
  }

  .middle-cta-button-wrap {
    width: 100%;
    height: 90px;
  }


  /* ボタン共通 */

  .middle-cta-button {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 64px;
    padding-right: 44px;
    padding-left: 34px;
  }

  .middle-cta-button__arrow {
    position: absolute;
    top: 50%;
    right: 18px;

    width: 13px;
    height: 26px;
    margin-left: 0;

    transform: translateY(-50%);
  }


  /* お問い合わせボタン */

  .middle-cta-button--contact {
    gap: 16px;
    padding-top: 7px;
    padding-bottom: 10px;
    padding-left: 22px;
  }

  .middle-cta-button--contact>strong {
    font-size: 20px;
  }

  .middle-cta-button__icon--mail {
    width: 40px;
    height: 45px;
  }


  /* 資料ダウンロードボタン */

  .middle-cta-button--download {
    gap: 12px;
    padding-top: 7px;
    padding-bottom: 10px;
  }

  .middle-cta-button__icon--download {
    width: 40px;
    height: 46px;
  }

  .middle-cta-button__download-text {
    gap: 3px;
  }

  .middle-cta-button__download-text small,
  .middle-cta-button__download-text small b {
    font-size: 12px;
  }

  .middle-cta-button__download-text strong {
    font-size: 19px;
  }
}

/* ========================================
  前給が選ばれる4つの理由
======================================== */

.reason {
  padding: 92px 20px;

  background-color: var(--maeq-bg01);
}

.reason__inner {
  width: min(980px, 100%);
  margin-inline: auto;
}


/* ========================================
  理由：タイトル
======================================== */

.reason__title {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 0;

  color: var(--maeq-black01);
  font-weight: var(--w-bold);
  text-align: center;
}

.reason__title-copy {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;

  font-size: 32px;
  line-height: 1.4;
}

.reason__title-copy em {
  font-size: 46px;
  line-height: 1;
}

.reason__title-main {
  display: flex;
  align-items: baseline;
  justify-content: center;

  margin-top: 4px;

  font-size: 40px;
  line-height: 1.2;
}

.reason__title-main b {
  color: var(--maeq-black01);
  font-size: 62px;
  font-weight: var(--w-bold);
  line-height: 1;
}


/* ========================================
  理由：カード一覧
======================================== */

.reason__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;

  margin-top: 40px;
}


/* ========================================
  理由：カード
======================================== */

.reason-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  box-sizing: border-box;
  min-width: 0;
  min-height: 598px;
  padding: 32px 32px 48px;

  overflow: hidden;

  border: 1px solid var(--maeq-navy02);
  border-radius: 16px;

  background-color: var(--maeq-white);
}


/* ========================================
  理由：番号・イラスト
======================================== */

.reason-card__visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}

.reason-card__number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;

  display: block;

  width: 126px;
  height: 91px;

  object-fit: contain;
}

.reason-card__image {
  position: relative;
  z-index: 1;

  display: block;

  object-fit: contain;
  padding-top: 50px;
}

.reason-card__image--01 {
  width: 144px;
  height: 161px;
}

.reason-card__image--02 {
  width: 174px;
  height: 211px;
}

.reason-card__image--03 {
  width: 277px;
  height: 208px;
}

.reason-card__image--04 {
  width: 200px;
  height: 183px;
}


/* ========================================
  理由：見出し・本文
======================================== */

.reason-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  width: 100%;
}

.reason-card__content h3 {
  margin: 0;

  color: var(--maeq-black02);
  font-size: 28px;
  font-weight: var(--w-bold);
  line-height: 1.5;
  text-align: center;
}

.reason-card__content>p,
.reason-card__description>p,
.reason-card__support>p {
  margin: 0;

  color: var(--maeq-black02);
  font-size: 16px;
  font-weight: var(--w-regular);
  line-height: 1.6;
}

.reason-card__content>p,
.reason-card__description>p {
  text-align: justify;
}

.reason-card__description {
  width: 100%;
}

.reason-card__description sup {
  font-size: 10px;
  line-height: 1;
  vertical-align: super;
}

.reason-card__description small {
  display: block;

  margin-top: 8px;

  color: var(--maeq-black02);
  font-size: 10px;
  line-height: 1.6;
}


/* ========================================
  理由4：サポート内容
======================================== */

.reason-card__support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  width: 100%;
}

.reason-card__support>p {
  text-align: center;
}

.reason-card__support img {
  display: block;

  width: 100%;
  max-width: 412px;
  height: auto;
}


/* ========================================
  前給が選ばれる4つの理由：スマホ
======================================== */

@media screen and (max-width: 767px) {
  .reason {
    padding: 60px 20px;
  }


  /* タイトル */

  .reason__title-copy {
    display: block;

    font-size: 24px;
    line-height: 1.5;
  }

  .reason__title-copy em {
    font-size: 40px;
  }

  .reason__title-copy>span {
    display: block;
    margin-top: 6px;
  }

  .reason__title-main {
    margin-top: 2px;

    font-size: 30px;
  }

  .reason__title-main b {
    font-size: 46px;
  }


  /* カード一覧 */

  .reason__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;

    margin-top: 32px;
  }


  /* カード */

  .reason-card {
    gap: 40px;

    min-height: 0;
    padding: 24px 20px 32px;

    border-radius: 14px;
  }


  /* 番号・イラスト */

  .reason-card__visual {
    height: 180px;
  }

  .reason-card__number {
    width: 100px;
    height: 72px;
  }

  .reason-card__image--01 {
    width: 120px;
    height: 135px;
  }

  .reason-card__image--02 {
    width: 145px;
    height: 176px;
  }

  .reason-card__image--03 {
    width: 220px;
    height: 165px;
  }

  .reason-card__image--04 {
    width: 165px;
    height: 151px;
  }


  /* 見出し・本文 */

  .reason-card__content {
    gap: 16px;
  }

  .reason-card__content h3 {
    font-size: 22px;
    line-height: 1.5;
  }

  .reason-card__content>p,
  .reason-card__description>p,
  .reason-card__support>p {
    font-size: 15px;
    line-height: 1.7;
  }

  .reason-card__description small {
    font-size: 10px;
  }
}

/* ========================================
  導入までの流れ
======================================== */

.flow {
  padding: 92px 20px;

  background-color: var(--maeq-bg03);
}

.flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  width: min(980px, 100%);
  margin-inline: auto;
}


/* ========================================
  導入までの流れ：タイトル・説明
======================================== */

.flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;

  width: 100%;

  text-align: center;
}

.flow__heading>p {
  margin: 0;

  color: var(--maeq-black01);
  font-size: 24px;
  font-weight: var(--w-regular);
  line-height: 1.6;
}

.flow__heading .maeq-line-title {
  font-size: 46px;
  line-height: 1.3;
}


/* ========================================
  導入までの流れ：カード一覧
======================================== */

.flow__list {
  display: grid;
  grid-template-columns: repeat(4, 208px);
  justify-content: space-between;

  width: 100%;
  margin: 0;
  padding: 0;

  list-style: none;
}


/* ========================================
  導入までの流れ：カード
======================================== */

.flow-card {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  box-sizing: border-box;
  width: 208px;
  min-height: 285px;
  padding: 32px 16px 40px;

  border: 1px solid var(--maeq-navy02);
  border-radius: 12px;

  background-color: var(--maeq-white);
}


/* ========================================
  導入までの流れ：アイコン
======================================== */

.flow-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 106px;

  overflow: hidden;
}

.flow-card__icon img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* ========================================
  導入までの流れ：カード内テキスト
======================================== */

.flow-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;

  color: var(--maeq-navy02);
  text-align: center;
}

.flow-card__content h3 {
  margin: 0;

  color: var(--maeq-navy02);
  font-size: 24px;
  font-weight: var(--w-semibold);
  line-height: 1.45;
}

.flow-card__content p {
  margin: 0;

  color: var(--maeq-navy02);
  font-size: 16px;
  font-weight: var(--w-medium);
  line-height: 1.4;
}


/* 運用開始の説明だけ少し太くする */

.flow-card:last-child .flow-card__content p {
  font-weight: var(--w-medium);
}


/* ========================================
  導入までの流れ：矢印
======================================== */

.flow-card__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(100% + 11px);

  display: block;

  width: 27px;
  height: 36px;

  object-fit: contain;

  transform: translateY(-50%);
}


/* ========================================
  導入までの流れ：スマホ
======================================== */

@media screen and (max-width: 767px) {
  .flow {
    padding: 60px 20px;
  }

  .flow__inner {
    gap: 32px;
  }


  /* タイトル・説明 */

  .flow__heading {
    gap: 24px;
  }

  .flow__heading>p {
    font-size: 16px;
    line-height: 1.7;
  }

  .flow__heading .maeq-line-title {
    font-size: 32px;
  }


  /* カード一覧 */

  .flow__list {
    grid-template-columns: minmax(0, 280px);
    justify-content: center;
    gap: 52px;
  }


  /* カード */

  .flow-card {
    width: 100%;
    min-height: 240px;
    padding: 24px 20px 30px;
  }


  /* アイコン */

  .flow-card__icon {
    height: 96px;
  }


  /* テキスト */

  .flow-card__content h3 {
    font-size: 22px;
  }

  .flow-card__content p {
    font-size: 15px;
  }


  /* 矢印を下向きにする */

  .flow-card__arrow {
    top: calc(100% + 8px);
    left: 50%;

    width: 24px;
    height: 32px;

    transform:
      translateX(-50%) rotate(90deg);
  }
}

/* ========================================
  よくあるご質問
======================================== */

.faq {
  position: relative;
  isolation: isolate;

  padding: 92px 20px;

  overflow: hidden;

  background-color: var(--maeq-bg01);
}

/* 背景の大きなFAQ画像 */

.faq::before {
  content: "";

  position: absolute;
  z-index: -1;
  top: 290px;
  right: 0;
  bottom: auto;
  left: 0;

  width: 100%;
  height: 760px;

  background-image: url("../img/top/faq_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1440px auto;

  opacity: 0.5;
  pointer-events: none;
}

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;

  width: min(980px, 100%);
  margin-inline: auto;
}


/* ========================================
  FAQ：タイトル・導入文
======================================== */

.faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  width: 100%;

  text-align: center;
}

.faq__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  margin: 0;

  color: var(--maeq-black01);
  font-size: 42px;
  font-weight: var(--w-bold);
  line-height: 1.3;
}

.faq__title img {
  display: block;

  width: 182px;
  height: 114px;

  object-fit: contain;
}

.faq__lead {
  margin: 0;

  color: var(--maeq-black01);
  font-size: 24px;
  font-weight: var(--w-regular);
  line-height: 1.6;
  text-align: center;
}


/* ========================================
  FAQ：一覧
======================================== */

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;

  width: 100%;
}


/* ========================================
  FAQ：カード
======================================== */

.faq-item {
  box-sizing: border-box;
  width: 100%;
  padding: 40px;

  overflow: hidden;

  border: 1px solid var(--maeq-navy02);
  border-radius: 16px;

  background-color: var(--maeq-white);
}


/* ========================================
  FAQ：質問
======================================== */

.faq-item__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;

  width: 100%;

  color: var(--maeq-black01);
  font-size: 16px;
  font-weight: var(--w-bold);
  line-height: 1.5;

  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::marker {
  display: none;
  content: "";
}

.faq-item__question-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  min-width: 0;
}

.faq-item__initial {
  display: block;
  flex: 0 0 14px;

  width: 14px;

  color: var(--maeq-black01);
  font-size: 16px;
  font-weight: var(--w-bold);
  line-height: 1.5;
  text-align: center;
}

.faq-item__question-text {
  min-width: 0;
  text-align:left;
}


/* ========================================
  FAQ：プラス・マイナス
======================================== */

.faq-item__toggle {
  position: relative;

  display: block;
  flex: 0 0 18px;

  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 14px;
  height: 2px;

  background-color: var(--maeq-black01);

  transform: translate(-50%, -50%);
}

.faq-item__toggle::after {
  transform:
    translate(-50%, -50%) rotate(90deg);
}


/* 開いているときは縦線を消してマイナスにする */

.faq-item[open] .faq-item__toggle::after {
  display: none;
}


/* ========================================
  FAQ：回答
======================================== */

.faq-item__answer {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;

  margin-top: 24px;
  padding-top: 24px;

  border-top: 1px solid var(--maeq-black01);

  color: var(--maeq-black01);
}

.faq-item__answer p {
  margin: 0;

  font-size: 16px;
  font-weight: var(--w-regular);
  line-height: 1.5;
  text-align: left;
}


/* ========================================
  FAQ：キーボード操作
======================================== */

.faq-item__question:focus-visible {
  outline: 2px solid var(--maeq-navy02);
  outline-offset: 6px;
}


/* ========================================
  よくあるご質問：スマホ
======================================== */

@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 20px;
  }

  .faq::before {
    
    background-image: url("../img/top/faq_bg_sp.png");
    top: 190px;
    background-position: center;
    background-size: 50%;
  }

  .faq__inner {
    gap: 32px;
  }


  /* タイトル */

  .faq__heading {
    gap: 24px;
  }

  .faq__title {
    flex-direction: column;
    gap: 0;
    font-size: 28px;
  }

  .faq__title img {
    width: 160px;
  }


  /* 導入文 */

  .faq__lead {
    font-size: 15px;
    line-height: 1.7;
  }


  /* FAQ一覧 */

  .faq__list {
    gap: 20px;
  }


  /* FAQカード */

  .faq-item {
    padding: 24px 20px;

    border-radius: 12px;
  }


  /* 質問 */

  .faq-item__question {
    gap: 12px;

    font-size: 15px;
  }

  .faq-item__question-inner {
    gap: 8px;
  }

  .faq-item__initial {
    flex-basis: 12px;

    width: 12px;

    font-size: 15px;
  }


  /* プラス・マイナス */

  .faq-item__toggle {
    flex-basis: 16px;

    width: 16px;
    height: 16px;
  }

  .faq-item__toggle::before,
  .faq-item__toggle::after {
    width: 12px;
  }


  /* 回答 */

  .faq-item__answer {
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 8px;

    margin-top: 18px;
    padding-top: 18px;
  }

  .faq-item__answer p {
    font-size: 14px;
    line-height: 1.7;
  }

  .faq-item__answer br {
    display: none;
  }
}

/* ========================================
  メディア掲載実績
======================================== */

.media-publication {
  padding: 92px 20px;

  background-color: var(--maeq-bg03);
}

.media-publication__inner {
  display: flex;
  align-items: center;
  gap: 80px;

  box-sizing: border-box;
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 40px 60px;

  border-radius: 60px;

  background-color: var(--maeq-white);
}


/* ========================================
  メディア掲載実績：タイトル
======================================== */

.media-publication__title {
  flex: 0 0 auto;

  margin: 0;

  color: var(--maeq-black01);
  font-size: 40px;
  font-weight: var(--w-bold);
  line-height: 1.4;
  text-align: center;
}


/* ========================================
  メディア掲載実績：一覧
======================================== */

.media-publication__list {
  flex: 1 1 auto;

  min-width: 0;
  margin: 0;
  padding: 0;

  border-top: 1px solid var(--maeq-black01);
  border-bottom: 1px solid var(--maeq-black01);

  list-style: none;
}

.media-publication__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  min-width: 0;
  padding: 10px 72px 10px 32px;
}

.media-publication__item+.media-publication__item {
  border-top: 1px solid var(--maeq-black01);
}


/* ========================================
  メディア掲載実績：掲載情報
======================================== */

.media-publication__information {
  display: flex;
  align-items: center;
  gap: 16px;

  min-width: 0;
  margin: 0;

  color: var(--maeq-black01);
  font-size: 16px;
  font-weight: var(--w-medium);
  line-height: 1.6;
}

.media-publication__information span {
  min-width: 0;
}


/* ========================================
  メディア掲載実績：記事リンク
======================================== */

.media-publication__link {
  flex: 0 0 auto;

  color: var(--maeq-black01);
  font-size: 16px;
  font-weight: var(--w-semibold);
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.media-publication__link:hover {
  text-decoration: underline;
}


/* ========================================
  メディア掲載実績：スマホ
======================================== */

@media screen and (max-width: 767px) {
  .media-publication {
    padding: 60px 20px;
  }

  .media-publication__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;

    padding: 32px 20px 56px;

    border-radius: 32px;
  }


  /* タイトル */

  .media-publication__title {
    font-size: 30px;
    line-height: 1.4;
  }

  .media-publication__title br {
    display: none;
  }


  /* 掲載実績 */

  .media-publication__item {
    align-items: flex-end;
    gap: 16px;

    padding: 16px;
  }

  .media-publication__information {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;

    font-size: 14px;
    line-height: 1.6;
  }

  .media-publication__link {
    font-size: 14px;
  }
}

/* ========================================
  最終CTA
======================================== */

.closing-cta {
  position: relative;
  isolation: isolate;

  padding: 60px 20px;

  overflow: hidden;

  background-color: var(--maeq-navy01);
}


/* 中間CTAと共通の幾何学画像 */

.middle-cta::before,
.closing-cta::before {
  content: "";

  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;

  height: 138px;

  background-image: url("../img/common/deco_CTA.png");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 138px;

  pointer-events: none;
}

.closing-cta__inner {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 470px));
  justify-content: center;
  align-items: stretch;
  gap: 40px;

  width: min(980px, 100%);
  margin-inline: auto;
}


/* ========================================
  最終CTA：カード
======================================== */

.closing-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;

  box-sizing: border-box;
  min-width: 0;
  padding: 40px 40px 50px;

  border: 2px solid var(--maeq-navy02);
  border-radius: 16px;
}

@media (hover: hover) {
  .closing-cta-card {
    transition: transform 0.05s ease-out;
  }

  .closing-cta-card:hover {
    transform: translateY(-4px);
  }
}

.closing-cta-card--contact {
  background-color: var(--maeq-white);
}

.closing-cta-card--download {
  background-color: var(--maeq-yellow);
}


/* ========================================
  最終CTA：カードタイトル
======================================== */

.closing-cta-card__title {
  width: 100%;
  margin: 0;

  color: var(--maeq-navy02);
  font-size: 26px;
  font-weight: var(--w-bold);
  line-height: 1.5;
  text-align: center;
}


/* ========================================
  最終CTA：説明部分
======================================== */

.closing-cta-card__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  width: 100%;
}

.closing-cta-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 89px;

  width: 89px;
  height: 100px;

  overflow: hidden;
}

.closing-cta-card__icon img {
  display: block;

  object-fit: contain;
}

.closing-cta-card__icon--contact img {
  width: 90%;
}

.closing-cta-card__icon--download img {
  width: 81px;
  height: 99px;
}


/* ========================================
  最終CTA：説明文
======================================== */

.closing-cta-card__description {
  min-width: 0;

  color: var(--maeq-navy02);
  font-size: 16px;
}

.closing-cta-card__description>p {
  margin: 0 0 4px;

  font-size: 16px;
  font-weight: var(--w-bold);
  line-height: 1.5;
}

.closing-cta-card__description ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.closing-cta-card__description li {
  position: relative;

  padding-left: 1em;

  font-size: 16px;
  font-weight: var(--w-medium);
  line-height: 1.5;
}

.closing-cta-card__description li::before {
  content: "・";

  position: absolute;
  top: 0;
  left: 0;
}


/* ========================================
  最終CTA：ボタン共通
======================================== */

.closing-cta-button {
  position: relative;

  flex: 0 0 auto;

  max-width: 100%;

  color: var(--maeq-navy02);
}

.closing-cta-button__arrow {
  display: block;
  flex: 0 0 auto;

  width: 13px;
  height: 26px;
  margin-left: auto;

  object-fit: contain;
}


/* ========================================
  最終CTA：お問い合わせボタン
======================================== */

.closing-cta-button--contact {
  justify-content: center;

  padding: 12px 24px 12px 104px;

  color: var(--maeq-white);
  background-color: var(--maeq-navy02);
}

.closing-cta-button--contact strong {
  color: var(--maeq-white);
  font-size: 24px;
  font-weight: var(--w-bold);
  line-height: 1;
  white-space: nowrap;
}

.closing-cta-button--contact .closing-cta-button__arrow {
  margin-left: 60px;
}


/* ========================================
  最終CTA：資料ダウンロードボタン
======================================== */

.closing-cta-button--download {
  justify-content: flex-end;
  gap: 14px;

  padding: 8px 24px;

  color: var(--maeq-navy02);
  background-color: var(--maeq-white);
}

.closing-cta-button__free {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  padding: 6px 10px;

  border-radius: 4px;

  color: var(--maeq-white);
  background-color: var(--maeq-navy02);

  font-size: 20px;
  font-weight: var(--w-semibold);
  letter-spacing: 2px;
  line-height: 1;
}

.closing-cta-button__download-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;

  color: var(--maeq-navy02);
  white-space: nowrap;
}

.closing-cta-button__download-text small {
  font-size: 15px;
  font-weight: var(--w-bold);
  line-height: 1.2;
}

.closing-cta-button__download-text strong {
  font-size: 22px;
  font-weight: var(--w-bold);
  line-height: 1.2;
}


/* ========================================
  最終CTA：スマホ
======================================== */

@media screen and (max-width: 767px) {
  .closing-cta {
    padding: 60px 20px 48px;
  }

  .closing-cta::before {
    height: 74px;

    background-size: auto 74px;
  }

  .closing-cta__inner {
    grid-template-columns: minmax(0, 470px);
    gap: 24px;
  }


  /* カード */

  .closing-cta-card {
    gap: 24px;

    padding: 28px 20px 32px;

    border-radius: 14px;
  }


  /* タイトル */

  .closing-cta-card__title {
    font-size: 22px;
  }


  /* 説明 */

  .closing-cta-card__detail {
    gap: 16px;
  }

  .closing-cta-card__icon {
    flex-basis: 70px;

    width: 70px;
    height: 82px;
  }

  .closing-cta-card__icon--contact img {
    width: 69px;
    height: 53px;
  }

  .closing-cta-card__icon--download img {
    width: 65px;
    height: 80px;
  }

  .closing-cta-card__description,
  .closing-cta-card__description>p,
  .closing-cta-card__description li {
    font-size: 13px;
  }


  /* ボタン共通 */

  .closing-cta-button {
    width: 100%;
    height: 64px;
  }

  .closing-cta-button__arrow {
    width: 13px;
    height: 26px;
  }


  /* お問い合わせボタン */

  .closing-cta-button--contact {
    position: relative;

    justify-content: center;

    padding: 10px 44px;
  }

  .closing-cta-button--contact strong {
    font-size: 20px;
    text-align: center;
  }

  .closing-cta-button--contact .closing-cta-button__arrow {
    position: absolute;
    top: 50%;
    right: 18px;

    margin-left: 0;

    transform: translateY(-50%);
  }


  /* 資料ダウンロードボタン */

  .closing-cta-button--download {
    position: relative;

    justify-content: center;
    gap: 0;

    padding: 8px 42px 8px 82px;
  }

  .closing-cta-button__free {
    position: absolute;
    top: 50%;
    left: calc(50% - 110px);

    padding: 5px 8px;

    font-size: 16px;

    transform: translateY(-50%);
  }

  .closing-cta-button__download-text {
    align-items: center;

    text-align: center;
  }

  .closing-cta-button__download-text small {
    font-size: 12px;
  }

  .closing-cta-button__download-text strong {
    font-size: 18px;
  }

  .closing-cta-button--download .closing-cta-button__arrow {
    position: absolute;
    top: 50%;
    right: 18px;

    margin-left: 0;

    transform: translateY(-50%);
  }
}

@media screen and (max-width: 410px) {
  .closing-cta-card__title {
    font-size: 18px;
  }
}

/* ========================================
  ララPayプラスPR
======================================== */

.lalapay-pr {
  padding: 60px 20px;

  background-color: var(--lalapay-navy);
}

.lalapay-pr__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  box-sizing: border-box;
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 60px 20px;

  border-radius: 36px;

  background-color: var(--maeq-white);
}


/* ========================================
  ララPayプラスPR：タイトル
======================================== */

.lalapay-pr__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  width: 100%;
  margin: 0;

  color: var(--maeq-black01);
  font-size: 28px;
  font-weight: var(--w-bold);
  line-height: 1.6;
  text-align: center;
}

.lalapay-pr__attention {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  padding: 0 10px;

  border-radius: 4px;

  color: var(--maeq-white);
  background-color: var(--lalapay-navy);

  font-size: 24px;
  font-weight: var(--w-bold);
  line-height: 1.6;
}


/* ========================================
  ララPayプラスPR：詳細
======================================== */

.lalapay-pr__detail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}


/* ========================================
  ララPayプラスPR：スマートフォン画像
======================================== */

.lalapay-pr__mock {
  flex: 0 0 280px;

  width: 280px;
  height: 293px;
}

.lalapay-pr__mock img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* ========================================
  ララPayプラスPR：右側
======================================== */

.lalapay-pr__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;

  width: 448px;
}


/* ララPayプラスロゴ前後の文章 */

.lalapay-pr__introduction {
  display: flex;
  align-items: flex-end;
  gap: 8px;

  margin: 0;

  color: var(--maeq-black01);
  font-size: 18px;
  font-weight: var(--w-bold);
  line-height: 2;
  white-space: nowrap;
}

.lalapay-pr__introduction img {
  display: block;

  width: 178px;
  height: 49px;

  object-fit: contain;
}


/* 4つのポイント */

.lalapay-pr__point {
  display: block;

  width: 448px;
  height: 180px;

  object-fit: contain;
}


/* ========================================
  ララPayプラスPR：リンクボタン
======================================== */

.lalapay-pr__link {
  color: var(--lalapay-navy);
  border-color: var(--lalapay-navy);
}

.lalapay-pr__link:focus-visible {
  outline-color: var(--lalapay-navy);
}


/* ========================================
  ララPayプラスPR：スマホ
======================================== */

@media screen and (max-width: 767px) {
  .lalapay-pr {
    padding: 60px 20px;
  }

  .lalapay-pr__inner {
    gap: 28px;

    padding: 40px 20px;

    border-radius: 24px;
  }


  /* タイトル */

  .lalapay-pr__title {
    flex-direction: column;
    gap: 10px;

    font-size: 22px;
    line-height: 1.5;
  }

  .lalapay-pr__attention {
    padding: 2px 10px;

    font-size: 18px;
  }


  /* 詳細 */

  .lalapay-pr__detail {
    flex-direction: column;
    align-items: center;
    gap: 24px;

    width: 100%;
  }


  /* スマートフォン画像 */

  .lalapay-pr__mock {
    flex-basis: auto;

    width: min(260px, 100%);
    height: auto;
  }

  .lalapay-pr__mock img {
    height: auto;
  }


  /* 右側 */

  .lalapay-pr__content {
    align-items: center;

    width: 100%;
  }

  .lalapay-pr__introduction {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 6px;

    font-size: 14px;
    line-height: 1.6;
    white-space: normal;
  }

  .lalapay-pr__introduction img {
    width: 140px;
    height: auto;
  }

  .lalapay-pr__point {
    width: 100%;
    height: auto;
  }


  /* リンクボタン */

  .lalapay-pr__link {
    font-size: 15px;
  }
}

/* ========================================
  会社アプリPR
======================================== */

.company-app-pr {
  padding: 60px 20px;

  background-color: var(--maeq-white);
}

.company-app-pr__inner {
  box-sizing: border-box;

  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 54px 20px;

  border: 16px solid #fccb00;

  background-color: var(--maeq-white);
}


/* ========================================
  タイトル
======================================== */

.company-app-pr__title {
  margin: 0;

  color: #111;
  font-size: 32px;
  font-weight: var(--w-bold);
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
}


/* ========================================
  説明エリア
======================================== */

.company-app-pr__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;

  margin-top: 16px;
}

.company-app-pr__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;

  width: 435px;
}


/* ========================================
  会社アプリのサービス名
======================================== */

.company-app-pr__service {
  width: 366px;
}

.company-app-pr__service-label {
  margin: 0 0 4px;

  color: #111;
  font-size: 24px;
  font-weight: var(--w-medium);
  letter-spacing: 0;
  line-height: 1.6;
}

.company-app-pr__service-name {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 363px;
}

.company-app-pr__service-name img {
  display: block;

  width: 297px;
  height: 73px;

  object-fit: contain;
}

.company-app-pr__service-name strong {
  flex: 0 0 auto;

  color: #111;
  font-size: 32px;
  font-weight: var(--w-bold);
  letter-spacing: 0;
  line-height: 1.6;
}


/* ========================================
  説明文
======================================== */

.company-app-pr__description {
  margin: 0;

  color: #111;
  font-size: 16px;
  font-weight: var(--w-medium);
  letter-spacing: 0;
  line-height: 1.84;
}

.company-app-pr__description strong {
  font-size: 18px;
  font-weight: var(--w-bold);
}


/* ========================================
  スマートフォン画像
======================================== */

.company-app-pr__visual {
  flex: 0 0 260px;

  width: 260px;
}

.company-app-pr__visual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* ========================================
  リンクボタン
======================================== */

.company-app-pr__button {
  margin: 40px auto 0;
  border-color: var(--maeq-black01);
  color: var(--maeq-black01);
}


/* ========================================
  スマホ版
======================================== */

@media screen and (max-width: 767px) {
  .company-app-pr {
    padding: 40px 15px;
  }

  .company-app-pr__inner {
    padding: 40px 20px;

    border-width: 8px;
  }


  /* タイトル */

  .company-app-pr__title {
    font-size: 22px;
    line-height: 1.5;
  }


  /* 説明エリア */

  .company-app-pr__detail {
    flex-direction: column;
    align-items: center;
    gap: 24px;

    margin-top: 30px;
  }

  .company-app-pr__content {
    align-items: center;
    gap: 20px;

    width: 100%;
  }


  /* サービス名 */

  .company-app-pr__service {
    width: 100%;
    max-width: 300px;
  }

  .company-app-pr__service-label {
    font-size: 17px;
  }

  .company-app-pr__service-name {
    gap: 8px;

    width: 100%;
  }

  .company-app-pr__service-name img {
    width: calc(100% - 50px);
    height: auto;
  }

  .company-app-pr__service-name strong {
    font-size: 24px;
  }


  /* 説明文 */

  .company-app-pr__description {
    font-size: 14px;
    line-height: 1.8;
  }

  .company-app-pr__description strong {
    font-size: 15px;
  }

  .company-app-pr__description br {
    display: none;
  }


  /* モック画像 */

  .company-app-pr__visual {
    flex-basis: auto;

    width: 200px;
    height: auto;
  }

  .company-app-pr__visual img {
    height: auto;
  }


  /* ボタン */

  .company-app-pr__button {
    width: 100%;
    max-width: 350px;
    margin-top: 30px;
  }
}

/* ========================================
  スマホレイアウトの最大幅
======================================== */

@media screen and (max-width: 767px) {
  body {
    background-color: var(--maeq-white);
  }


  /* ページ本体 */

  main {
    width: 100%;
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }


  /* フッター */

  footer {
    width: 100%;
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }


  /* ヘッダー内のコンテンツ */

  .maeq-header__inner {
    width: 100%;
    max-width: 446px;
    margin-right: auto;
    margin-left: auto;
  }
}