/* =========================================================
RESET
========================================================= */

:root{
  --blue:#1B72BE;
  --light-blue:#42A5F5;
  --sky:#AED6F1;
  --navy:#1A5276;
  --bg:#EFF7FF;
  --text:#2C3E50;
  --gray:#6D7C8A;
  --white:#fff;
  --border:#BDC8D8;
  --shadow:0 14px 40px rgba(0,80,180,.08);
  --radius:26px;
  --transition:.4s ease;
  --max:1180px;
}

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

html{
  scroll-behavior:smooth;
}
html{
  scroll-padding-top:80px;
}

body{
  font-family:'Noto Sans JP',sans-serif;
  color:var(--text);
  line-height:1.8;
  background:#EFF7FF;
  font-size:17px;
  overflow-x:hidden;
}

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

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

ul{
  list-style:none;
}

.container{
  width:min(92%,var(--max));
  margin:auto;
}

section{
  padding:50px 0;
}

/* =========================================================
COMMON
========================================================= */

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title span{
  display:block;
  color:var(--blue);
  font-weight:700;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.section-title h2{
  font-size:2.8rem;
  line-height:1.5;
  margin-bottom:18px;
}

.section-title p{
  color:var(--gray);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:16px 16px;
  font-weight:700;
  transition:var(--transition);
  width:80%;
}

.btn-main{
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-main:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 48px rgba(27,114,190,.25);
}

.btn-line{
  border:2px solid var(--blue);
  color:var(--blue);
  background:rgba(255,255,255,.8);
}
.btn-line:hover{
  transform:translateY(-6px);
  background:#fff;
}
.small{font-size:75%; color:var(--gray);}

/* =========================================
SCROLL FADE
========================================= */

.fade{
  opacity:0;
  transform:
  translateY(40px)
  scale(.98);
  transition:
  opacity .9s ease,
  transform .9s ease;
}

.fade.active{
  opacity:1;
  transform:translateY(0);
}

.delay1{ transition-delay:.15s; }
.delay2{ transition-delay:.3s; }
.delay3{ transition-delay:.45s; }

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================================
IMAGE FADE
========================================= */

.fade-image{
  opacity:0;
  transform:scale(1.06);
  transition:
  opacity 1.2s ease,
  transform 1.2s ease;
}

.fade-image.active{
  opacity:1;
  transform:scale(1);
}

/* =========================================================
HEADER
========================================================= */

.header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(27,114,190,.12);
  box-shadow:0 2px 20px rgba(27,114,190,.07);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:78px;
}

/* =========================================
LOGO
========================================= */

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

.logo img{
  height:52px;
  width:auto;
  display:block;
}

/* =========================================
NAV
========================================= */

.nav{
  margin-left:auto;
}

.nav ul{
  display:flex;
  align-items:center;
  gap:32px;
}

.nav a{
  font-weight:700;
  font-size:.95rem;
  color:var(--text);
  transition:var(--transition);
}

.nav a:hover{
  color:var(--blue);
}

/* =========================================
RIGHT
========================================= */

.header-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

/* =========================================
CTA
========================================= */

.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

.header-btn{
  height:44px;
  padding:0 18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.84rem;
  font-weight:700;
  transition:var(--transition);
  white-space:nowrap;
}

.header-btn:hover{
  transform:translateY(-2px);
}

.header-btn-line{
  background:#F0F7FF;
  border:1px solid var(--blue);
  color:var(--blue);
}

.header-btn-main{
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  box-shadow:0 10px 24px rgba(27,114,190,.20);
}

/* =========================================
HAMBURGER
========================================= */

.hamburger{
  width:44px;
  height:44px;
  border:none;
  background:none;
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;
  cursor:pointer;
  flex-shrink:0;
}

.hamburger span{
  width:24px;
  height:2px;
  background:var(--blue);
  border-radius:999px;
  transition:.3s;
}

/* =========================================================
FV (HERO)
========================================================= */

.hero{
  padding:26px 0 44px;
  background:
    linear-gradient(
      150deg,
      #E3F0FB 0%,
      #FAFEFF 50%,
      #D6EAF8 100%
    );
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  top:-100px;
  right:-100px;
  width:500px;
  height:500px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(27,114,190,.07),transparent 70%);
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  bottom:-80px;
  left:-80px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(66,165,245,.06),transparent 70%);
  pointer-events:none;
}

.hero-grid{
  display:grid;
  gap:24px;
  align-items:center;
}

/* =========================================
HERO CATCH
========================================= */

