@charset "UTF-8";

/*
Theme Name: AI-call theme
Description: このテーマは、ai Callingのサイト向けに作成されたテンプレートです。PC、スマホ対応。
Theme URI: aurora-aicall.jp
Author: 株式会社メディア４ｕ
Author URI: https://www.media4u.co.jp/
Version: 1.0.0
License: 
License URI: 
*/


/* ai Calling LP — plain CSS（React / Tailwind なし） */

:root {
  --color-text: #333;
  --color-muted: #666;
  --color-teal: #009fad;
  --color-teal-light: #20c9d8;
  --color-yellow: #ffdf5a;
  --color-line: #f3f4f6;
  --color-bg-gray: #fafafa;
  --color-bg-mint: #eeffff;
  --color-footer: #002a2e;
  --color-footer-text: #eaeaea;
  --radius-card: 12px;
  --shadow-form: 0 2px 12px rgba(0, 0, 0, 0.08), 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-cta: 0 8px 24px rgba(0, 0, 0, 0.12);
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-num: "Sofia Sans Condensed", "Arial Narrow", sans-serif;
  --max-w: 1280px;
  --header-h: 113px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: #fff;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- レイアウト ---------- */
.lp-page {
  padding-top: var(--header-h);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 0;
  }
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
 
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.site-header__logo img {
  display: block;
  height: 46px;
  width: auto;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 48px;
}

.site-header__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}




.site-header__links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.site-header__links a::after {
  content: "";
  position: absolute;
  left: -2px;
width: calc(100% + 4px);
  bottom: -4px;
  
  height: 1px;
  background-color: var(--color-teal);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.site-header__links a:hover {
  color: var(--color-teal);
}

.site-header__links a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}








.site-header__actions {
  display: flex;
  gap: 16px;
}

.site-header__hamburger {
  display: flex;
  margin-left: auto;
  padding: 0;
  background: transparent;
}

@media (min-width: 768px) {

    .site-header {
        padding: 24px 40px;
         min-height: var(--header-h);
    }
  .site-header__nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
  }
.site-header__logo img {
 
  height: 65px;
  width: auto;
}

  .site-header__hamburger {
    display: none;
  }
.site-header__actions a{
    width:162px;
    box-sizing: border-box;
}

}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;

}

.btn img {
    width: 16px;
    height: 32px;
  
    
}

