/*
Theme Name: My LP Theme
Author: Your Name
Description: LP用テーマ
Version: 1.0
*/
/* ヘッダー全体 */
body {
  padding-top: 80px;
  background: linear-gradient(135deg, #fff1e6, #ffe0cc);
}


/* ヘッダー */
.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #ffe6d6;
  transition: all 0.3s ease;
}

/* ロゴ */
.logo img {
  height: 70px;
  width: 250px;
  object-fit: cover;
}

/* ホバー */
.cta-btn:hover {
  background: #e05500;
}

/* 中身 */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CTAエリア */
.cta-area {
  gap: 10px;
}


/* 電話ボタン */
.tel-btn {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

/* 無料相談ボタン */
.cta-btn {
  background: #ff6600;
  color: #fff;
}

/* ファーストビュー */
.fv {
  width: 100%;
  line-height: 0;
  /* 余白消す */
  margin: 0;
  padding: 0;
}

/* 画像 */
.fv img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTAセクション */
.cta-section {
  background: #fff7f0;
  padding: 40px 20px;
  text-align: center;
}

/* 中央寄せ */
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 初期状態（右に隠す） */
.slide-in-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 表示状態 */
.slide-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* テキスト */
.cta-text {
  font-size: 18px;
  margin-bottom: 20px;
  transition-delay: 0.1s;
}

/* ボタン共通 */
.cta-btn,
.tel-btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition-delay: 0.2s;
}

.cta-section .cta-inner .tel-btn,
.cta-section .cta-inner .cta-btn {
  width: 300px;
}

.problem-title {
  text-align: center;
}