.hero-catch{
  text-align:center;
  font-size:2.8rem;
  font-weight:900;
  line-height:1.6;
  letter-spacing:.03em;
  color:var(--navy);
  padding:16px 0 14px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px 12px;
}

.hero-catch-kw{
  display:inline-block;
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  border-radius:10px;
  padding:4px 20px;
  font-size:inherit;
  font-weight:900;
  color:#fff;
  letter-spacing:.04em;
}

.hero-catch-x{
  color:rgba(27,114,190,.45);
  font-size:1.4rem;
  font-weight:700;
}

.hero-catch-suffix{
  color:var(--navy);
  font-weight:900;
}

.hero-subcopy{
  font-size:1.9rem;
  line-height:1.4;
  font-weight:900;
  margin-bottom:18px;
  color:var(--navy);
}

.hero-top-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 30px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  font-size:1.5rem;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 10px 24px rgba(27,114,190,.20);
  border:1px solid rgba(255,255,255,.3);
  margin-bottom:10px;
}

.hero-copy h1{
  font-size:3rem;
  line-height:1.25;
  font-weight:900;
  margin-bottom:20px;
  color:var(--navy);
}

.hero-copy h1 span{
  color:var(--blue);
}

/* =========================================
DEVICE
========================================= */

.hero-device{
  margin-bottom:14px;
}

.hero-device img{
  width:100%;
  max-width:420px;
  filter:drop-shadow(0 14px 30px rgba(27,114,190,.15));
  border-radius:8px;
}

/* =========================================
COMMUNICATION LABEL
========================================= */

.hero-icons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}

.hero-icon-box{
  display:flex;
}

.hero-icon-box span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(27,114,190,.10);
  border:1px solid rgba(27,114,190,.28);
  color:var(--blue);
  font-size:.92rem;
  font-weight:700;
  box-shadow:0 4px 12px rgba(27,114,190,.08);
  transition:.3s;
}

/* =========================================
BUTTONS
========================================= */

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px 10px;
}

/* =========================================
RIGHT
========================================= */

.hero-visual{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.hero-image{
  position:relative;
}

.hero-image img{
  border-radius:34px;
  box-shadow:0 30px 70px rgba(27,114,190,.12);
}

/* =========================================
SPEC GRID
========================================= */

.hero-spec-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.hero-spec{
  background:rgba(255,255,255,.85);
  color:var(--blue);
  border:1px solid rgba(27,114,190,.22);
  border-radius:999px;
  padding:14px 18px;
  text-align:center;
  font-weight:700;
  backdrop-filter:blur(4px);
  box-shadow:0 4px 12px rgba(27,114,190,.06);
}

/*==================================================
MEDIA
==================================================*/

.media{

    position:relative;

    background:#EFF7FF;

    padding:70px 0 40px;

    overflow:hidden;

}


/*----------------------------------
コンテンツ
----------------------------------*/

.media .container{

    position:relative;

    z-index:10;

}


/*----------------------------------
ロゴ
----------------------------------*/

.media-logos{

    display:flex;

    justify-content:center;

    gap:24px;

    max-width:940px;

    margin:40px auto 0;

}

.media-logo{

    width:min(100%,440px);

    min-height:100px;

    padding:28px;

    background:#fff;

    border:1px solid #C8DDF0;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(27,114,190,.06);

}

.media-logo img{

    width:100%;

    height:auto;

    object-fit:contain;

}


/*----------------------------------
人物
----------------------------------*/

.media-person{

    position:absolute;

    bottom:0;

    z-index:30;

    pointer-events:none;

}

.media-person img{

    display:block;

    width:auto;

    height:420px;

}


/* 左：女性 */

.media-person-left{

    left:clamp(20px,4vw,70px);

}


/* 右：男性 */

.media-person-right{

    right:clamp(20px,4vw,70px);

}


/*==================================================
Responsive
==================================================*/

@media (max-width:1400px){

    .media-person img{

        height:390px;

    }

}

@media (max-width:1200px){

    .media-person img{

        height:350px;

    }

}

@media (max-width:1024px){

    .media-person{

        display:none;

    }

}

/* =========================================================
MOVIE
========================================================= */

.movie{
  background:#E3F2FD;
}

.movie-box{
  background:#FFF;
  border-radius:34px;
  padding:50px 50px;
  box-shadow:var(--shadow);
  text-align:center;
}

.youtube{}

/*----------------------------------
タレント画像
----------------------------------*/

.movie-person{
  position:relative;
  z-index:2;
  width:min(60%,420px);
  margin:0 auto;
  transform:translateY(-4px);
  pointer-events:none;
}

.movie-person img{
  width:100%;
  height:auto;
  display:block;
}

/* 動画の全幅に広がる塗り足しバー。人物画像下部の透過部分の高さぶんだけ
   上に重ねて、動画本体には被らず境目でぴったり接するようにする */
.movie-fill-bar{
  position:relative;
  z-index:1;
  --gap-h:clamp(18px,4vw,52px);
  height:var(--gap-h);
  margin-top:calc(-1 * var(--gap-h));
  background:linear-gradient(90deg,#D93455 0%,#BE1A2D 50%,#AB0A18 100%);
}

/* =========================================================
INTRO
========================================================= */

.intro{
  padding:100px 0 70px;
  background:
    radial-gradient(
      rgba(27,114,190,.04) 1px,
      transparent 1px
    );
  background-size:16px 16px;
}

.intro-head{
  text-align:center;
  margin:0 auto 70px;
}

.intro-content-box{
  position:relative;
  margin:0 auto;
  padding:20px 0 0;
  text-align:left;
}

.intro-content-box::before{
  content:"";
  display:block;
  width:120px;
  height:4px;
  margin:0 auto 42px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--blue),var(--light-blue));
}