.btn--outline {
  color: var(--color-teal);
  background: #fff;
  border: 1px solid var(--color-teal);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn--outline:hover {
  background: #f5f5f5;
}



.btn--gradient {
  color: #fff;
  background: radial-gradient(80.12% 56.86% at 2.78% 11.9%, #20C9D8 0%, #009FAD 100%);
  transition: filter 0.25s ease;
}

.btn--gradient:hover {
  filter: brightness(0.85);
}



.btn--gradient:after:hover{
    opacity: 1;
}


.btn--white-outline {
  color: var(--color-teal);
  background: #fff;
  border: 1px solid var(--color-teal);
  min-height: 64px;
  padding: 16px 32px;
  font-size: 22px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-cta);
   transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
width: 360px;
}


@media (max-width: 767px) {
.btn--white-outline {
    width: 100%;
    font-size: 18px;

}
}

.btn--white-outline:hover {
  background: #eaeaea;
  
}





.btn--lg-gradient {
  color: #fff;
  background: radial-gradient(80.12% 56.86% at 2.78% 11.9%, #20C9D8 0%, #009FAD 100%);
  min-height: 54px;
  padding: 16px 40px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  border-radius: var(--radius-card);
  transition: filter 0.25s ease;
  
}

@media (max-width: 767px) {
.btn--lg-gradient {
    width: 100%;
}
}

.btn--lg-gradient:hover {
  filter: brightness(0.85);
}



.btn--lg-gradient:hover{
    opacity: 1;
}




.btn__arrow {
  flex-shrink: 0;
}



/* ---------- ドロワー ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer.is-open .drawer__backdrop {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
   background: rgba(255, 255, 255, 0.94);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 70px 16px 32px;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__logo {

    position: fixed;
  top: 12px;
  left: 16px;
}

.drawer__close {
  position: fixed;
  top: 17px;
  right: 16px;
  z-index: 160;
  width: 36px;
  height: 36px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

body.drawer-open .drawer__close {
  display: flex;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 48px;
  margin-top: 32px;
}

.drawer__nav a {
  font-size: 18px;
  font-weight: 500;
}

.drawer__actions {
  display: flex;
justify-content: space-between;
  gap: 16px;
}

.drawer__actions .btn {
  width: 49%;
}

/* ---------- セクション共通 ---------- */
.section {
  padding: 64px 0;
}
@media (max-width: 767px) {
.section {
  padding: 32px 0;
}
}

.section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section--gray {
  background: var(--color-bg-gray);
}

.section--mint {
  background: var(--color-bg-mint);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  margin-bottom: 16px;
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  border: 1px solid #d8d8d8;
  border-radius: 60px;
}

.section-title {
  margin: 0 0 32px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
.section-title {
 margin-bottom: 16px;
}
}

.section-lead {
  margin: 0 auto 48px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  max-width: 800px;
}

@media (max-width: 767px) {
.section-lead {
  margin: 0 0 24px;
}
}




.section-lead.lead-last{
    font-size: 22px;
}
@media (max-width: 767px) {
.section-lead.lead-last{
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 24px;
}
.section-lead {
    text-align: left;
}
}
/* ---------- Hero ---------- */
.section-hero {
  position: relative;
  padding-bottom: 32px;
  overflow: visible;
  padding-top: 0;
  width: 100%;
 
}

.section-hero__wave {
  position: absolute;
  right: 0;
  top: 182px;
  width: min(920px, 64vw);
  height: 380px;
  opacity: 0.08;
  pointer-events: none;
  background: radial-gradient(circle at 20% 40%, #60e2e1 0%, #20c9d8 35%, #d8f6f7 100%);
  border-radius: 24px 0 0 24px;
  filter: blur(1px);
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  max-width: calc(var(--max-w) + 120px);
  margin: 0 auto;
  padding: 0 24px 0;
  max-width: min(1400px, 92vw);
}
@media (min-width: 768px) {
  .section-hero  {
      padding-top: 32px;
      padding-bottom: 64px;
  }
}


@media (min-width: 1024px) {
  .hero-layout {
  
      
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 40px 20px;
  }
}

.hero-copy {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 2;
  margin-top: 64px;
}

.hero-copy-image {
  margin: 0 0 48px;
  width: 100%;
  text-align: left;
}


.hero-copy-image img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
}

.hero-copy-image .copy_sp {
    display: none;
}


@media (max-width: 767px) {
.hero-copy {
 
  margin-top: 0;
}
  .hero-copy-image {
    margin-bottom: 48px;
  }
.hero-copy-image .copy_pc {
    display: none;
}
.hero-copy-image .copy_sp {
    display: block;
}
  
  
}

.hero-copy__sub {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
  max-width: 620px;
}

@media (min-width: 768px) {
  .hero-copy__sub {
    margin: 0 0 48px;
    font-size: 16px;
  }
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 12px;
  
}

@media (min-width: 768px) {
  .hero-stats {
    max-width: 520px;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .hero-stats {
   margin-bottom: 32px;
  }
}


.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
 
  padding: 8px 10px 8px;
  background: var(--color-bg-gray);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  
  
}

.hero-stat:first-child {
  flex: 1;
}

.hero-stat:last-child {
  flex: 1;
}





@media (min-width: 768px) {
  .hero-stat {
    min-height: 128px;
    padding: 10px 18px 10px;
  }
}

.hero-stat__icon-wrap {
  
  display: block;
margin: 0 auto;

  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
.hero-stat__icon-wrap {
    width: 24px;
  height: 24px;
  margin-bottom: 8px;
  }
}

.hero-stat__icon-wrap img {
    width: 32px;
    height: auto;
}






.hero-stat__head {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  
}

@media (max-width: 767px) {
    .hero-stat__head {
 
  font-size: 14px;
  
}
}

.hero-stat__value-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 2px;
  line-height: 1;
  /** margin-bottom: 4px;
  margin-top: 2px;**/
}


@media (max-width: 767px) {
.hero-stat__value-row {

  /** margin-top: 6px; **/
}
.hero-stat__value-row:last-child {

  /** margin-top: -2px; **/
}
}


.hero-stat__value-row--single {
  /** margin-top: 32px; **/
  margin-top: 0;
}
.hero-stat__foot.comment {
    font-size:11px !important;
    font-weight: 400 !important;
}

@media (max-width: 767px) {
.hero-stat__foot.comment {
    font-size:10px !important;
  
}
}

.hero-stat__foot.comment-02 {
    position: absolute;
    bottom:-28px;
    left: 0;
    font-size: 10px !important;
}
@media (max-width: 767px) {
.hero-stat__foot.comment-02 {
    font-size: 9px !important;
    bottom:-34px;
    left: 0;
}
}


.hero-stat__foot {
  margin: 0 0 8px;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

@media (max-width: 767px) {
.hero-stat__foot {
 
  font-size: 14px;
  
}
.hero-stat__foot:nth-child(2){
    /** margin-bottom: 8px; **/
}
}


.hero-stat__num {
  font-family: var(--font-num);
  font-size: 52px;
  font-weight: 800;
  line-height: 0.9;
  color: var(--color-text);
}

.hero-stat__unit {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
@media (max-width: 767px) {
.hero-stat__unit {
    font-size: 14px;
  }
}


@media (max-width: 767px) {
  .hero-stat__num {
    font-size: 32px;
  }
}



/** マージン微修正 **/
 .m-set-01 {
     margin-bottom: 8px;
 }
 .m-set-02 {
     
 }
 .m-set-03 {
     margin-top: -10px;
     
 }
  .m-set-04 {
      margin-top: 6px;
  }
  
  @media (max-width: 767px) {
 .m-set-01 {
     margin-bottom: 8px;
 }
 .m-set-02 {
     
 }
 .m-set-03 {
     margin-top: -5px;
     margin-bottom: 2px;
     
 }
  .m-set-04 {
      margin-top: 0;
  }
}


.hero-form-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}



@media (min-width: 1024px) {
  .hero-form-wrap {
    max-width: 650px;
    margin: 0;
  }
}

.hero-form-wave {
  position: absolute;
  left: 220px;
  top: 320px;

  width: 100%;
  max-width: 620px;
  height: 240px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.6;
  z-index: 1;
  transform: translate(-50%, -50%) scale(1.55);
}




.cta-band .hero-form-wave,
.cta-final .hero-form-wave {
    left: 50%;
  top: 45%;
  transform: translate(-50%, -50%) scale(1.25);
}
.cta-final .hero-form-wave {
    z-index: 60;
}



.for_wave {
    position: relative;
}

.for_wave .hero-form-wave{
    left: 50%;
  top:50%;
  transform: translate(-50%, -50%) scale(1.1);
  
  z-index: 50;
 
  
}




@media (max-width: 767px) {
.cta-band .hero-form-wave{
    left: 50%;
  top: 25%;
   transform: translate(-50%, -50%) scale(0.9);
 
}


.cta-final .hero-form-wave{
    left: 50%;
  top: 20%;
   transform: translate(-50%, -50%) scale(0.9);
 
}

.for_wave .hero-form-wave{
    left: 50%;
  top:55%;
  transform: translate(-50%, -50%) scale(0.85);
  
  z-index: 50;
 
  
}

}




.hero-form-wave__bar {
  width: 4px;
  border-radius: 999px;
  background: rgba(32, 201, 216, 0.5);
  height: 36px;
  animation: heroWave 1.4s ease-in-out infinite;
  transform-origin: center;
}





.cta-band .hero-form-wave__bar,
.cta-final .hero-form-wave__bar{


  background: rgba(255, 255, 255, 0.3);
  height: 36px;
  animation: heroWave 1.4s ease-in-out infinite;
  transform-origin: center;
}

.for_wave .hero-form-wave__bar {

  background: rgba(32, 201, 216, 0.4);
  height: 36px;
  animation: heroWave 1.4s ease-in-out infinite;
  transform-origin: center;
}





@media (max-width: 767px) {
    .hero-form-wave {
  left: 50%;
  top: -200px;
  height: 160px;

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




.hero-form-wave__bar {
  width: 4px;

}
}


.hero-form-wave__bar:nth-child(5n + 1) { animation-delay: -0.15s; }
.hero-form-wave__bar:nth-child(5n + 2) { animation-delay: -0.35s; }
.hero-form-wave__bar:nth-child(5n + 3) { animation-delay: -0.55s; }
.hero-form-wave__bar:nth-child(5n + 4) { animation-delay: -0.75s; }
.hero-form-wave__bar:nth-child(5n + 5) { animation-delay: -0.95s; }

.hero-form-wave__bar:nth-child(1), .hero-form-wave__bar:nth-child(40) { height: 28px; }
.hero-form-wave__bar:nth-child(2), .hero-form-wave__bar:nth-child(39) { height: 34px; }
.hero-form-wave__bar:nth-child(3), .hero-form-wave__bar:nth-child(38) { height: 42px; }
.hero-form-wave__bar:nth-child(4), .hero-form-wave__bar:nth-child(37) { height: 56px; }
.hero-form-wave__bar:nth-child(5), .hero-form-wave__bar:nth-child(36) { height: 68px; }
.hero-form-wave__bar:nth-child(6), .hero-form-wave__bar:nth-child(35) { height: 80px; }
.hero-form-wave__bar:nth-child(7), .hero-form-wave__bar:nth-child(34) { height: 96px; }
.hero-form-wave__bar:nth-child(8), .hero-form-wave__bar:nth-child(33) { height: 120px; }
.hero-form-wave__bar:nth-child(9), .hero-form-wave__bar:nth-child(32) { height: 138px; }
.hero-form-wave__bar:nth-child(10), .hero-form-wave__bar:nth-child(31) { height: 156px; }
.hero-form-wave__bar:nth-child(11), .hero-form-wave__bar:nth-child(30) { height: 172px; }
.hero-form-wave__bar:nth-child(12), .hero-form-wave__bar:nth-child(29) { height: 182px; }
.hero-form-wave__bar:nth-child(13), .hero-form-wave__bar:nth-child(28) { height: 168px; }
.hero-form-wave__bar:nth-child(14), .hero-form-wave__bar:nth-child(27) { height: 148px; }
.hero-form-wave__bar:nth-child(15), .hero-form-wave__bar:nth-child(26) { height: 126px; }
.hero-form-wave__bar:nth-child(16), .hero-form-wave__bar:nth-child(25) { height: 106px; }
.hero-form-wave__bar:nth-child(17), .hero-form-wave__bar:nth-child(24) { height: 122px; }
.hero-form-wave__bar:nth-child(18), .hero-form-wave__bar:nth-child(23) { height: 142px; }
.hero-form-wave__bar:nth-child(19), .hero-form-wave__bar:nth-child(22) { height: 164px; }
.hero-form-wave__bar:nth-child(20), .hero-form-wave__bar:nth-child(21) { height: 186px; }

@keyframes heroWave {
  0%, 100% {
    transform: scaleY(0.65);
    opacity: 0.65;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}






.hero-form-card {
  position: relative;
  z-index: 3;
  width: 400px;
  
  margin: 0 auto;
  padding: 8px 0 16px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-form);
}

@media (max-width: 767px) {
.hero-form-card {

  padding: 12px 0 16px;

}
}






@media (min-width: 1024px) {
  .hero-form-card {
    margin: 0 52px 0 auto;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .hero-form-card {
    width: 100%;
  }
}





.hero-form-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
}

@media (max-width: 767px) {
.hero-form-card__head {
  padding: 4px 16px;
}
}



.hero-form-card__badge {
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 700;
  background: var(--color-yellow);
  border-radius: 2px;
}

.hero-form-card__ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-teal);
}

.hero-form-card__lead {
  margin: 0;
  padding: 0 24px 16px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 767px) {
.hero-form-card__lead {
  margin: 0;
  padding: 0 16px 8px;
  font-size: 14px;

}
}


.mv-form .hs-form-custom-m4u {
  min-height: 120px;
  padding: 0 16px;
}

/* ---------- カードグリッド ---------- */
.card-grid {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: var(--max-w);
  margin-bottom: 64px;
  text-align: left;
}

@media (max-width: 767px) {
    .card-grid {
  margin-bottom: 24px;
}

}

.card-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
  }
}

