@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;800&display=swap');

/* =============================================================
   Reset & Base
============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 62.5%; }
body {
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-weight: normal;
  line-height: 1.8;
  color: #222;
  background: #fff;
}
@media only screen and (max-width: 768px) { body { font-size: 3.7333333333vw; } }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }
a { color: #5b7cfe; text-decoration: none; }
a:hover { opacity: .8; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0; line-height: 1.4; }

/* =============================================================
   Utility: Image Placeholder
============================================================= */
.u-img-placeholder {
  background: #d4d4d4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #888;
  min-height: 160px;
  width: 100%;
}
.u-img-placeholder--circle {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  min-height: unset;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.u-img-placeholder--icon {
  border-radius: 8px;
  width: 64px;
  height: 64px;
  min-height: unset;
  font-size: 1rem;
  flex-shrink: 0;
}
.u-img-placeholder--demo {
  min-height: 200px;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 10px;
}
.u-img-placeholder--portrait {
  width: 180px;
  height: 220px;
  min-height: unset;
  flex-shrink: 0;
  border-radius: 8px;
}
.sp-only {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}
@media only screen and (max-width: 768px) {
  .u-img-placeholder--circle  { width: 20vw; height: 20vw; }
  .u-img-placeholder--icon    { width: 13vw; height: 13vw; }
  .u-img-placeholder--demo    { min-height: 40vw; }
  .u-img-placeholder--portrait{ width: 100%; height: 50vw; }
}

/* =============================================================
   header
============================================================= */
.header {
  background: #fff;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
}
@media only screen and (max-width: 768px) { .header { height: 14vw; padding: 0 4vw; } }

.header__logo { display: flex; align-items: center; line-height: 0; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media only screen and (max-width: 960px) { .header__nav { display: none; } }

.header__nav-item {
  font-size: 1.4rem;
  color: #333;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .2s;
}
.header__nav-item:hover { background: #f0f4ff; color: #5b7cfe; opacity: 1; }
.header__nav-caret {
  display: inline-block;
  width: 12px;
  height: 8px;
  margin-left: 6px;
  background: url('/media_library/lp/ai-agent/images/icon_nav.svg') no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.header__nav-item--cta {
  background: linear-gradient(90deg, #4a7fe8, #8a6cee);
  color: #fff;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-left: 8px;
  letter-spacing: .06em;
  transition: transform .2s;
}
.header__nav-item--cta:hover {
  transform: translateY(2px);
  background: linear-gradient(90deg, #4a7fe8, #8a6cee);
  color: #fff;
}

.header__inline-cta {
  display: none;
}

.header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.header__toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #2a4ea0;
  transform-origin: center;
  transition: transform .2s, opacity .2s;
}
.header__toggle-line:nth-child(1) {
  transform: translate(-50%, -8px);
}
.header__toggle-line:nth-child(2) {
  transform: translate(-50%, 0);
}
.header__toggle-line:nth-child(3) {
  transform: translate(-50%, 8px);
}

.header__mobile-nav {
  display: none;
}

body.is-nav-open {
  overflow: hidden;
}

@media only screen and (max-width: 960px) {
  .header {
    justify-content: flex-start;
  }

  .header__toggle {
    display: inline-flex;
    margin-left: 8px;
  }

  .header__inline-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: linear-gradient(90deg, #4a7fe8, #8a6cee);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    letter-spacing: .03em;
  }

  .header__mobile-nav {
    display: block;
    position: fixed;
    top: 64px;
    right: 0;
    width: min(84vw, 340px);
    height: calc(100vh - 64px);
    background: #fff;
    box-shadow: -8px 0 24px rgba(0,0,0,.12);
    padding: 20px;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 110;
  }

  .header.is-open .header__mobile-nav {
    transform: translateX(0);
  }

  .header__mobile-item {
    display: block;
    font-size: 1.7rem;
    font-weight: 500;
    color: #2b3e6f;
    padding: 12px 4px;
    border-bottom: 1px solid #e1e8f7;
  }

  .header__mobile-item--cta {
    margin-top: 12px;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #4a7fe8, #8a6cee);
    border-radius: 999px;
    border-bottom: none;
    padding: 12px 18px;
    font-weight: 700;
  }

  .header.is-open .header__toggle-line:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
  }
  .header.is-open .header__toggle-line:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, 0) scaleX(0);
  }
  .header.is-open .header__toggle-line:nth-child(3) {
    transform: translate(-50%, 0) rotate(-45deg);
  }
}

@media only screen and (max-width: 768px) {
  .header__inline-cta {
    font-size: 3.3vw;
    height: 8vw;
    padding: 0 3.2vw;
  }

  .header__mobile-nav {
    top: 14vw;
    height: calc(100vh - 14vw);
    width: 100vw;
    padding: 5vw 6vw;
  }
  .header__mobile-item {
    font-size: 4.6vw;
    padding: 3.5vw 0;
  }
  .header__mobile-item--cta {
    margin-top: 5vw;
    padding: 3.8vw 4vw;
    font-size: 4.4vw;
  }
}

/* =============================================================
   main
============================================================= */
.main { margin-top: 64px; }
@media only screen and (max-width: 768px) { .main { margin-top: 14vw; } }

/* =============================================================
   section  (汎用レイアウト)
============================================================= */
.section { padding: 100px 0; }
@media only screen and (max-width: 768px) { .section { padding: 14vw 0; } }

.section--white { background: #fff; }
.section--light { background: #f0f3ff; }

#sec-agents {
  background-color: #d0d9fe;
  background-image: url('/media_library/lp/ai-agent/images/bg_ai-agent_wave.png');
  background-repeat: no-repeat;
  background-position: center
}

.section__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (max-width: 768px) { .section__inner { padding: 0 5vw; } }

.section__heading {
  font-size: 3.0rem;
  font-weight: 800;
  color: #2272ea;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.5;
  letter-spacing: .03em;
}
@media only screen and (max-width: 768px) {
  .section__heading { font-size: 5.5vw; margin-bottom: 10vw; }
}

.section__heading-sub {
  display: block;
  font-size: .80em;
  margin-top: 8px;
  letter-spacing: .02em;
}

/* =============================================================
   mv
============================================================= */
.mv {
  background-color: #5e69f2;;
  background-image: url('/media_library/lp/ai-agent/images/mv_ai-agent_bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  padding: 60px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) { .mv { padding: 20vw 5vw 16vw; } }
.mv__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.mv__lead {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .05em;
  font-weight: 600;
  text-shadow: 0 0px 10px rgb(120 74 232 / 90%);
  line-height: 1.4;
}
.mv__lead-em {
  background-color: #603ad569;
  padding: 0px 3px;
  font-weight: 600;
  font-style: normal;
}
.mv__lead-keyword {
  font-size: 1.3em;
}

@media only screen and (max-width: 768px) { .mv__lead { font-size: 4.2666666667vw; } }

.mv__title {
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 28px;
  line-height: 1.2;
  text-shadow: 0 0px 10px rgb(120 74 232 / 90%);
}
@media only screen and (max-width: 768px) { .mv__title { font-size: 7.5vw; margin-bottom: 6vw; } }

.mv__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) { .mv__badges { gap: 3vw; margin-bottom: 5vw; } }

/* mv-badge (sub-block) */
.mv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 0;
  padding: 9px 18px;
  min-width: 170px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2a6a;
  background: #fff;
  width: 300px;
}
.mv-badge--fx  { color: #2758bf; }
.mv-badge--oms { color: #5b43bf; }
@media only screen and (max-width: 768px) { .mv-badge { font-size: 4.2666666667vw; padding: 2vw 4vw; min-width: 38vw; } }

.mv-badge__logo {
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .mv-badge__logo {
    height: 7vw;
  }
}

.mv-badge__icon {
  background: rgba(255,255,255,.22);
  border-radius: 50px;
  padding: 2px 9px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.mv__desc {
  font-size: 2rem;
  color: #fff;
  margin: 0;
  letter-spacing: .1em;
  text-shadow: 0 0px 10px rgb(120 74 232 / 90%);
}
@media only screen and (max-width: 768px) { .mv__desc { font-size: 4vw; } }

/* =============================================================
   block-card  (青ヘッダー付きカード)
============================================================= */
.block-card {
  overflow: hidden;
}
.block-card--mt { margin-top: 60px; }
@media only screen and (max-width: 768px) { .block-card--mt { margin-top: 8vw; } }

.block-card__header {
  background: #5b7cfe;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 5px 24px;
  text-align: center;
  letter-spacing: .04em;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) { .block-card__header { font-size: 4.8vw; padding: 1.5vw 4vw; } }

.block-card__body { padding: 0; margin-bottom: 20px; }

/* =============================================================
   ai-compare  (生成AI vs AIエージェント)
============================================================= */
.ai-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 28px 32px;
}
@media only screen and (max-width: 768px) { .ai-compare { padding: 5vw 4vw; } }

.ai-compare__col {
  padding: 0;
  background: transparent;
  margin-bottom: 20px;
}
.ai-compare__col:last-of-type {
  margin-bottom: 0;
}
.ai-compare__col--gen { background: transparent; }
.ai-compare__col--agent { background: transparent; }
@media only screen and (max-width: 768px) { .ai-compare__col { padding: 0; } }

.ai-compare__col-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a4ea0;
  margin-bottom: 12px;
}
@media only screen and (max-width: 768px) { .ai-compare__col-title { font-size: 4.8vw; } }

.ai-compare__col-label {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.65;
}
@media only screen and (max-width: 768px) { .ai-compare__col-label { font-size: 4.2666666667vw; } }

.ai-compare__col-note {
  font-size: 1.6rem;
  color: #5b7cfe;
  font-weight: 600;
  margin: 0;
}
@media only screen and (max-width: 768px) { .ai-compare__col-note { font-size: 4.2666666667vw; } }

.ai-compare__result {
  background: #fff;
  border: 6px solid #cedffe;
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  font-size: 2.4rem;
  color: #333;
  line-height: 1.7;
  position: relative;
  margin-top: 35px;
}
.ai-compare__result::before {
  content: '▼';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: #5b7cfe;
}
.ai-compare__result strong { color: #2a4ea0; font-weight: 700; }
@media only screen and (max-width: 768px) { .ai-compare__result { font-size: 4.8vw; padding: 5vw 4vw; margin-top: 5vw; } }

/* =============================================================
   legal  (法的義務)
============================================================= */
.legal {
/*
  display: flex;
  gap: 40px;
  align-items: center;
*/
  padding: 0 30px 30px;
  position:relative;
}
@media only screen and (max-width: 768px) { .legal { flex-direction: column; padding: 5vw 4vw; gap: 6vw; } }

.legal__intro {
  text-align: center;
}

.legal__text { flex: 1; }


.legal__visual { flex-shrink: 0; 
    position: absolute;
    top: 0;
    right: 0;
}
.legal__img {
  border-radius: 8px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) { 
.legal__visual {
 width: 100%; 
display:none;
} 
}

.legal__heading {
  font-size: 2.2rem;
  font-weight: 700;
  border-left: 5px solid #5b7cfe;
  padding-left: 12px;
  margin: 40px 0 24px;
  line-height: 1.4;
}
.legal__heading--mt { margin-top: 24px; }
@media only screen and (max-width: 768px) {
  .legal__heading { font-size: 4.5vw; margin: 8vw 0 5vw; }
  .legal__heading--mt { margin-top: 5vw; }
}

.legal__list { margin-bottom: 4px; }

.legal__list-item {
  font-size: 1.8rem;
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.65;
  font-weight: 500;
}
.legal__list-item::before {
  content: '';
  position: absolute;
  left: 3px; top: 13px;
  width: 7px; height: 7px;
  background: #5b7cfe;
  border-radius: 50%;
}

.legal__list-item span {font-weight:normal; font-size:1.7rem}

.legal__list--check .legal__list-item {
  padding-left: 28px;
}
.legal__list--check .legal__list-item::before {
  left: -2px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: url('/media_library/lp/ai-agent/images/icon_check.svg') no-repeat center center;
  background-size: contain;
  border-radius: 0;
}
@media only screen and (max-width: 768px) {
   .legal__list-item { font-size: 4vw; } 
   .legal__list--check .legal__list-item::before {
      top: 7px;
      width: 18px;
   }
  }

.legal__law-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 12px 0 4px;
}
.legal__law-name--mt { margin-top: 16px; }
@media only screen and (max-width: 768px) { .legal__law-name { font-size: 4vw; } }

/* =============================================================
   solution  (3つの考え方)
============================================================= */
.solution {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 768px) { .solution { grid-template-columns: 1fr; gap: 5vw; } }

.solution__card {
  background: #fff;
  border: 1px solid #d0daf0;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}
@media only screen and (max-width: 768px) { .solution__card { padding: 6vw 4vw; } }

.solution__label {
  font-size: 1.5rem;
  color: #b8aae5;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) { .solution__label { font-size: 3.3vw; } }

.solution__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.solution__img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .solution__img {
    height: 20vw;
  }
}

.solution__title {
  font-size: 2rem;
  font-weight: 700;
  color: #4f73e5;
  margin-bottom: 16px;
  line-height: 1.5;
  height:55px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) { .solution__title { font-size: 4.8vw; height:auto
  ;} }

.solution__list-item {
  font-size: 1.6rem;
  text-align: left;
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.65;
}
.solution__list-item::before {
  content: '';
  position: absolute;
  left: 3px; top: 1em;
  width: 6px; height: 6px;
  background: #7c5ce6;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) { .solution__list-item { font-size: 4vw; } }

/* =============================================================
   agent  (FX / OMS エージェントカード)
============================================================= */
.agent {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
}
.agent + .agent { margin-top: 40px; }
@media only screen and (max-width: 768px) { .agent + .agent { margin-top: 8vw; } }

.agent__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 308px;
  font-size: 2.0rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 5px 28px;
  border-radius: 999px;
  letter-spacing: .06em;
  margin-bottom: 30px;
  width: 100%;
}
.agent__tag--fx  { background: #5b7cfe; }
.agent__tag--oms { background: #7c5ce6; }
@media only screen and (max-width: 768px) {
  .agent {
    padding: 4vw 4vw 5vw;
  }
  .agent__tag {
    min-width: 0;
    width: 100%;
    font-size: 4.2vw;
    padding: 1.8vw 2vw;
  }
}

.agent__body { padding: 16px 6px 0; }
@media only screen and (max-width: 768px) { .agent__body { padding: 4vw 1vw 0; } }

.agent__top {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .agent__top { flex-direction: column; gap: 4vw; margin-bottom: 5vw; }
}

.agent__info { flex: 1; text-align: center; }

.agent__movie { flex-shrink: 0; width: 400px; }
.agent__movie-demo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: .02em;
}
@media only screen and (max-width: 900px) {
  .agent__top { flex-direction: column; }
  .agent__info { margin: 0 auto; text-align: center; }
  .agent__movie { width: 100%; }
}
@media only screen and (max-width: 768px) {
  .agent__movie-demo { font-size: 8vw; }
}

.agent__logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.agent__logo-img {
  width: 350px;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) { .agent__logo-img { width: 68vw; } }

.agent__desc {
  font-size: 1.6rem;
  font-weight: normal;
  margin: 0;
  line-height: 1.55;
}
@media only screen and (max-width: 768px) { .agent__desc { font-size: 4.2vw; } }

.agent__skills {
  padding-top: 2px;
}
@media only screen and (max-width: 768px) { .agent__skills { padding-top: 5vw; } }

.agent__skills-heading {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 7px;
  border-bottom: 2px solid #c4d2f4;
  line-height: 1.4;
}
.agent__skills-heading--fx  { color: #5b7cfe; }
.agent__skills-heading--oms { color: #7c5ce6; }
@media only screen and (max-width: 768px) { .agent__skills-heading { font-size: 4.2vw; } }

.agent__skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}
@media only screen and (max-width: 768px) { .agent__skills-grid { grid-template-columns: 1fr; } }

.agent__skills-list {
  margin: 0;
  padding: 0;
}

.agent__skills-item {
  font-size: 1.65rem;
  font-weight: 600;
  padding: 2px 0 2px 16px;
  position: relative;
  line-height: 1.42;
  margin-bottom: 7px;
}
.agent__skills-item:last-child { margin-bottom: 0; }
.agent__skills-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: .8em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #c3cff7;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .agent__skills-item {
    font-size: 4vw;
    padding: .4vw 0 .4vw 4.2vw;
    margin-bottom: 1.3vw;
  }
  .agent__skills-item::before {
    width: 1.6vw;
    height: 1.6vw;
  }
}

.agent__expand-note {
  margin: 20px 0;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 500;
  color: #5378ee;
  line-height: 1.45;
}
@media only screen and (max-width: 768px) {
  .agent__expand-note {
    font-size: 4vw;
    margin: 3.5vw 0 3vw;
  }
}

.summary {
  border-left: 2px solid #bcc9f1;
  padding: 0 0 0 20px;
}

.summary--mt-lg {
  margin-top: 50px;
}

.summary__text,
.summary-text {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.55;
  margin: 0;
}

.summary__text--right {
  text-align: right;
}

.summary__link,
.summary-link {
  margin: 2px 0 0;
  text-align: right;
}

.summary__link a,
.summary-link a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d6fe8;
  text-decoration: underline;
}

.summary__link-external,
.link-external {
    background: center right / contain no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%231366E2'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 22px;
}
@media only screen and (max-width: 768px) {
  .summary {
    border-left-width: .8vw;
    padding-left: 2.4vw;
  }
  .summary--mt-lg {
    margin-top: 8vw;
  }
  .summary__text,
  .summary-text {
    font-size: 3.8vw;
  }
  .summary__link a,
  .summary-link a {
    font-size: 4vw;
  }
}

/* =============================================================
   stat  (統計データ)
============================================================= */
.stat {
  position: relative;
  display: flex;
  width: 75%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 35px;
  margin: 0 auto;
  background: #fff;
  border: 4px solid #cedffe;;
  border-radius: 20px;
}
.stat::before,
.stat::after {
  position: absolute;
}
.stat::before {
  content: '';
  top: -18px;
  left: 10px;
  background: url('/media_library/lp/ai-agent/images/icon_quote_start.svg') no-repeat center center;
  width: 40px;
  height: 33px;
}
.stat::after {
  content: '';
  right: 10px;
  bottom: -20px;
  background: url('/media_library/lp/ai-agent/images/icon_quote_end.svg') no-repeat center center;
  width: 40px;
  height: 33px;
}
@media only screen and (max-width: 768px) {
  .stat {
    flex-direction: column;
    padding: 8vw 5vw 6vw;
    gap: 4vw;
    text-align: center;
    border-width: 0.8vw;
    border-radius: 5vw;
    width: 100%;
  }
  .stat::before,
  .stat::after {
    font-size: 13vw;
  }
  .stat::before {
    top: -3.5vw;
    left: 2.5vw;
  }
  .stat::after {
    right: 2.5vw;
    bottom: -2.5vw;
  }
}

.stat__quote {
  flex: 1;
  padding-left: 0;
  padding-right: 10px;
}
@media only screen and (max-width: 768px) {
  .stat__quote { padding-right: 0; }
}

.stat__quote-text {
  font-size: 2.0rem;
  color: #4f73e5;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}
@media only screen and (max-width: 768px) { .stat__quote-text { font-size: 4.6vw; } }

.stat__number {
  font-size: 8rem;
  font-weight: 900;
  color: #5b7cfe;
  line-height: 1;
  flex-shrink: 0;
}
.stat__number-img {
  width: 240px;
  height: auto;
}
.stat__number-unit { font-size: 3.5rem; }
@media only screen and (max-width: 768px) {
  .stat__number { font-size: 18vw; }
  .stat__number-img { width: 58vw; }
  .stat__number-unit { font-size: 7vw; }
}

/* =============================================================
   inner-heading  (セクション内見出し)
============================================================= */
.inner-heading {
  font-size: 2.2rem;
  font-weight: 700;
  border-left: 5px solid #5b7cfe;
  padding-left: 12px;
  margin: 40px 0 24px;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) { .inner-heading { font-size: 4.5vw; margin: 8vw 0 5vw; } }

/* =============================================================
   learning-loop  (学習ループ)
============================================================= */
.learning-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .learning-loop {
    grid-template-columns: 1fr;
    gap: 8vw;
    margin: 40px 0 20px;
  }
}

.learning-loop__step {
  position: relative;
  background: #fff;
  border: 1px solid #d0daf0;
  border-radius: 10px;
  padding: 30px 14px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .learning-loop__step {
    padding: 9vw 5vw 5vw;
    gap: 3vw;
  }
}

.learning-loop__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: #5b7cfe;
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .learning-loop__num {
    top: -4vw;
    width: 10vw;
    height: 10vw;
    font-size: 4.5vw;
  }
}

.learning-loop__icon { flex-shrink: 0; }
.learning-loop__img {
  width: auto;
  height: auto;
  object-fit: contain;
 padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  .learning-loop__img {
    width: auto;
    height: auto;
  }
}

.learning-loop__text {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) { .learning-loop__text { font-size: 4vw; } }

.learning-loop__arrow {
  font-size: 4rem;
  color: #5b7cfe;
  flex-shrink: 0;
  align-self: center;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .learning-loop__arrow {
    font-size: 6vw;
    align-self: center;
    transform: rotate(90deg);
    padding: 2vw 0;
    display: block;
    text-align: center;
  }
}

.learning-loop__result {
  background: #fff;
  border: 6px solid #cedffe;
  border-radius: 16px;
  text-align: center;
  padding: 28px 32px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #6684fe;
  margin-top: 35px;
  position: relative;
}
.learning-loop__result::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 36px;
  background: url('/media_library/lp/ai-agent/images/icon_result.svg') no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .learning-loop__result { font-size: 4.3vw; padding: 5vw 4vw; margin-top: 5vw; }
}

/* =============================================================
   ai-diff  (一般的なAIとの違い)
============================================================= */
.ai-diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 28px 32px 0;
}
@media only screen and (max-width: 768px) { .ai-diff { grid-template-columns: 1fr; padding: 5vw 4vw 0; } }

.ai-diff__col { padding-bottom: 24px; }
.ai-diff__col:first-child { padding-right: 28px; border-right: 1px solid #dde8f5; }
.ai-diff__col:last-child  { padding-left: 28px; }
@media only screen and (max-width: 768px) {
  .ai-diff__col:first-child {
    padding-right: 0; border-right: none;
    border-bottom: 1px solid #dde8f5;
    padding-bottom: 5vw; margin-bottom: 5vw;
  }
  .ai-diff__col:last-child { padding-left: 0; }
}

.ai-diff__col-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid;
}
.ai-diff__col--generic .ai-diff__col-title { color: #666; border-color: #aaa; }
.ai-diff__col--tkc     .ai-diff__col-title { color: #2a4ea0; border-color: #5b7cfe; }
@media only screen and (max-width: 768px) { .ai-diff__col-title { font-size: 4.8vw; } }

.ai-diff__list-item {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #333;
  line-height: 1.65;
}
.ai-diff__list--ng .ai-diff__list-item::before {
  content: '✕';
  position: absolute; left: 2px; top: 6px;
  font-size: 1.3rem;
  color: #999;
}
.ai-diff__list--ok .ai-diff__list-item::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: url('/media_library/lp/ai-agent/images/icon_check.svg') no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 768px) { .ai-diff__list-item { font-size: 4vw; } }

.ai-diff__result {
  background: #fff;
  border: 6px solid #cedffe;
  border-radius: 16px;
  text-align: center;
  padding: 28px 32px;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 35px 0 0;
  position: relative;
  line-height: 1.4;
}
.ai-diff__result::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 36px;
  background: url('/media_library/lp/ai-agent/images/icon_result.svg') no-repeat center center;
  background-size: contain;
}
.ai-diff__result strong { color: #6684fe; font-size: 2.6rem;}
@media only screen and (max-width: 768px) { .ai-diff__result { font-size: 4.3vw; padding: 5vw 4vw; margin-top: 5vw; } .ai-diff__result strong{font-size: 4.6vw;}}

/* =============================================================
   foundry  (Microsoft Foundry 5つの理由)
============================================================= */
.foundry {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) { .foundry { gap: 3.2vw;  width: 100%; } }

.foundry__card {
  background: #e7edf8;
  border-radius: 16px;
  padding: 20px 25px;
}
@media only screen and (max-width: 768px) { .foundry__card { border-radius: 3.2vw; padding: 3.6vw 3.8vw; } }

.foundry__card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) { .foundry__card-inner { gap: 3.4vw; flex-direction: column; text-align: center; margin: 0 auto; } }

.foundry__icon {
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) { .foundry__icon { width: 15vw; } }

.foundry__img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.foundry__content {
  flex: 1;
}

.foundry__tag {
  display: inline-block;
  background: #5e79e8;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) { .foundry__tag { font-size: 3.4vw; padding: 1.4vw 3.4vw; margin-bottom: 2vw; } }

.foundry__title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #5577eb;
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: .02em;
}
@media only screen and (max-width: 768px) { .foundry__title { font-size: 6vw; margin-bottom: 1.5vw; } }

.foundry__text {
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) { .foundry__text { font-size: 3.5vw; line-height: 1.7; font-weight: 600; } }

/* =============================================================
   schedule  (リリースタイムライン)
============================================================= */
.schedule__year {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4ea0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) { .schedule__year { font-size: 4.5vw; } }

.schedule {
  display: flex;
  position: relative;
}
.schedule::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  height: 3px;
  background: #c0cef0;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .schedule { flex-direction: column; }
  .schedule::before {
    top: 12px; bottom: 12px;
    left: 12px; right: auto;
    width: 3px; height: auto;
  }
}