.intro-lead{
  font-size:1.1rem;
  line-height:2.0;
  font-weight:400;
  letter-spacing:.01em;
  text-align:left;
  margin-bottom:28px;
  color:var(--navy);
}

.intro-list{
  display:grid;
  gap:18px;
  max-width:720px;
  margin:0 auto;
}

.intro-list li{
  position:relative;
  display:flex;
  align-items:center;
  min-height:76px;
  padding:0 28px 0 78px;
  border-radius:18px;
  background:#fff;
  border:1px solid #C8DDF0;
  font-size:1.6rem;
  font-weight:700;
  line-height:1.7;
  transition:.3s ease;
  box-shadow:0 10px 24px rgba(27,114,190,.05);
}

.intro-list li:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(27,114,190,.10);
}

.intro-list li::before{
  content:"";
  position:absolute;
  left:24px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  box-shadow:0 8px 18px rgba(27,114,190,.20);
}

.intro-list li::after{
  content:"✓";
  position:absolute;
  left:35px;
  top:50%;
  transform:translateY(-52%);
  color:#fff;
  font-size:.95rem;
  font-weight:900;
}

.intro-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  margin:32px 0 28px;
  border:1px solid rgba(27,114,190,.14);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.intro-feature-item{
  padding:28px 24px;
  border-right:1px solid rgba(27,114,190,.14);
}

.intro-feature-item:last-child{
  border-right:none;
}

.intro-feature-img{
  margin-bottom:16px;
}

.intro-feature-img img{
  width:100%;
  border-radius:10px;
}

.intro-feature-title{
  font-size:1.6rem;
  font-weight:700;
  color:var(--navy);
  margin-bottom:10px;
  line-height:1.5;
}

.intro-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:34px;
  margin-top:70px;
}

.intro-image{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  box-shadow:0 24px 50px rgba(27,114,190,.08);
  transition:.4s ease;
}

.intro-image:hover{
  transform:translateY(-10px);
}

.intro-image img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
  transition:.5s ease;
  filter:saturate(.96) contrast(1.02) brightness(.98);
}

.intro-image:hover img{
  transform:scale(1.04);
}

@media(max-width:599px){

  .intro{
    padding:70px 0 50px;
    background-size:12px 12px;
  }

  .intro-head{ margin-bottom:40px; }

  .intro-content-box{ padding-top:10px; }

  .intro-content-box::before{
    width:80px;
    margin-bottom:28px;
  }

  .intro-lead{
    font-size:1rem;
    line-height:1.9;
    margin-bottom:24px;
  }

  .intro-features{
    grid-template-columns:1fr;
    margin:22px 0 20px;
  }

  .intro-feature-item{
    padding:20px 18px;
    border-right:none;
    border-bottom:1px solid rgba(27,114,190,.14);
  }

  .intro-feature-item:last-child{
    border-bottom:none;
  }

  .intro-feature-title{ font-size:1rem; }

  .intro-list{ gap:14px; }

  .intro-list li{
    min-height:auto;
    padding:18px 18px 18px 62px;
    font-size:.95rem;
    line-height:1.8;
  }

  .intro-list li::before{
    width:28px;
    height:28px;
    left:18px;
  }

  .intro-list li::after{
    left:27px;
    font-size:.82rem;
  }

  .intro-gallery{
    grid-template-columns:1fr;
    gap:20px;
    margin-top:44px;
  }

}