.card-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 68px;
  }
}

.card {
 
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
}

.card.dummy {
    opacity: 0;
}
@media (max-width: 767px) {
.card.dummy {
    display: none;
}
}




.card--muted {
  background: var(--color-bg-gray);
 
}



.card__icon {
 
  width: 100%;
  height: 40px;
  
 
  
  margin: 0 auto 24px;
  text-align: center;
  display: inline-block;
}


@media (max-width: 767px) {
.card__icon {

  margin: 0 auto 12px;
  
}
}



.card__icon img {
    width: 40px;
    height: 40px;
    
}

.card__icon--lg {
 
  border-radius: var(--radius-card);
  
   width: 100%;
  height: 60px;
  
}

.card__icon--lg img {
    width: 60px;
    height: 60px;
    
}

@media (max-width: 767px) {
.card__icon--lg {
  width: 100%;
  height: 50px;
}

.card__icon--lg img {
    width: 50px;
    height: 50px;
    
}
}


.card__icon--yellow {
  
}

.card__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767px) {
.card__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
}




.card__title--teal {
  color: var(--color-teal);
}
@media (max-width: 767px) {
.card__title--teal {
    font-size: 18px;
}
}

 .turquoise-teal {
 font-size: 32px;
 text-align: left;
 
 }
 
 @media (max-width: 767px) {
  .turquoise-teal {
 font-size: 24px;
  text-align: center;
 
 }
 }




