/* ===== 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: #FFCF0B;
}

/* 各セクションは 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;
}

.fv {
  z-index: 1;
}

.fv_shiboukou {
  top: 25%;
  left: 5%;
  width: 20%;
}

.fv_bukatsu {
  top: 25%;
  right: 5%;
  width: 20%;
}
.fv_mbti {
  top: 53%;
  right: 3%;
  width: 20%;
}
.fv_syumi {
  top: 53%;
  left: 3%;
  width: 20%;
}
.fv_copy {
  bottom: 19%;
  left: 15%;
  right: 15%;
}

.fv_logo {
  bottom: 10%;
  right: 5%;
  left: 5%;
}
.cta {
  z-index: 100;
  z-index: 1;
  display: flex;
  gap: 2%;
  margin: 0 5%;
}

.structure1 {
  top: 2.5%;
  width: 20%;
  left: 50%;
  transform: translateX(-50%);
}

.structure2 {
  top: 30%;
  left: 3%;
  width: 45%;
}
.structure3 {
  top: 34%;
  right: 3%;
  width: 45%;
}

.reason_ttl {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
}
.chance_ttl {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 23%;
}

.chance_text {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}

.cta_text {
  width: 80%;
  margin: 0 auto;
}

.cta_copy {
  width: 90%;
  margin: 20px auto;
}

.support {
  margin-top: 30px;
}
.support_ttl {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
}

.support_img1 {
  top: 24%;
  left: 4%;
  width: 50%;
}

.support_img2 {
  top: 42%;
  left: 4%;
  width: 40%;
}
.support_img3 {
  top: 61%;
  left: 4%;
  width: 38%;
}

.support_img4 {
  top: 80%;
  left: 2%;
  width: 35%;
}

.howto_ttl {
  top: 1.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
}

.design {
  padding: 20px 3%;
}
.design_ttl {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
}

.carousel {
  width: 100%;
  padding: 40px 0; /* 上下余白 */
  position: relative;
}

.swiper-pagination {
  display: noen;
}


.swiper-slide {
  width: 50%; /* ← これが「左右0.3枚見切れ」の正体 */
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.voice_ttl {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
}
.message {
  margin-top: 30px;
}

.message_ttl {
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
}
.hl-block {
  color: #000;
  line-height: 1.8; /* ← 指定どおり */
  max-width: 680px;
  font-weight: 600;
  margin: 20px auto;
  padding: 0 20px;
  font-size: 14px;
}

.hl-line{
  position: relative;
  display: inline-block;
  padding: 0.08em 0.08em;
  border-radius: 0.2em;
  z-index: 0;
}

.hl-line::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom: 0.12em;
  height: 0.62em;
  background: rgba(236, 234, 210, 0.38); /* 薄い黄色 */
  border-radius: 0.2em;

  transform: scaleX(var(--hl, 0));
  transform-origin: left center;

  z-index: -1;
  will-change: transform;
}

/* 改行（そのままでOK） */
.hl-line + .hl-line{
  display: inline-block;
  margin-top: 0.25em;
}


/* 段落ブロック */
.hl-paragraph {
  margin-bottom: 25px; /* ← 段落間 */
}

.name {
  text-align: right;
  font-weight: 500;
}

.faq {
  margin-bottom: 40px;
}
.faq_ttl {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
}

/* =========================
   Floating Store (App/Google) Footer
   ========================= */

:root{
  --store-max: 750px;
}

/* 下固定：LP幅に合わせて中央配置 */
.floating-store{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none; /* 外枠はクリック不可 */
  padding: 10px 7px 0px;
}

/* 中身だけクリック可 */
.floating-store__inner{
  pointer-events: auto;
  width: 100%;
  max-width: var(--store-max);
  margin: 0 auto;

  background: rgba(255, 207, 11, 0.92); /* LPの黄色に寄せつつ少し透過 */
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);

  padding: 10px 12px 12px;
}

/* タイトル */
.floating-store__ttl{
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #111;
  margin-bottom: 8px;
}

/* ボタン並び */
.floating-store__btns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* 画像ボタン */
.floating-store__btn{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
  transform: translateZ(0);
  transition: transform .12s ease, opacity .12s ease;
}

.floating-store__btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}

.floating-store__btn img{
  display: block;
  width: 100%;
  height: auto;
}

/* これがないと最下部が隠れるので、LP本体に余白を足す */
.main-contents{
  padding-bottom: 140px; /
}

/* ===== 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;
}