/* =========================================================
POINT
========================================================= */

.point{
  background:#EFF7FF;
}

.point-row{
  display:grid;
  gap:50px;
  align-items:center;
  margin-bottom:90px;
}

.point-row:last-child{
  margin-bottom:0;
}

.point-image img{
  border-radius:30px;
  box-shadow:var(--shadow);
}

.point-content{
  max-width:560px;
}

.point-number{
  display:flex;
  align-items:flex-end;
  gap:14px;
  margin-bottom:20px;
  font-weight:900;
  line-height:1;
  font-size:4.5rem;
  color:rgba(27,114,190,.15);
  letter-spacing:-.04em;
}

.point-number span{
  font-size:.82rem;
  letter-spacing:.18em;
  color:var(--light-blue);
  transform:translateY(-8px);
}

.point-content h3{
  font-size:2.2rem;
  line-height:1.5;
  margin-bottom:24px;
}

.point-content p{
  color:var(--gray);
  font-size:1.2rem;
}

@media(min-width:600px){

  .point-row{
    grid-template-columns:1fr 1fr;
  }

  .point-row.reverse .point-image{ order:2; }
  .point-row.reverse .point-content{ order:1; }

}

@media(max-width:599px){

  .point-row{
    gap:26px;
    margin-bottom:70px;
  }

  .point-content h3{ font-size:1.6rem; }

}

/* =========================================================
POINT PICKUP
========================================================= */

.point-pickup{
  margin-top:80px;
  padding:40px 60px;
  position:relative;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(27,114,190,.08);
  border:3px solid var(--blue);
  border-radius:28px;
  background:#fff;
}

.point-pickup::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(27,114,190,.06),transparent 70%);
}

.pickup-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:66px;
  padding:0 22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  font-size:1.9rem;
  font-weight:900;
  letter-spacing:.14em;
  margin-bottom:34px;
  box-shadow:0 10px 24px rgba(27,114,190,.22);
}

.pickup-grid{
  display:grid;
  gap:40px;
  align-items:center;
}

.pickup-content h3{
  font-size:2rem;
  line-height:1.6;
  margin-bottom:24px;
  color:var(--navy);
}

.pickup-content p{
  color:var(--gray);
  font-size:1.2rem;
  line-height:2;
}

.pickup-image img{
  border-radius:28px;
  aspect-ratio:16/12;
  object-fit:cover;
  box-shadow:0 24px 60px rgba(27,114,190,.10);
}

@media(min-width:600px){
  .pickup-grid{
    grid-template-columns:1.1fr .9fr;
  }
}

@media(max-width:599px){

  .point-pickup{
    margin-top:80px;
    padding:50px 24px;
    border-radius:28px;
  }

  .pickup-content h3{ font-size:1.5rem; }

}

/* =========================================================
SCENE
========================================================= */

.scene-grid{
  display:grid;
  gap:26px;
}

.scene-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(27,114,190,.08);
  transition:.3s ease;
}

.scene-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(27,114,190,.12);
}

.scene-title{
  padding:20px 10px 0;
  font-size:1.4rem;
  font-weight:900;
  color:var(--blue);
}

.scene-card img{
  aspect-ratio:4/3;
  object-fit:cover;
  margin-top:14px;
}

.scene-desc{
  padding:18px 20px 24px;
  color:var(--gray);
  font-size:1.2rem;
}

/* =========================================================
USAGE
========================================================= */

.usage{
  background:#E3F2FD;
}

.usage-main{
  margin-top:50px;
  margin-bottom:50px;
}

.usage-main img{
  border-radius:32px;
  box-shadow:0 30px 70px rgba(27,114,190,.10);
}

.usage-label{
  position:relative;
  width:fit-content;
  margin:0 auto 50px;
  padding:0 34px;
  color:var(--blue);
  font-size:2.0rem;
  font-weight:900;
  letter-spacing:.04em;
  background:none;
  box-shadow:none;
  border-radius:0;
}

.usage-label::before,
.usage-label::after{
  content:"";
  position:absolute;
  top:50%;
  width:220px;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(27,114,190,.35));
}

.usage-label::before{
  right:100%;
  margin-right:24px;
}

.usage-label::after{
  left:100%;
  margin-left:24px;
  transform:scaleX(-1);
}

.usage-feature-grid{
  display:grid;
  gap:24px;
}

.usage-feature{
  background:#fff;
  border-radius:28px;
  padding:40px 34px;
  position:relative;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(27,114,190,.07);
  border:1px solid #C8DDF0;
  transition:.3s;
}

