/* ===== Reset (LP用の最小限セット) ===== */

/* 全体の余白リセット＆box-sizing統一 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ベース */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
	font-family: "Noto Sans JP", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  line-height: 1.5;
  color: #333;
  background: #fff;
}

/* 画像：Photoshopカンプ切り出し用 */
img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  vertical-align: bottom;
}

/* aタグ（バナーLPだと多用するので最低限） */
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: 0 0;
  text-decoration: none;
}

/* リスト系（ナビやフッターで使うかもなので） */
ul,
ol {
  list-style: none;
}

/* テーブル使う場合の基本 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム系（フォントだけ揃える） */
button,
input,
select,
textarea {
  font: inherit;
}

a {
  &:hover {
    cursor: pointer;
    opacity: .8;
  }
}

/* ===== Layout helper ===== */
.main-contents {
  background: #fff;
}

/* 各セクションは relative にして、その中で絶対配置する想定 */
.section {
  position: relative;
}

/* よく使う position: absolute のユーティリティ */
.abs {
  position: absolute;
}

.abs-center-x {
  left: 50%;
  transform: translateX(-50%);
}

.abs-center-y {
  top: 50%;
  transform: translateY(-50%);
}

.abs-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-contents {
  max-width: 750px;
  margin: 0 auto;
}

/* ヘッダー全体のレイアウト調整 */
header {
  max-width: 750px;
  margin: 0 auto;
  background: #F7F7F7;
  height: 70px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* 左右に振り分け */
  top: 0;
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
  height: 100%;
}

header img {
  height: 50px; /* 少しサイズ調整 */
  width: auto;
  margin-right: 8px;
}

h1 {
  font-size: 13px; /* ボタン追加に合わせて少し小さく調整 */
  text-align: left;
  color: #852092;
  line-height: 1.2;
}

/* ヘッダーボタンのエリア */
.header-right {
  display: flex;
  gap: 6px;
}

/* ボタン共通設定 */
.header-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.header-btn__icon {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}

.header-btn__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header-btn__text {
  font-size: 10px;
}

/* 電話ボタン（紫系） */
.header-btn--tel {
  background: #852092;
}

/* LINEボタン（緑系） */
.header-btn--line {
  background: #22c35e;
}


.fv {
  z-index: 1;
}

.fv_txt {
  top: 36%;
}

.cta {
  z-index: 100;
  z-index: 1;
}

.cta_btn_mail {
  top: 6%;
  padding: 0 10%;
  width: 100%;
}

.cta_btn_tel {
  top: 40%;
  padding: 0 10%;
  width: 100%;
}

.cta_btn_line {
  bottom: 8%;
  padding: 0 10%;
  width: 100%;
}

.onayami1 {
  top: 21%;
  left: 2%;
  width: 80%;
}
.onayami2 {
  top: 33%;
  right: 2%;
  width: 60%;
}
.onayami3 {
  top: 44%;
  right: 2%;
  width: 54%;
}
.onayami4 {     
  top: 55%;
  width: 65%;
}
.onayami5 {
  top: 70%;
  left: 2%;
  width: 62%;
}
.onayami6 {
  top: 83%;
  left: 2%;
  width: 72%;
}

.no1 {
  top: 35%;
  width: 85%;
  left: 8%;
}

.no2 {
  top: 54%;
  width: 85%;
  left: 8%;
}

.no3 {
  top: 74%;
  width: 85%;
  left: 8%;
}

.reason1 {
  top: 24%;
  width: 40%;
  left: 5%;
}

.reason2 {
  top: 48.5%;
  width: 47%;
  right: 5%;
}
.reason3 {
  top: 75%;
  width: 44%;
  left: 5%;
}

.warning {
  margin-top: -18%;
}

.warning-text {
  top: 20%;
  width: 80%;
  left: 10%;
}