.schedule__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .schedule__item { flex-direction: row; align-items: flex-start; padding-bottom: 20px; }
}

.schedule__dot {
  width: 26px; height: 26px;
  background: #fff;
  border: 3px solid #5b7cfe;
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.schedule__dot--active { background: #5b7cfe; }
@media only screen and (max-width: 768px) {
  .schedule__dot { margin-bottom: 0; margin-right: 14px; margin-top: 3px; }
}

.schedule__month {
  font-size: 1.6rem;
  font-weight: 700;
  color: #5b7cfe;
  margin-bottom: 8px;
  text-align: center;
}
@media only screen and (max-width: 768px) { .schedule__month { display: none; } }

.schedule__box {
  background: #fff;
  border: 1px solid #d0daf0;
  border-radius: 8px;
  padding: 14px 12px;
  width: 88%;
  text-align: center;
}
.schedule__box--active {
  border-color: #5b7cfe;
  background: #f0f5ff;
}
@media only screen and (max-width: 768px) { .schedule__box { width: 100%; text-align: left; padding: 3vw; } }

.schedule__box-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2a6a;
  margin-bottom: 6px;
}
@media only screen and (max-width: 768px) { .schedule__box-title { font-size: 4vw; } }

/* SP向け月表示 */
.schedule__box-month {
  display: none;
  font-size: .85em;
  color: #5b7cfe;
  margin-right: 4px;
}
@media only screen and (max-width: 768px) { .schedule__box-month { display: inline; } }

.schedule__box-text {
  font-size: 1.5rem;
  color: #555;
  margin: 0;
  line-height: 1.65;
}
@media only screen and (max-width: 768px) { .schedule__box-text { font-size: 3.8vw; } }

.schedule-media {
  width: 100%;
}
.schedule-media__img {
  width: 100%;
  height: auto;
}
.schedule-media__img--sp { display: none; }
@media only screen and (max-width: 768px) {
  .schedule-media__img--pc { display: none; }
  .schedule-media__img--sp { display: block; }
}

/* =============================================================
   message  (代表者メッセージ)
============================================================= */
.message {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) { .message { flex-direction: column; gap: 6vw; } }

.message__content { flex: 1; }
.message__photo { flex-shrink: 0; }
.message__img {
  height: auto;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) { .message__photo { width: 100%; } }

.message__text {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.9;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) { .message__text { font-size: 4.3vw; } }

.message__sign {
  font-size: 1.6rem;
  text-align: right;
  line-height: 1.7;
  margin: 24px 0 0;
}
@media only screen and (max-width: 768px) { .message__sign { font-size: 4vw; margin-top: 5vw; } }

.message__sign span {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) { .message__sign  span { font-size: 4.3vw; margin-top: 5vw; } }
/* =============================================================
   cta  (お問合せ)
============================================================= */
.cta {
  background: linear-gradient(135deg, #93a8fe 0%, #cbbff4 100%);
  padding: 80px 24px;
  text-align: center;
}
@media only screen and (max-width: 768px) { .cta { padding: 14vw 5vw; } }

.cta__inner { max-width: 960px; margin: 0 auto; }

.cta__heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 36px;
  letter-spacing: .04em;
}
@media only screen and (max-width: 768px) { .cta__heading { font-size: 6vw; margin-bottom: 7vw; } }

.cta__btn {
  display: inline-block;
  background: linear-gradient(90deg, #4a7fe8, #8a6cee);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding: 18px 140px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(74,127,232,.45);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .06em;
}
.cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(74,127,232,.55);
  opacity: 1;
}
@media only screen and (max-width: 768px) { .cta__btn { font-size: 4.8vw; padding: 4vw; width:80vw; } }

/* =============================================================
   footer
============================================================= */
.footer {
  background: #fff;
  border-top: 1px solid #e0e8f5;
  padding: 5px;
  text-align: center;
}
.footer__inner { max-width: 960px; margin: 0 auto; }
.footer__copy { font-size: 1.3rem; color: #888; margin: 0; }
@media only screen and (max-width: 768px) { .footer__copy { font-size: 3vw; } }

/* =============================================================
   #page-top
============================================================= */
#page-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  background: #5b7cfe;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(58,111,216,.4);
  cursor: pointer;
  z-index: 10;
  transition: transform .3s;
}
#page-top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px; height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-50%, -35%) rotate(-45deg);
}
#page-top:hover { transform: translateY(-3px); }
@media only screen and (max-width: 768px) {
  #page-top { width: 12vw; height: 12vw; bottom: 4vw; right: 4vw; }
}