.usage-feature:hover{
  transform:translateY(-6px);
}

.usage-feature::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg,var(--blue),var(--light-blue));
}

.usage-feature h3{
  font-size:1.8rem;
  margin-bottom:20px;
  color:var(--blue);
}

.usage-feature p{
  color:var(--gray);
  line-height:2;
  font-size:1.15rem;
}

@media(min-width:600px){
  .usage-feature-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:599px){

  .usage-main{ margin:40px 0; }

  .usage-main img{
    aspect-ratio:4/3;
    border-radius:24px;
  }

  .usage-label{
    font-size:1.2rem;
    padding:0 12px;
  }

  .usage-label::before,
  .usage-label::after{ width:40px; }

  .usage-feature{ padding:32px 24px; }

  .usage-feature h3{ font-size:1.3rem; }

}

/* =========================================================
SPEC
========================================================= */

.spec-wrap{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.spec-head{
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  padding:26px 30px;
}

.spec-table{
  overflow:auto;
}

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

.spec-table th,
.spec-table td{
  padding:10px 22px;
  border-bottom:1px solid #D6EAF8;
}

.spec-table th{
  width:30%;
  background:#EFF7FF;
  text-align:left;
  color:var(--navy);
  font-weight:700;
}

/* =========================================================
PLAN
========================================================= */

.plan-wrap{
  display:grid;
  gap:26px;
  position:relative;
}

.plan-card{
  background:#fff;
  border-radius:28px;
  padding:36px 30px;
  box-shadow:var(--shadow);
  border:2px solid transparent;
  transition:var(--transition);
}

.plan-card:hover{
  border-color:var(--light-blue);
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(27,114,190,.12);
}

.plan-card h3{
  font-size:1.5rem;
  margin-bottom:12px;
}

.plan-price{
  font-size:2rem;
  color:var(--blue);
  font-weight:900;
  margin-bottom:24px;
}

.plan-price span{
  font-size:1rem;
  color:var(--gray);
}
.plan-price a:hover{
  color:var(--light-blue);
}

.plan-card ul{
  display:grid;
  gap:12px;
  font-size:1.2rem;
}

.plan-card li{
  padding-left:24px;
  position:relative;
}

.plan-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--light-blue);
}

/*----------------------------------
タレント画像
----------------------------------*/

/* カードの角丸からはみ出さないよう、右側にテキスト用の余白を確保する */
.plan-card--talent{
  padding-right:clamp(70px,16vw,170px);
}

.plan-talent-img{
  position:absolute;
  right:18px;
  bottom:0;
  width:clamp(110px,14vw,168px);
  z-index:5;
  pointer-events:none;
}

.plan-talent-img img{
  width:100%;
  height:auto;
  display:block;
}

/* スタック表示（1カラム）になる幅では、上の購入プランに
   かぶらないよう控えめなサイズに留める */
@media(max-width:599px){
  .plan-talent-img{
    width:clamp(70px,20vw,100px);
    right:14px;
    bottom:0;
  }
}

/* =========================================================
FAQ
========================================================= */

.faq-list{
  display:grid;
  gap:18px;
}

.faq-item{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(27,114,190,.08);
}

.faq-question{
  width:100%;
  border:none;
  background:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px;
  cursor:pointer;
  font-size:1.4rem;
  font-weight:700;
  text-align:left;
}

.faq-question span{
  color:var(--blue);
}

.faq-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:1.2rem;
  transition:.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  padding:0 24px;
}

.faq-answer p{
  padding-bottom:24px;
  color:var(--gray);
  font-size:1.2rem;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}
.faq-answer a{text-decoration:underline; color:var(--blue);}

/* =========================================================
CTA
========================================================= */