.point1 {
  top: 7%;
  left: 2%;
  width: 48%;
}
.point2 {
  top: 36%;
  left: 2%;
  width: 48%;
}
.point3 {
  top: 67%;
  left: 2%;
  width: 48%;
}

.cta2_btn_mail {
  bottom: 36%;
  padding: 0 10%;
  width: 100%;
}

.cta2_btn_tel {
  bottom: 21%;
  padding: 0 10%;
  width: 100%;
}
.cta2_btn_line {
  bottom: 6%;
  padding: 0 10%;
  width: 100%;
}
/* ===== Heading (アニメーション用のベース) ===== */

.animate {
  animation-play-state: running;
}


.heading {
  font-weight: 700;
  line-height: 1.4;
}

/* フェードイン＋ちょい上スライド */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-play-state: paused;
  animation-delay: 0.2s;
}
/* 左からスライドイン */
.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease-out forwards;
  animation-play-state: paused;
  animation-delay: 0.2s;
}
.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s ease-out forwards;
  animation-play-state: paused;
  animation-delay: 0.2s;
}

/* ふわっとスケール＋フェード */
.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  animation: zoomIn 0.6s ease-out forwards;
  animation-play-state: paused;
  animation-delay: 0.2s;
}

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

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* CTAボタン：ゆっくりズームイン・アウト */
.cta-pulse {
  animation: ctaPulse 1.8s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* ふわっと大きく */
  }
  100% {
    transform: scale(1);
  }
}

.zoom-in-strong {
  opacity: 0;
  transform: scale(0.7);                       /* ←もっと小さく */
  animation: zoomInStrong 0.8s ease-out forwards;
  animation-play-state: paused;
  animation-delay: 0.2s;
}

@keyframes zoomInStrong {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  60% {
    opacity: 1;
    transform: scale(1.08);                    /* ←一瞬オーバーシュート */
  }
  100% {
    opacity: 1;
    transform: scale(1);                       /* ←最終サイズ */
  }
}

.bounce-in {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  animation: bounceIn 0.8s ease-out forwards;
  animation-play-state: paused;
  animation-delay: 0.2s;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.05);
  }
  80% {
    transform: translateY(4px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ふわふわ上下に揺れる */
.float-loop {
  animation: floatLoop 3s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes floatLoop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.glow-pulse {
  animation: glowPulse 1.6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 0px rgba(255, 255, 0, 0.0));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(255, 255, 0, 0.8));
  }
}
/* 弱めの揺れ（CTA向け） */
.shake-soft {
  animation: shakeSoft 2.2s ease-in-out infinite;
}

@keyframes shakeSoft {
  0%, 80%, 100% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(-2px) rotate(-1.5deg);
  }
  90% {
    transform: translateX(2px) rotate(1.5deg);
  }
  95% {
    transform: translateX(-1px) rotate(-0.8deg);
  }
}


/* 動き苦手な人向け（ブラウザ設定で減らす指定のとき） */
/* @media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
} */

.fade-in-up.animate,
.slide-in-left.animate,
.slide-in-right.animate,
.zoom-in.animate,
.zoom-in-strong.animate,
.bounce-in.animate {
  animation-play-state: running;
}



/* =========================
   Form tone (purple/pink) : add to bottom
   ========================= */

/* セクション背景（必要ならフォームを白地に） */
#formWrap{
  width: min(700px, 92vw);
  margin: 28px auto 48px;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fd 100%);
  border: 1px solid #eadff6;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(44, 8, 88, .10);
  color: #2a2a2a;
}

/* 見出し */
#formWrap h3{
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #1f1233;
  text-align: center;
}
#formWrap h3::after{
  content:"";
  display:block;
  width: 44px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, #a86bff, #ff7ac3);
}

/* 導入テキスト */
#formWrap > p{
  color: #6b6b6b;
  margin-bottom: 16px;
}