/* =============================================================
   Contact Page
============================================================= */

.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-header__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 24px;
}

.contact-header__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.contact-header__title {
  margin: 0;
  text-align: center;
  background: #5876eb;
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: .03em;
  line-height: 1.45;
  padding: 14px 20px;
  margin-top:64px;
}

.contact-main {
  flex: 1;
}

.contact-heading {
  font-size: 4.4rem;
  margin: 0 0 12px;
}

.contact-item {
  margin-bottom: 12px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-title {
  margin: 0 0 2px;
  line-height: 1.4;
}

.contact-text {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.6;
  font-weight: 500;
}


.contact-back-wrap {
  margin: 80px 0 0;
  text-align: center;
}

.contact-back-btn 
 {
  display: inline-block;
  background: linear-gradient(90deg, #4a7fe8, #8a6cee);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding: 18px 140px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(74,127,232,.45);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .06em;
}
.contact-back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(74,127,232,.55);
  opacity: 1;
}
@media only screen and (max-width: 768px) { .contact-back-btn { font-size: 4.8vw; padding: 4vw; width:80vw; } }

.contact-footer {
  background: #5876eb;
}

.contact-footer p {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .contact-header__inner {
    padding: 2.4vw 4vw;
  }

  .contact-header__logo img {
    width: 24vw;
    height: auto;
  }

  .contact-header__title {
    font-size: 5.2vw;
    padding: 3.6vw 4vw;
  }

  .contact__inner {
    padding: 7vw 5vw 10vw;
  }

  .contact-section {
    margin-bottom: 6vw;
  }

  .contact-heading {
    font-size: 6.4vw;
    margin-bottom: 3vw;
  }

  .contact-item {
    margin-bottom: 2.4vw;
  }

  .contact-item-title {
    font-size: 4.8vw;
    margin-bottom: .8vw;
  }

  .contact-text {
    font-size: 3.8vw;
    line-height: 1.6;
  }

  .contact-back-wrap {
    margin-top: 8.5vw;
  }

}