.card__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}
.card__text:last-child{
    margin-bottom: 0;
}
@media (max-width: 767px) {
.card__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}
}
.badge-pill-cover {
    width: 100%;
    text-align: center;
     margin-bottom: 12px;
}

@media (max-width: 767px) {
.badge-pill-cover {

     margin-bottom: 8px;
}
}




.badge-pill {
  display: inline-block;
  text-align: center;
  padding: 3px 16px;
 
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal);
  border: 1px solid var(--color-teal);
  border-radius: 60px;
  
}

.stat-inline {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-teal);
  text-align: center;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.check-list li {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 767px) {
.check-list li {

  font-size: 14px;

}
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  background: no-repeat center / contain;
  background-image: url("images/carbon_checkmark-outline.png");
}

/* ---------- 画像ブロック ---------- */
.media-rounded {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
}

@media (max-width: 767px) {
.media-rounded {
  border-radius: 8px;

}
}

.media-rounded img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.story-photo {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 32px;
}

.why-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: var(--max-w);
  margin-bottom: 64px;
  text-align: left;
}

.why-layout:last-child {
    margin-bottom: 0;
}



@media (min-width: 900px) {
  .why-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 68px;
  }

  .why-layout__text {
    flex: 1;
    max-width: 626px;
  }

  .why-layout__media {
    flex-shrink: 0;
    width: 590px;
    max-width: 100%;
  }
}