/* テーブルをカード風に */
#formWrap table.formTable{
  border: 0;
}
#formWrap table.formTable th,
#formWrap table.formTable td{
  border: 0;
  padding: 12px 10px;
  vertical-align: top;
}
#formWrap table.formTable tr{
  background: #fff;
  border: 1px solid #eadff6;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(44, 8, 88, .06);
}
#formWrap table.formTable tr + tr{
  margin-top: 10px;
}

/* 角丸trのためにブロック化 */
#formWrap table.formTable{
  border-collapse: separate;
  border-spacing: 0 10px;
}
#formWrap table.formTable tr{
  overflow: hidden;
}
#formWrap table.formTable th{
  width: 34%;
  font-weight: 700;
  color: #3a2a55;
  background: linear-gradient(90deg, rgba(168,107,255,.10), rgba(255,122,195,.08));
}
#formWrap table.formTable td{
  background: #fff;
  color: #2a2a2a;
}

/* 必須などの注記 */
#formWrap td{
  font-size: 15px;
}
#formWrap td small,
#formWrap td .note{
  color:#7a6a92;
}

/* 入力UI */
#formWrap input[type="text"],
#formWrap input[type="email"],
#formWrap input[type="tel"],
#formWrap select,
#formWrap textarea{
  width: 100%;
  max-width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #eadff6;
  background: #fff;
  box-shadow: 0 2px 0 rgba(44, 8, 88, .03) inset;
  outline: none;
}
#formWrap textarea{
  min-height: 120px;
  resize: vertical;
}

/* フォーカス */
#formWrap input:focus,
#formWrap select:focus,
#formWrap textarea:focus{
  border-color: rgba(168,107,255,.75);
  box-shadow: 0 0 0 4px rgba(168,107,255,.16);
}

/* チェックボックス整形（やりすぎない） */
#formWrap input[type="checkbox"]{
  transform: translateY(1px);
  accent-color: #a86bff;
}
#formWrap td br{
  line-height: 1.9;
}

/* ボタン */
#formWrap p[align="center"]{
  margin-top: 14px;
}
#formWrap input[type="submit"],
#formWrap input[type="reset"],
#formWrap input[type="button"]{
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}
#formWrap input[type="submit"]{
  color: #fff;
  background: linear-gradient(90deg, #a86bff, #ff7ac3);
  box-shadow: 0 10px 20px rgba(168,107,255,.18);
}
#formWrap input[type="reset"]{
  margin-left: 10px;
  color: #3a2a55;
  background: #f3ecff;
  border: 1px solid #eadff6;
}

/* 注意書き */
#formWrap > p:last-of-type{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(168,107,255,.08);
  border: 1px solid #eadff6;
  color: #3a2a55;
  line-height: 1.7;
}

/* レスポンシブ */
@media (max-width: 572px){
  #formWrap{
    padding: 18px 14px 14px;
  }
  #formWrap table.formTable th,
  #formWrap table.formTable td{
    display:block;
    width:auto;
  }
  #formWrap table.formTable th{
    border-radius: 14px 14px 0 0;
  }
  #formWrap table.formTable td{
    padding-top: 10px;
  }
  #formWrap input[type="submit"],
  #formWrap input[type="reset"]{
    width: 100%;
  }
  #formWrap input[type="reset"]{
    margin: 10px 0 0;
  }
}




/* =========================
   Floating CTA (Mail / LINE) : add to bottom
   ========================= */

:root{
  --cta-purple:#d24ee8;
  --cta-purple2:#ff76c7;
  --cta-text:#2b1c44;
  --cta-line:#22c35e;
}

/* 固定位置（LP幅に合わせる） */
.floating-cta{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  z-index: 9999;
  pointer-events: none; /* 外枠はクリック無効 */
  max-width: 800px;
  margin: 0 auto;
}

/* 上の「匿名でもOK！」 */
.floating-cta__badge{
  pointer-events: auto;
  display: inline-block;
  margin: 0 0 8px 10px;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(90deg, var(--cta-purple), var(--cta-purple2));
  box-shadow: 0 10px 18px rgba(210,78,232,.22);
}