.cta-wrap{
  overflow:visible;
  text-align:center;
  color:#fff;
  margin-top:-45px;
  background:linear-gradient(135deg,#1565C0 0%,#1B72BE 50%,#42A5F5 100%);
  position:relative;
  z-index:1;
}

/*----------------------------------
タレント画像
----------------------------------*/

.cta-person{
  position:absolute;
  bottom:0;
  transform:translateY(44%);
  width:clamp(120px,16vw,190px);
  z-index:3;
  pointer-events:none;
}

.cta-person img{
  width:100%;
  height:auto;
  display:block;
}

.cta-person-left{
  /* ビューポート端ではなく .container の左端を基準にすることで、
     幅を広げても中央のコンテンツから離れていかないようにする */
  left:calc((100% - min(92%,1180px)) / 2 + 20px);
}

.cta-person-right{
  right:clamp(8px,3vw,50px);
}

/* 幅の狭い画面ではボタンが画面幅いっぱいに広がるため、
   人物を下げてボタンの帯と縦位置が重ならないようにする */
@media(max-width:600px){
  .cta-person{
    width:clamp(82px,20vw,110px);
    transform:translateY(75%);
  }
}

/* 2つ目のCTAは右側の人物を下部フォームの外枠にドッキングさせる
   （帯下の余白は section 50px + .contact 上パディング50px = 固定100px。
   画像下部は徐々に透明度が下がるため、実際に見えている脚が
   フォームに接するよう少し余分に重ねる）
   横位置はビューポート端ではなく、.container（=フォームカード）の
   右端に揃える。フォームは2カラム表示（min-width:600px）の時だけ
   右側に来るため、この位置合わせもそれ以上の幅でのみ適用する。 */
@media(min-width:600px){
  .cta-person-right{
    right:calc((100% - min(92%,1180px)) / 2);
    bottom:-100px;
    transform:none;
  }
}

/* フォームが1カラムで積まれる幅では位置合わせの前提が崩れるため非表示にする */
@media(max-width:599px){
  .cta-person-right{
    display:none;
  }
}

.cta-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}

.cta-inner{
  padding:60px 0;
  position:relative;
}

.cta-inner h2{
  font-size:2.4rem;
  margin-bottom:20px;
}

.cta-inner p{
  max-width:700px;
  margin:auto auto 34px;
}
.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:16px 88px;
  font-weight:700;
  transition:var(--transition);
  font-size:26px;
  background:rgba(255,255,255,.20);
  border:2px solid rgba(255,255,255,.85);
  color:#fff;
}

.cta-btn.btn-main{
  background:#fff;
  color:var(--blue);
  border:none;
  box-shadow:0 14px 36px rgba(0,0,0,.15);
}

.cta-btn.btn-main:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 50px rgba(0,0,0,.20);
}

/* =========================================================
CONTACT
========================================================= */

.contact{
  background:linear-gradient(180deg,#F0F7FF 0%,#E8F4FD 100%);
  position:relative;
}

.contact-flex{
  display:grid;
  gap:40px;
  align-items:stretch;
}

.contact-info{
  color:#333;
}

.contact-info h3{
  font-size:2rem;
  margin-bottom:20px;
}

.contact-info p{
  margin-bottom:16px;
  opacity:.92;
  line-height:2;
}

.contact-info h4{
  font-size:1.3rem;
  line-height:1.7;
  margin:34px 0 20px;
}

.contact-info img{
  border-radius:20px;
  margin-top:10px;
}

.form-wrap{
  background:#fff;
  border-radius:34px;
  padding:46px 42px;
  box-shadow:0 24px 60px rgba(27,114,190,.08);
}

/* =========================================================
MAIL FORM
========================================================= */

#mail_form{
  width:100%;
}

#mail_form dl{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:12px;
}

#mail_form dt{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.96rem;
  font-weight:800;
  color:var(--navy);
}

#mail_form dt i{
  font-style:normal;
  display:inline-flex;
  flex-shrink:0;
}

#mail_form dt i span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:24px;
  padding:0 10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  font-size:.72rem;
  font-weight:700;
  line-height:1;
  letter-spacing:.04em;
  white-space:nowrap;
}

#mail_form dd{
  margin:0;
}

#mail_form dd.required{
  display:flex;
  flex-direction:column;
  gap:14px;
}

#mail_form input[type="text"],
#mail_form input[type="email"],
#mail_form input[type="tel"],
#mail_form textarea{
  width:100%;
  border:1px solid #C8DDF0;
  background:#F5FAFF;
  border-radius:16px;
  padding:12px 18px;
  font-size:1rem;
  font-family:inherit;
  color:var(--text);
  transition:.3s ease;
}

#mail_form input:focus,
#mail_form textarea:focus{
  outline:none;
  border-color:rgba(27,114,190,.45);
  background:#fff;
  box-shadow:0 0 0 5px rgba(66,165,245,.12);
}

#mail_form textarea{
  min-height:100px;
  resize:vertical;
  line-height:1.8;
}

#form_submit{
  margin-top:34px;
}

#form_submit_button{
  width:100%;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  font-size:1rem;
  font-weight:800;
  letter-spacing:.04em;
  padding:18px 24px;
  cursor:pointer;
  transition:.35s ease;
  box-shadow:0 16px 36px rgba(27,114,190,.20);
}