/* 雲 */
.cloud {
  position: relative;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 50px;
  padding: 20px 25px;
  width: 300px;
  text-align: center;
  font-size: 16px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.problem-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cloud {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 1s ease;
}

.cloud.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.cloud:nth-child(1) {
  transform: translateY(5px);
  transition-delay: 0.1s;
}

.cloud:nth-child(2) {
  transform: translateY(30px);
  transition-delay: 0.2s;
}

.cloud:nth-child(3) {
  transform: translateY(0px);
  transition-delay: 0.3s;
}

.cloud:nth-child(4) {
  transform: translateY(40px);
  transition-delay: 0.4s;
}

.cloud:nth-child(5) {
  transform: translateY(50px);
  transition-delay: 0.5s;
}

.arrow {
  font-size: 50px;
  margin: 50px 0;
  color: #ff6600;
  text-align: center;
}

/* セクション */
.solution {
  padding: 80px 20px;
  background: #f9fbff;
  text-align: center;
}

/* 中央 */
.solution-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* タイトル */
.solution-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

/* テキスト */
.solution-text {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ポイント */
.solution-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* 各ポイント */
.point {
  background: #fff;
  padding: 15px 20px;
  border-radius: 30px;
  border: 1px solid #eee;
  font-size: 16px;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* 2回目CTA */
.cta-second {
  background: linear-gradient(135deg, #fff3e8, #ffe0cc);
}

/* 少し強調 */
.cta-second .cta-text {
  font-size: 20px;
  font-weight: bold;
}

/* セクション */
.features {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

/* 中央 */
.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* タイトル */
.features-title {
  font-size: 28px;
  margin-bottom: 50px;
}

/* カード一覧 */
.features-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* カード */
.feature {
  background: #f9fbff;
  padding: 30px 20px;
  border-radius: 10px;
  width: 280px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 1s ease;
}

.feature.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 見出し */
.feature h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* テキスト */
.feature p {
  font-size: 15px;
  line-height: 1.6;
}

/* セクション */
.strengths {
  padding: 80px 20px;
  background: #f9fbff;
  text-align: center;
}

/* 中央 */
.strengths-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* タイトル */
.strengths-title {
  font-size: 28px;
  margin-bottom: 50px;
}

/* 一覧 */
.strengths-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* カード */
.strength {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  width: 280px;
  text-align: left;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 1s ease;
}

.strength.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 番号 */
.strength-num {
  font-size: 14px;
  color: #ff6600;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 見出し */
.strength h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* テキスト */
.strength p {
  font-size: 15px;
  line-height: 1.6;
}

/* 初期状態（ 下に隠す） */
.slide-in-top {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 1s ease;
}

/* 表示状態 */
.slide-in-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 最終CTA */
.cta-final {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ff6600, #ff8c42);
  text-align: center;
  color: #fff;
}

/* 中央 */
.cta-final-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* タイトル */
.cta-final-title {
  font-size: 30px;
  margin-bottom: 20px;
}

/* テキスト */
.cta-final-text {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ボタン */
.cta-final .cta-btn {
  display: inline-block;
  background: #fff;
  color: #ff6600;
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px;
  width: 300px;
}

/* 電話 */
.cta-final .tel-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 18px 40px;
  border: 1px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  margin: 10px;
  width: 300px;
}

/* セクション */
.voice {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

/* 中央 */
.voice-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* タイトル */
.voice-title {
  font-size: 28px;
  margin-bottom: 50px;
}

/* 一覧 */
.voice-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* カード */
.voice-card {
  background: #f9fbff;
  padding: 30px 20px;
  border-radius: 10px;
  width: 280px;
  text-align: left;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 1s ease;
}

.voice-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 吹き出し風 */
.voice-koron {
  font-size: 40px;
  padding: 0;
  margin: 0;
  color: #ff6600;
}

.feature:nth-child(1),
.strength:nth-child(1),
.voice-card:nth-child(1) {
  transition-delay: 0.1s;
}

.feature:nth-child(2),
.strength:nth-child(2),
.voice-card:nth-child(2) {
  transition-delay: 0.2s;
}

.feature:nth-child(3),
.strength:nth-child(3),
.voice-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* テキスト */
.voice-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ユーザー */
.voice-user {
  font-size: 13px;
  color: #666;
}

/* セクション */
.ops-table {
  padding: 80px 20px;
  background: #fff;
}

/* 中央 */
.ops-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* タイトル */
.ops-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* テーブル */
.ops {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

/* ヘッダー */
.ops th {
  background: #1f3f66;
  color: #fff;
  padding: 15px;
  text-align: center;
}

/* セル */
.ops td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

/* カテゴリー列 */
.category {
  background: #f0f3f7;
  text-align: center;
  font-weight: bold;
  width: 20%;
}

/* 交互に背景 */
.ops tbody tr:nth-child(even) {
  background: #fafafa;
}

.ops-lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}

/* セクション */
.faq {
  padding: 80px 20px;
  background: #f9fbff;
}

/* 中央 */
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* タイトル */
.faq-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* 各項目 */
.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

/* 質問 */
.faq-question {
  background: #fff;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #ddd;
}

/* 回答 */
.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
}

/* 右下固定 */
.fixed-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: fixed;
  z-index: 50;
  transition: bottom 0.3s ease;
  right: 20px;
  bottom: 20px;
  left: auto;           /* ←これ重要（中央防止） */
  transform: none;      
  animation: fadeInUp 0.8s ease;
}
.sns-section {
padding: 40px 20px;
}
.sns-top {
  display: grid;
  gap: 20px;

}
  .sns-top {
    grid-template-columns: 1fr 1fr;
  }

.sns-box,
.sns-bottom {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.1);
}

.sns-bottom {
  margin: 20px 0;
}



.more-btn {
  display: block;
  text-align: center;
  margin-top: 15px;
  padding: 10px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

/* 押したくなる動き */
.more-btn:hover {
  opacity: 0.8;
}

.sns-box h3,
.sns-bottom h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ddd;
  position: relative;
}

.sns-box h3::after,
.sns-bottom h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #000;
}
.sns-box:nth-child(1) h3 {
  color: #E1306C; /* Instagram */
}

.sns-box:nth-child(2) h3 {
  color: #FF0000; /* YouTube */
}

.sns-bottom h3 {
  color: #41C9B4; /* note */
}

.youtube-shorts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.shorts-item {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.shorts-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shorts-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: white;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
  pointer-events: none;
}


.shorts-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.note-grid {
  display: grid;
  gap: 15px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* QRボックス */
.qr-box {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* QR画像 */
.qr-box img {
  width: 100px;
  height: auto;
  display: block;
  margin-bottom: 5px;
}

/* CTAボタン */
.fixed-btn {
  background: #ff6600;
  color: #fff;

  padding: 14px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* ホバー */
.fixed-btn:hover {
  background: #e05500;
}

/* フッター全体 */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  z-index: 50;
}

/* ロゴ */
.footer-logo {
  width: 180px;
  /* サイズ調整 */
  height: 50px;
  object-fit: cover;
  filter: brightness(1.1);
}

/* 横並び */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* 左 */


.footer-left p {
  font-size: 20px;
  padding: 0 15px;
}

/* 右 */
.footer-right a,
.footer-right p {
  margin-bottom: 10px;
  line-height: 1.6;
  text-decoration: none;
  color: #ffffff;
}

/* SNS */
.sns {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

/* 丸アイコン風 */
.sns a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
}

/* ホバー */
.sns a:hover {
  background: #ff6600;
  color: #fff;
}


.note-card img {
  width: 100%;/* ★ここ重要 */
  object-fit: cover;
  border-radius: 10px;
}  


@media (max-width: 768px) {
  .cta-area {
    justify-content: flex-end;
    align-items: center;
    /* ←これ重要 */
    gap: 15px;
    padding-right: 50px;
  }

  .cta-area .cta-btn,
  .cta-area .tel-btn {
    text-align: center;
    display: block;
  }

  .header-inner {
    padding: 10px 15px;
  }

  .logo img {
    height: 60px;
    width: 200px;
  }

  .cta-text {
    font-size: 16px;
  }

  .problem-cards {
    flex-direction: column;
    align-items: center;
  }

  .cloud {
    width: 80%;
    transform: none !important;
  }

  .solution-title {
    font-size: 22px;
  }

  .solution-text {
    font-size: 16px;
  }

  .solution-points {
    flex-direction: column;
    align-items: center;
  }

  .point {
    width: 90%;
    text-align: center;
  }

  .features-title {
    font-size: 22px;
  }

  .features-list {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 90%;
  }

  .strengths-title {
    font-size: 22px;
  }

  .strengths-list {
    flex-direction: column;
    align-items: center;
  }

  .strength {
    width: 90%;
  }

  .cta-final-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-final-title {
    font-size: 24px;
  }

  .cta-final-text {
    font-size: 16px;
  }

  .cta-final .cta-btn,
  .cta-final .tel-btn {
    display: block;
    width: 100%;
  }

  .voice-title {
    font-size: 22px;
  }

  .voice-list {
    flex-direction: column;
    align-items: center;
  }

  .voice-card {
    width: 90%;
  }

  .ops {
    font-size: 13px;
  }

  .ops th,
  .ops td {
    padding: 10px;
  }

  .cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* ボタン共通 */
  .cta-btn,
  .tel-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    display: block;
    padding: 8px 15px;
    font-size: 14px;
  }

  /* 間隔 */
  .cta-btn {
    margin-bottom: 15px;
  }

  /* テキスト */
  .cta-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .fixed-cta {
    right: 10px;
    bottom: 10px;
  }

  .qr-box img {
    width: 80px;
  }

  .fixed-btn {
    font-size: 14px;
    padding: 12px 14px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .sns {
    justify-content: center;
  }

  .footer-logo {
    width: 160px;
    height: 50px;
    margin: 0 auto 15px;
  }
 .sns-section {
    padding: 30px 15px;
  }

  .sns-section h2 {
    font-size: 20px;
  }

  .sns-box h3,
  .sns-bottom h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  /* 上の2つ（インスタ・YouTube）縦並び */
  .sns-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* リール・Shortsは2列キープ */
  #insta-feed,
  #youtube-shorts {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  #insta-feed img,
  #youtube-shorts iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 8px;
  }

  /* noteカード */
  .note-card {
    gap: 10px;
    align-items: flex-start;
  }

  .note-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
  }

  .note-card a {
    font-size: 14px;
    line-height: 1.4;
  }
  .more-btn {
    font-size: 13px;
    padding: 12px;
  }
.sns-box h3,
  .sns-bottom h3 {
    font-size: 15px;
  }
}