@media (max-width: 767px) {
  .why-layout {

    gap: 24px;
    margin-bottom: 32px;
  }
}


.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 767px) {
.metrics-row {
  gap: 12px;
  margin-top: 24px;
  flex-wrap: nowrap;
  
}
}


.metric-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 180px;
  max-width: 100%;
  padding: 16px 24px 12px;
  background: var(--color-bg-mint);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
}

@media (max-width: 767px) {
.metric-box {
gap: 8px;
 padding: 8px 12px 6px;
}

}

.metric-box__label {
  margin: 0;
  padding: 6px 12px;
  font-size: 16px;
  
  font-weight: 700;color: var(--color-teal);
  border: 1px solid var(--color-teal);
  border-radius: 60px;
}

@media (max-width: 767px) {
.metric-box__label {
    font-size: 11px;
     padding: 2px 6px;
     font-weight: 500;
}
}

.metric-box__value {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--font-num);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 767px) {
.metric-box__value {
    font-size: 30px;
}
}


.metric-box__unit {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}


@media (max-width: 767px) {
.metric-box__unit {
  font-size: 14px;

}
}

.metric-box__unit.plus {
    font-size: 22px;
    font-weight: 400;
}

@media (max-width: 767px) {
.metric-box__unit.plus {
    font-size: 18px;
    font-weight: 400;
}
}

