/* =========================================
   いちぺじ テーマ v2 — home.css
   フロントページ専用セクションスタイル
   ========================================= */


/* =========================================
   HERO
   ========================================= */
#hero {
  min-height: 92vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 132px 40px 84px;
  background:
    radial-gradient(680px 520px at 8% -8%, rgba(61,90,130,.10), transparent 65%),
    radial-gradient(560px 460px at 100% 20%, rgba(238,140,98,.10), transparent 60%),
    var(--paper);
  margin-top: 67px;
}
.hero-inner {
  position: relative; max-width: 1120px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--line); color: var(--navy);
  font-weight: 700; font-size: .82rem; padding: 8px 16px 8px 12px; border-radius: 50px;
  margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px var(--mint-soft); }
.hero-title {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem); font-weight: 900; line-height: 1.22;
  color: var(--navy); margin-bottom: 26px; letter-spacing: -.015em;
}
.hero-title .accent { color: var(--coral); position: relative; white-space: nowrap; }
.hero-title .accent::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: 4px; height: 10px;
  background: var(--mint); opacity: .28; z-index: -1; border-radius: 4px;
}
.hero-desc { font-size: 1.06rem; color: var(--sub); line-height: 2; margin-bottom: 34px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-trust .t-item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .t-num  { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.7rem; color: var(--navy); line-height: 1; }
.hero-trust .t-num span { font-size: 1rem; color: var(--coral); }
.hero-trust .t-label { font-size: .78rem; color: var(--sub); font-weight: 600; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: 24px; box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.floating-card {
  position: absolute; background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 13px 16px; box-shadow: var(--shadow);
  font-weight: 700; font-size: .85rem; display: flex; align-items: center; gap: 9px;
  animation: floatCard 5s ease-in-out infinite;
}
.floating-card .ic { width: 1.2rem; height: 1.2rem; stroke-width: 2; }
.fc1 { top: 26px; right: -22px; color: var(--coral); }
.fc2 { bottom: 30px; left: -24px; color: var(--teal); animation-delay: 2.5s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ヒーロー入場アニメーション */
@keyframes heroFadeUp    { from { opacity:0; transform:translateY(28px); }  to { opacity:1; transform:none; } }
@keyframes heroFadeRight { from { opacity:0; transform:translateX(36px); } to { opacity:1; transform:none; } }
.hero-badge  { animation: heroFadeUp   .7s var(--ease) .10s both; }
.hero-title  { animation: heroFadeUp   .8s var(--ease) .28s both; }
.hero-desc   { animation: heroFadeUp   .7s var(--ease) .44s both; }
.hero-btns   { animation: heroFadeUp   .7s var(--ease) .58s both; }
.hero-trust  { animation: heroFadeUp   .7s var(--ease) .72s both; }
.hero-visual { animation: heroFadeRight .9s var(--ease) .22s both; }
@media (prefers-reduced-motion: reduce) {
  .hero-badge,.hero-title,.hero-desc,.hero-btns,.hero-trust,.hero-visual { animation: none; }
}


/* =========================================
   NEWS BAR（お知らせ）
   ========================================= */
.news-bar-wrap {
  position: absolute; z-index: 2; left: 50%; bottom: 0; transform: translate(-50%,0);
  width: 60%; max-width: 640px;
  display: flex; align-items: center; gap: 16px;
  background: rgba(61,90,130,.9); border: 1px solid rgba(255,255,255,.18); border-bottom: none;
  border-radius: 14px 14px 0 0; padding: 8px 10px 8px 18px;
  backdrop-filter: blur(4px);
  animation: newsBarSlide .6s var(--ease) .4s both;
}
@keyframes newsBarSlide { from { opacity:0; transform:translate(-50%,8px); } to { opacity:1; transform:translate(-50%,0); } }
.news-bar-label {
  flex-shrink: 0; background: var(--coral); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 50px;
  white-space: nowrap; letter-spacing: .06em;
}
.news-bar-slider {
  flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.news-bar-track {
  display: flex; align-items: center; gap: 40px;
  width: max-content;
  animation: newsTicker 22s linear infinite;
}
.news-bar-wrap:hover .news-bar-track,
.news-bar-wrap:focus-within .news-bar-track { animation-play-state: paused; }
@keyframes newsTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.news-bar-item {
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap; text-decoration: none; color: var(--white); font-size: .82rem;
}
.news-bar-item:hover .news-bar-title { text-decoration: underline; }
.news-bar-date  { font-family: 'Poppins', sans-serif; font-size: .72rem; color: var(--mint); font-weight: 700; }
.news-bar-title { font-weight: 600; }

@media (max-width: 860px) {
  .news-bar-wrap  { width: 90%; padding: 7px 8px 7px 14px; gap: 10px; }
  .news-bar-label { font-size: .68rem; padding: 4px 10px; }
  .news-bar-item  { font-size: .76rem; }
}


/* =========================================
   TROUBLE
   ========================================= */
#trouble { background: var(--navy); position: relative; overflow: hidden; }
#trouble::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(520px 380px at 90% 0%, rgba(238,140,98,.12), transparent 70%);
}
#trouble .sec-inner { position: relative; z-index: 1; }
#trouble .sec-label { color: var(--mint); }
#trouble .sec-label::before { background: var(--mint); }
#trouble .sec-title { color: var(--white); }
#trouble .sec-sub   { color: rgba(255,255,255,.66); }
.trouble-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); gap: 18px; }
.trouble-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 16px;
  transition: background .3s, transform .3s, border-color .3s;
}
.trouble-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); border-color: rgba(238,140,98,.4); }
.trouble-ic {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(224,90,58,.18); color: #f0a688;
  display: flex; align-items: center; justify-content: center;
}
.trouble-text { color: rgba(255,255,255,.88); font-size: .95rem; line-height: 1.8; font-weight: 500; }
.trouble-bridge { text-align: center; margin-top: 52px; color: var(--white); font-size: clamp(1.05rem, 2.2vw, 1.4rem); font-weight: 700; line-height: 1.8; }
.trouble-bridge .hl { color: var(--mint); }