/* ボタンの外側（ふわっとガラス） */
.floating-cta__inner{
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(234,223,246,.95);
  box-shadow: 0 16px 34px rgba(44, 8, 88, .18);
}

/* ボタン共通 */
.floating-cta__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 14px;
  border-radius: 20px;
  background: #fff;
  color: var(--cta-text);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(44, 8, 88, .10);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  user-select: none;
}

/* hover（PC） */
.floating-cta__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(44, 8, 88, .14);
  opacity: .95;
}

/* アイコン丸 */
.floating-cta__icon{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  flex: 0 0 40px;
}

/* メール（ピンク紫） */
.floating-cta__btn--mail{
  border: 2px solid rgba(210,78,232,.55);
}
.floating-cta__btn--mail .floating-cta__icon{
  background: linear-gradient(90deg, var(--cta-purple), var(--cta-purple2));
}

/* LINE（グリーン） */
.floating-cta__btn--line{
  border: 2px solid rgba(34,195,94,.55);
}
.floating-cta__btn--line .floating-cta__icon{
  background: var(--cta-line);
}

/* テキスト＆矢印 */
.floating-cta__text{
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .01em;
  white-space: nowrap;
}
.floating-cta__arrow{
  font-size: 14px;
  opacity: .85;
}

/* スマホ微調整 */
@media (max-width: 420px){
  .floating-cta__btn{
    height: 52px;
    padding: 0 12px;
    gap: 8px;
  }
  .floating-cta__icon{
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .floating-cta__text{
    font-size: 14px;
  }
}

/* フローティングの分、最下部が隠れないように（必要なら） */
.main-contents{
  padding-bottom: 120px;
}
/* =========================
   FIX: floating CTA overflow on mobile
   これを一番下に追記（上書き用）
   ========================= */

/* 画面からはみ出さないように左右余白を固定化 */
.floating-cta{
  left: 0;
  right: 0;
  transform: none;
  width: auto; /* ここ重要 */
  padding: 0 10px; /* 端から少し余白 */
}

/* 共通設定：中身を縦並びに */
.floating-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  width: 100%;
  max-width: 500px; /* 2段なので少しスリムな方が綺麗です */
  margin: 0 auto;
}

/* 下段のボタンを横並びに */
.floating-cta__row {
  display: flex;
  gap: 8px;
  width: 100%;
}

/* 電話ボタンのスタイル（枠線とアイコンを #852092 に） */
.floating-cta__btn--tel {
  width: 100%;
  background-color: #fff;       /* 背景は白 */
  border: 2px solid #852092;    /* 枠線を指定の色に */
  color: #852092;               /* 文字色を指定の色に */
  height: 54px;                 /* 上段なので少し高めに */
  justify-content: center;
}

/* アイコンの色を強制的に指定色に */
.floating-cta__btn--tel .floating-cta__icon {
  color: #852092;
}

/* 下段ボタン（LINE・メール）の基本調整 */
.floating-cta__row .floating-cta__btn {
  flex: 1;
  height: 48px;
  padding: 0 8px;
  /* LINEやメールは既存の背景色（緑や青）がある想定 */
}

/* 下段ボタンのテキストサイズ調整 */
.floating-cta__row .floating-cta__text {
  font-size: 13px;
  white-space: nowrap;
  text-align: center;
}

/* スマホ用微調整 */
@media (max-width: 480px) {
  .floating-cta {
    padding: 0 8px;
  }
  .floating-cta__inner {
    gap: 6px;
    padding: 8px;
  }
  .floating-cta__btn--tel {
    height: 50px;
    font-size: 15px;
  }
  .floating-cta__row .floating-cta__text {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .floating-cta__row {
    gap: 4px;
  }
  .floating-cta__btn--tel {
    height: 46px;
  }
}