/* ---------- CTA 帯 ---------- */
.cta-band {
  position: relative;
  width: 100%;
  padding: 64px 24px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: radial-gradient(ellipse 120% 80% at 20% 20%, #20c9d8 0%, #10b4c2 45%, #009fad 100%);
}

@media (max-width: 767px) {
.cta-band {
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
}
}

.cta-band__title {
  margin: 0 0 24px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
}

.cta-band__lead {
  margin: 0 auto 48px;
  max-width: 800px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 767px) {
.cta-band__lead {
  margin: 0 auto 24px;

}
}




.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

@media (max-width: 767px) {
.cta-band__actions {

  gap: 16px;

}
}


/* ---------- 事例カード ---------- */
.case-grid {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: var(--max-w);
  margin-bottom: 48px;
}

@media (min-width: 900px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
  }
}

@media (max-width: 767px) {
  .case-grid {
    margin-bottom: 24px;
  }
}

.case-grid .card{
    padding: 0 0 24px;
    overflow: hidden;
}

.case-grid .card .card__text {
    padding: 0 24px;
}




.case-card__img {
  height: 192px;
  margin-bottom: 32px;
  border-radius: 0;
  overflow: hidden;
}

.case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  justify-content: center;
}

.case-meta__item p {
  margin: 0;
  font-size: 16px;
}

@media (max-width: 767px) {
.case-meta__item p {
  font-size: 14px;
}
}

.case-meta__item strong {
  display: block;
  font-size: 16px;
  color: var(--color-teal);
}





/* ---------- デモ ---------- */
.demo-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: var(--max-w);
  margin-bottom: 64px;
  text-align: left;
}

@media (min-width: 900px) {
  .demo-layout {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }

  .demo-layout__copy {
    flex: 1;
    max-width: 676px;
  }

  .demo-layout__player {
   
    min-width: 0;
    width: 540px;
  }
}

@media (max-width: 767px) {

.demo-layout {
    margin-bottom: 32px;
}
.demo-layout__player {
    width: 100%;
}
}