/* =========================================
   FEATURES
   ========================================= */
#features { background: var(--gray); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(318px, 1fr)); gap: 22px; }
.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.feature-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.feature-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.feature-icon .ic { width: 1.55rem; height: 1.55rem; }
.fi-coral  { background: #fff0f0; color: var(--coral); }
.fi-mint   { background: var(--mint-soft); color: var(--teal); }
.fi-purple { background: #f1eefe; color: #7c5fe0; }
.fi-yellow { background: #fff7df; color: #c79200; }
.fi-blue   { background: #e9f3ff; color: #2f7fd6; }
.fi-green  { background: #e8f8ee; color: #2a9d5c; }
.feature-num   { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 2.6rem; color: var(--line); line-height: 1; }
.feature-title { font-size: 1.14rem; font-weight: 800; color: var(--navy); margin-bottom: 11px; }
.feature-desc  { font-size: .9rem; color: var(--sub); line-height: 1.9; }


/* =========================================
   WORKS
   ========================================= */
#works { background: var(--white); }
.works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.work-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; display: block; text-decoration: none; color: inherit;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.work-img { width: 100%; height: 208px; object-fit: cover; }
.work-img.work-noimg { background: var(--gray); display: flex; align-items: center; justify-content: center; color: var(--sub); }
.work-info { padding: 22px 24px 26px; }
.work-tag  { display: inline-block; background: var(--mint-soft); color: var(--teal); font-size: .72rem; font-weight: 700; padding: 4px 11px; border-radius: 50px; margin-bottom: 12px; }
.work-name { font-weight: 800; font-size: 1.04rem; color: var(--navy); }
.work-desc { font-size: .86rem; color: var(--sub); margin-top: 8px; line-height: 1.8; }
.work-arrow { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: .83rem; font-weight: 700; color: var(--teal); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; }
.work-card:hover .work-arrow { opacity: 1; transform: translateX(0); }
.work-arrow .ic { width: 1rem; height: 1rem; }

/* 7件目以降: 「すべて表示」クリックで展開 */
.work-extra { display: none; }
.works-grid.is-expanded .work-extra { display: block; opacity: 1; transform: none; }
.works-more-wrap { display: flex; justify-content: center; margin-top: 40px; }


/* =========================================
   DEMO
   ========================================= */
#demo { background: var(--gray); overflow: hidden; }
.demo-scroll-wrap {
  overflow: hidden; margin-top: 52px; padding-bottom: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
.demo-track { display: flex; gap: 24px; width: max-content; animation: demoScroll 32s linear infinite; }
.demo-track:hover { animation-play-state: paused; }
@keyframes demoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.demo-card {
  width: 300px; flex-shrink: 0; display: block;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.demo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.demo-card-img   { width: 100%; height: 180px; object-fit: cover; display: block; }
.demo-card-img.demo-card-noimg { background: var(--gray); display: flex; align-items: center; justify-content: center; color: var(--sub); }
.demo-card-body  { padding: 20px 22px 24px; }
.demo-card-tag   { display: inline-block; background: var(--mint-soft); color: var(--teal); font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.demo-card-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.demo-card-desc  { font-size: .84rem; color: var(--sub); line-height: 1.8; }
.demo-card-link  { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: .83rem; font-weight: 700; color: var(--teal); }
.demo-card-link .ic { width: 1rem; height: 1rem; stroke-width: 2.2; }


/* =========================================
   VOICE
   ========================================= */
#voice { background: var(--gray); }
.voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.voice-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px; }
.voice-mark   { font-family: 'Poppins', sans-serif; font-size: 3.2rem; font-weight: 900; color: var(--mint); opacity: .34; line-height: .8; margin-bottom: 8px; }
.stars        { color: var(--yellow); font-size: .95rem; letter-spacing: 2px; margin-bottom: 12px; }
.voice-text   { font-size: .95rem; color: var(--ink); line-height: 2; margin-bottom: 22px; }
.voice-person { display: flex; align-items: center; gap: 13px; }
.voice-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.voice-name   { font-weight: 800; font-size: .9rem; color: var(--navy); }
.voice-role   { font-size: .79rem; color: var(--sub); }


/* =========================================
   FLOW
   ========================================= */
#flow { background: var(--white); overflow-x: hidden; }
#flow .fade-left  { transform: translateX(-60px); transition-duration: 1s; }
#flow .fade-right { transform: translateX(60px);  transition-duration: 1s; }
@media (max-width: 768px) {
  #flow .fade-left  { transform: translateX(-24px); }
  #flow .fade-right { transform: translateX(24px); }
}
.flow-list { display: flex; flex-direction: column; max-width: 740px; margin: 0 auto; }
.flow-item { display: flex; align-items: flex-start; gap: 26px; position: relative; }
.flow-item:not(:last-child)::after {
  content: ''; position: absolute; left: 27px; top: 58px; bottom: -26px; width: 2px;
  background: linear-gradient(180deg, var(--mint), rgba(238,140,98,.15));
}
.flow-item + .flow-item { padding-top: 30px; }
.flow-step {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.2rem; flex-shrink: 0; z-index: 1;
  color: var(--white); background: var(--navy);
}
.flow-step.accent { background: var(--coral); }
.flow-body  { padding-top: 6px; }
.flow-title { font-size: 1.08rem; font-weight: 800; color: var(--navy); margin-bottom: 7px; display: flex; align-items: center; gap: 9px; }
.flow-title .ic { width: 1.2rem; height: 1.2rem; color: var(--teal); }
.flow-desc  { font-size: .9rem; color: var(--sub); line-height: 1.9; }


/* =========================================
   PRICE
   ========================================= */
#price { background: var(--gray); }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(266px, 1fr)); gap: 24px; max-width: 1060px; margin: 0 auto; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 38px 32px;
  box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.price-card.popular { background: var(--navy); border-color: var(--navy); }
.price-card.popular::before { content: ''; position: absolute; inset: 0; border-radius: 22px; pointer-events: none; box-shadow: 0 0 0 3px var(--coral); }
.price-badge-popular { position: absolute; top: 22px; right: 22px; background: var(--coral); color: var(--white); font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; }
.plan-name    { font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .14em; color: var(--teal); margin-bottom: 14px; }
.price-card.popular .plan-name { color: var(--mint); }
.price-amount { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.price-amount .yen { font-size: 1.4rem; vertical-align: top; margin-right: 2px; }
.price-card.popular .price-amount { color: var(--white); }
.price-unit { font-size: .85rem; color: var(--sub); margin-top: 8px; margin-bottom: 24px; }
.price-card.popular .price-unit { color: rgba(255,255,255,.55); }
.price-list { list-style: none; margin-bottom: 26px; flex: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .89rem; color: var(--ink); padding: 8px 0; border-bottom: 1px solid var(--line); line-height: 1.6; }
.price-list li:last-child { border-bottom: none; }
.price-list .ic { width: 1.05rem; height: 1.05rem; color: var(--teal); margin-top: 3px; stroke-width: 2.2; }
.price-card.popular .price-list li { color: rgba(255,255,255,.84); border-color: rgba(255,255,255,.1); }
.price-card.popular .price-list .ic { color: var(--mint); }
.price-note { font-size: .77rem; color: var(--sub); margin-top: 14px; line-height: 1.7; }
.price-card.popular .price-note { color: rgba(255,255,255,.45); }
.price-tag-warn { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; background: #fff7df; color: #b07d00; font-size: .76rem; font-weight: 700; padding: 5px 12px; border-radius: 50px; margin-top: 12px; border: 1px solid #ffe49b; }
.price-tag-warn .ic { width: .9rem; height: .9rem; }
.price-foot { text-align: center; margin-top: 42px; }


/* =========================================
   FAQ
   ========================================= */
#faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item  { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: var(--white); transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--mint); }
.faq-q {
  display: flex; align-items: center; gap: 16px; padding: 22px 24px; cursor: pointer; width: 100%;
  font-weight: 700; font-size: .96rem; color: var(--navy); background: none; border: none; text-align: left;
  transition: background .2s;
}
.faq-q:hover { background: var(--gray); }
.faq-q-icon {
  width: 30px; height: 30px; background: var(--mint-soft); color: var(--teal); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif;
  font-weight: 900; font-size: .82rem; flex-shrink: 0;
}
.faq-arrow  { margin-left: auto; color: var(--teal); transition: transform .3s; }
.faq-arrow .ic { width: 1.15rem; height: 1.15rem; stroke-width: 2.4; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); font-size: .9rem; color: var(--sub); line-height: 2; padding: 0 24px 0 72px; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px 72px; }


/* =========================================
   BLOG & GUIDE（2カラム）
   ========================================= */
#blog-guide { background: var(--gray); }
.bg-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bg-col {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.bg-col-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
  background: var(--gray);
}
.bg-col-title { font-size: 1rem; font-weight: 800; color: var(--navy); }
.bg-col-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .8rem; font-weight: 700; color: var(--teal); text-decoration: none;
  transition: gap .2s;
}
.bg-col-more:hover { gap: 7px; }
.bg-col-more .ic { width: .9rem; height: .9rem; }
.bg-list { padding: 4px 0; }
.bg-list-item {
  display: flex; align-items: center; gap: 14px; padding: 12px 20px;
  text-decoration: none; color: var(--navy); border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.bg-list-item:last-child { border-bottom: none; }
.bg-list-item:hover { background: var(--paper); }
.bg-list-img {
  width: 72px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0;
}
.bg-list-noimg {
  background: var(--gray); display: flex; align-items: center; justify-content: center; color: var(--sub);
}
.bg-list-noimg .ic { width: 1.3rem; height: 1.3rem; }
.bg-list-title { font-size: .88rem; font-weight: 600; line-height: 1.5; flex: 1; min-width: 0; }


/* =========================================
   CTA / CONTACT
   ========================================= */
#cta { background: var(--navy); text-align: center; position: relative; overflow: hidden; }
#cta::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(520px 380px at 8% 0%, rgba(238,140,98,.16), transparent 66%),
    radial-gradient(480px 360px at 96% 100%, rgba(238,140,98,.10), transparent 66%);
}
#cta .sec-inner { position: relative; z-index: 1; }
#cta .sec-label { color: var(--mint); justify-content: center; }
#cta .sec-label::before { background: var(--mint); }
#cta .sec-title { color: var(--white); }
#cta .sec-sub   { color: rgba(255,255,255,.7); max-width: 580px; margin: 0 auto; }

.area-wrap { text-align: center; margin-bottom: 30px; }
.area-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.85);
  font-weight: 600; font-size: .84rem; padding: 9px 18px; border-radius: 50px;
}
.area-badge .ic { width: 1.1rem; height: 1.1rem; color: var(--mint); }

.form-wrap {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px; padding: 46px; max-width: 620px; margin: 0 auto; text-align: left;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { color: rgba(255,255,255,.72); font-size: .83rem; font-weight: 700; }
.form-group label .req { color: var(--coral); margin-left: 3px; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 11px;
  padding: 13px 16px; color: var(--white); font-size: .95rem; font-family: inherit; outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.34); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--mint); background: rgba(255,255,255,.13); }
.form-group select option { background: var(--navy); }
.form-full  { grid-column: 1 / -1; }
.btn-submit {
  width: 100%; background: var(--coral); color: var(--white); border: none; border-radius: 50px;
  padding: 18px; font-size: 1.05rem; font-weight: 700; cursor: pointer; margin-top: 8px;
  box-shadow: 0 14px 30px -12px rgba(238,140,98,.75); transition: transform .2s, box-shadow .2s, background .2s;
  font-family: inherit; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  position: relative;
}
.btn-submit:hover { transform: translateY(-3px); background: var(--coral-deep); }
.btn-submit .ic { width: 1.15rem; height: 1.15rem; stroke-width: 2.2; }
.btn-submit::after {
  content: ''; position: absolute; inset: 0; border-radius: 50px; pointer-events: none;
  animation: ctaPulse 2.5s ease-out infinite;
}
@keyframes ctaPulse { 0% { box-shadow: 0 0 0 0 rgba(238,140,98,.5); } 70% { box-shadow: 0 0 0 14px rgba(238,140,98,0); } 100% { box-shadow: 0 0 0 0 rgba(238,140,98,0); } }
.form-privacy-check { margin-top: 16px; }
.form-privacy-check label {
  display: flex; align-items: flex-start; gap: 8px; cursor: pointer;
  font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.65); text-align: left;
}
.form-privacy-check input[type="checkbox"] {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--coral); cursor: pointer;
}
.form-privacy-check a { color: var(--mint); text-decoration: none; }
.form-privacy-check a:hover { text-decoration: underline; }

/* ハニーポット */
.hp-field { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; left: -9999px; top: -9999px; }


/* =========================================
   HOME RESPONSIVE
   ========================================= */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  #hero { padding: 110px 22px 64px; min-height: 0; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 22px; }
  .hero-trust { gap: 22px; }
  .bg-two-col { grid-template-columns: 1fr; gap: 24px; }
  .demo-card { width: 260px; }
  .demo-card-img { height: 150px; }
  .faq-a { padding-left: 24px; }
  .faq-item.open .faq-a { padding-left: 24px; }
  #flow { padding-left: 10%; padding-right: 10%; }
}
@media (min-width: 769px) {
  .news-bar-wrap { }
}