#form_submit_button:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 44px rgba(27,114,190,.28);
}

.error_blank,
.error_format,
.error_match{
  display:block;
  margin-top:-3px;
  color:#E53935;
  font-size:.85rem;
  font-weight:normal;
}

input.error,
textarea.error{
  border-color:#E53935 !important;
  background:#FFF5F5 !important;
}

@media(min-width:600px){

  .contact-flex{
    grid-template-columns:.92fr 1.08fr;
  }

}

@media(max-width:599px){

  .contact{ padding:70px 0; }

  .contact-flex{ gap:24px; }

  .contact-info{
    padding:36px 26px;
    border-radius:26px;
  }

  .contact-info h3{ font-size:1.5rem; }

  .contact-info p{
    font-size:.95rem;
    line-height:1.9;
  }

  .contact-info h4{ font-size:1.05rem; }

  .form-wrap{
    padding:32px 22px;
    border-radius:26px;
  }

  #mail_form dl{ margin-bottom:22px; }

  #mail_form input[type="text"],
  #mail_form input[type="email"],
  #mail_form input[type="tel"],
  #mail_form textarea{ font-size:16px; }

  #form_submit_button{ padding:16px 20px; }

}

/* =========================================================
CHECKBOX
========================================================= */

.checkbox-group{
  display:grid;
  gap:14px;
}

.checkbox-group label,
.privacy-check label{
  display:flex;
  align-items:flex-start;
  gap:12px;
  cursor:pointer;
  line-height:1.8;
}

.checkbox-group input[type="checkbox"],
.privacy-check input[type="checkbox"]{
  width:20px;
  height:20px;
  margin-top:3px;
  accent-color:var(--blue);
  flex-shrink:0;
}

.checkbox-group span,
.privacy-check span{
  font-size:.96rem;
  font-weight:500;
  color:var(--text);
}

.checkbox-group.plan-row{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.privacy-check{ margin-top:10px; }

.privacy-check a{
  color:var(--blue);
  text-decoration:underline;
}

@media(max-width:599px){

  .checkbox-group{ gap:12px; }

  .checkbox-group span,
  .privacy-check span{
    font-size:.92rem;
    line-height:1.7;
  }

}

#form_submit_button:disabled{
  opacity:.4;
  cursor:not-allowed;
  transform:none !important;
  box-shadow:none;
}

/* =========================================================
CHECKBOX BUTTON
========================================================= */

dd.checkbox-group{
	display:flex !important;
	flex-wrap:wrap !important;
	gap:12px !important;
}

dd.checkbox-group label{
	display:inline-block !important;
	width:auto !important;
	margin:0 !important;
	padding:0 !important;
}

dd.checkbox-group input[type="checkbox"]{
	display:none;
}

dd.checkbox-group label span{
	display:inline-flex !important;
	align-items:center;
	justify-content:center;
	width:auto !important;
	margin:0 !important;
	padding:10px 18px;
	border-radius:999px;
	border:1px solid #C8DDF0;
	background:#fff;
	font-size:14px;
	font-weight:500;
	line-height:1.4;
	white-space:nowrap;
	transition:.25s;
}

dd.checkbox-group label:hover span{
	border-color:var(--blue);
	color:var(--blue);
}

dd.checkbox-group input[type="checkbox"]:checked + span{
	background:var(--blue);
	border-color:var(--blue);
	color:#fff;
}

.checkbox-group label:hover span{
	border-color:var(--blue);
	color:var(--blue);
	transform:translateY(-1px);
}

.checkbox-group input[type="checkbox"]:checked + span{
	background:var(--blue);
	border-color:var(--blue);
	color:#fff;
	box-shadow:0 6px 18px rgba(27,114,190,.22);
}

.plan-row{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}

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

	.checkbox-group{ gap:8px; }

	.checkbox-group span{
		padding:10px 14px;
		font-size:13px;
	}

}

.checkbox-group.required label{
	display:inline-flex !important;
	width:auto !important;
}

.checkbox-group.required{
	display:flex !important;
	flex-wrap:wrap !important;
	gap:12px !important;
}

#mail_form dl dd.checkbox-group.required{
	display:flex !important;
	flex-direction:row !important;
	flex-wrap:wrap !important;
	align-items:center !important;
	gap:12px !important;
}

#mail_form dl dd.checkbox-group.required label{
	display:inline-flex !important;
	width:auto !important;
	margin:0 !important;
}

/* =========================================================
THANKS
========================================================= */