.demo-player {
  padding: 32px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  background: radial-gradient(ellipse 100% 80% at 20% 30%, #20c9d8 0%, #009fad 100%);
}

.demo-player__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  padding-left: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.demo-player__btn svg {
  width: 48px;
  height: 48px;
}

.demo-player__ttl {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.demo-player__sub {
  margin: 0 0 16px;
  font-size: 16px;
  color: #dbeafe;
}

.demo-player__bar {
  height: 8px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.demo-player__bar > span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: inherit;
}

.demo-player__time {
  margin: 0;
  font-size: 14px;
  color: #dbeafe;
}

.phone-cta {
  margin: 0 0 48px;
  font-family: var(--font-num);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  color: var(--color-teal);
  
  position: relative;
  z-index: 55;
}

/* PCでは無効っぽくする */
@media (min-width: 768px) {
 .phone-cta a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  
  }
}


@media (max-width: 767px) {
.phone-cta {
   font-size: 52px; 
   margin-bottom: 24px;
}
}

/* ---------- FAQ ---------- */
.faq-wrap {
  width: 100%;
  max-width: var(--max-w);
}

.faq-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .faq-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
}

.faq__item {
  text-align: left;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #fff;
  overflow: hidden;
}

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
  color: #333;
}

@media (min-width: 768px) {
  .faq__trigger {
    padding: 24px 32px;
  }
}

.faq__trigger:hover {
  background: #fafafa;
}

.faq__arrow {
  flex-shrink: 0;
  width: 12px;
  height: 24px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__arrow {
  transform: rotate(-90deg);
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__item.is-open .faq__panel {
  max-height: 480px;
}

.faq__panel-inner {
  padding: 0 20px 16px;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .faq__panel-inner {
    padding: 0 32px 24px;
  }
}

/* ---------- フッター前 CTA ---------- */
.cta-final {
  position: relative;
  padding: 64px 24px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: radial-gradient(ellipse 120% 100% at 50% 0%, #20c9d8 0%, #009fad 70%);
}

@media (max-width: 767px) {
    .cta-final {
  
  padding: 32px 16px;
}
}


.cta-final__title {
  margin: 0 0 24px;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
}

.cta-final__lead {
  margin: 0 auto 32px;
  max-width: 800px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  line-height: 1.8;
}

.cta-final__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  max-width: 580px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 65;
}

.cta-final__highlights .card__icon--yellow {
  margin: 0 auto 24px;
}

.cta-final__highlights p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}


@media (max-width: 767px) {
    .cta-final__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto 24px;
}

.cta-final__highlights div {
    width: 84px;
}
    
    .cta-final__highlights p {

  font-size: 16px;
  font-weight: 500;
}
    
}


.cta-final__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-final__btns .btn--white-outline {
  flex: 1 1 240px;
}

/* ---------- フッター ---------- */
.site-footer {
  padding: 64px 24px;
  background: var(--color-footer);
  color: var(--color-footer-text);
}

@media (max-width: 767px) {
.site-footer {
  padding: 48px 16px;
 
}
}


.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto 80px;
}

@media (min-width: 900px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}


@media (max-width: 767px)  {
  .footer-grid {
    gap: 32px;
    margin: 0 auto 48px;
  }
}

.footer-brand img {
  height: 46px;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
.footer-brand img {
  height: 40px;
  margin-bottom: 24px;
}
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d3d3d3;
}

.footer-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 80px;
}



@media (max-width: 767px) {
.footer-nav-grid {
  gap: 32px;
}
}

.footer-nav-col h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
.footer-nav-col h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
}
}



.footer-nav-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}


@media (max-width: 767px) {
.footer-nav-col ul {
  gap: 4px;
}
}

.footer-nav-col a {
  position: relative;
  font-size: 14px;
  color: var(--color-footer-text);
}

@media (max-width: 767px) {
.footer-nav-col a {
  position: relative;
  font-size: 12px;
  color: var(--color-footer-text);
}
}


.footer-nav-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-footer-text);
  transition: width 0.3s ease;
}

.footer-nav-col a:hover::after {
  width: 100%;
}

.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: #d3d3d3;
}

.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

.mb-0 {
  margin-bottom: 0;
}