.thanks-section{
  padding:80px 0 100px;
  background:linear-gradient(180deg,#EFF7FF 0%,#ffffff 100%);
}

.thanks-wrap{
  max-width:820px;
  margin:0 auto;
  background:#fff;
  border-radius:28px;
  padding:60px 50px;
  box-shadow:0 20px 60px rgba(27,114,190,.08);
  border:1px solid rgba(27,114,190,.08);
  text-align:center;
}

.thanks-icon{
  width:72px;
  height:72px;
  margin:0 auto 24px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  font-weight:700;
  box-shadow:0 10px 30px rgba(27,114,190,.20);
}

.thanks-title{
  font-size:2rem;
  line-height:1.5;
  font-weight:700;
  color:#111;
  margin-bottom:24px;
}

.thanks-text{
  font-size:1.2rem;
  line-height:2;
  color:#555;
  margin-bottom:14px;
}

.thanks-box{
  margin-top:40px;
  padding:24px 28px;
  border-radius:20px;
  background:#EFF7FF;
  border:1px solid rgba(27,114,190,.10);
  text-align:left;
}

.thanks-box-title{
  font-size:1.2rem;
  font-weight:700;
  color:var(--blue);
  margin-bottom:14px;
}

.thanks-box p{
  font-size:1.1rem;
  line-height:1.9;
  color:#444;
  margin:0;
}

.thanks-box strong{
  font-size:1rem;
  color:#111;
}

.thanks-home{ margin-top:42px; }

.thanks-home a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:240px;
  height:58px;
  padding:0 32px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--light-blue));
  color:#fff;
  font-size:.95rem;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
  box-shadow:0 10px 30px rgba(27,114,190,.20);
}

.thanks-home a:hover{
  transform:translateY(-2px);
  opacity:.92;
}

@media (max-width:768px){

  .thanks-section{ padding:110px 0 70px; }

  .thanks-wrap{
    padding:42px 24px;
    border-radius:22px;
  }

  .thanks-title{ font-size:1.5rem; }

  .thanks-text{
    font-size:.95rem;
    line-height:1.9;
  }

  .thanks-box{ padding:22px 20px; }

  .thanks-home a{
    width:100%;
    min-width:auto;
  }

}

/* =========================================================
FOOTER
========================================================= */

.footer{
  background:#1A3A5C;
  color:#fff;
  text-align:center;
  padding:30px;
}

/* =========================================================
SP
========================================================= */

@media(max-width:599px){

.br-pc { display:none; }

  section{ padding:70px 0; }

  .section-title h2{ font-size:2.2rem; }

  .header-inner{
    min-height:72px;
    gap:10px;
  }

  .logo img{ height:34px; }

  .nav{
    position:fixed;
    top:72px;
    left:0;
    width:100%;
    background:#fff;
    padding:30px 24px;
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:.3s;
    box-shadow:0 20px 40px rgba(27,114,190,.10);
    margin-left:0;
  }

  .nav.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .nav ul{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .header-cta{ gap:8px; }

  .header-btn{
    height:38px;
    padding:0 12px;
    font-size:.68rem;
  }

  .hamburger{ display:flex; }

  .hero{ padding:28px 0 36px; }

  .hero-catch{
    font-size:1.15rem;
    padding:12px 0 10px;
    gap:6px 8px;
  }

  .hero-catch-kw{
    padding:3px 12px;
    border-radius:8px;
  }

  .hero-copy h1{ font-size:1.8rem; }

  .hero-subcopy{ font-size:1.75rem; }

  .hero-device img{ max-width:300px; }

  .hero-icon-box span{
    font-size:.85rem;
    padding:0 14px;
    height:40px;
  }

  .hero-spec{
    font-size:.88rem;
    padding:12px 10px;
  }

  .hero-spec-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* =========================================================
PC
========================================================= */

@media(min-width:600px){

.br-sp { display:none; }

  .nav{ display:block; }

  .hero-grid{
    grid-template-columns:.75fr 1.25fr;
    margin-top:14px;
  }

  .hero-copy h1{ font-size:2rem; }

  .hero-subcopy{ font-size:2.3rem; }

  .media-logos{
    grid-template-columns:repeat(5,1fr);
  }

  .function-wrap{
    grid-template-columns:repeat(3,1fr);
  }

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

  .usage-wrap{
    grid-template-columns:1.1fr .9fr;
  }

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

  .plan-wrap{
    grid-template-columns:repeat(2,1fr);
  }

  .form-grid{
    display:grid;
    gap:20px;
  }

  .full{ grid-column:1/-1; }

}
