 @charset "utf-8";

  /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: #333;
      background: #fff;
      line-height: 1.7;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
.pctb{
	display:block;
}
.tbsp{
	display:none;
}
.sp{
	display:none;
}
@media screen and (max-width:768px){
	.tbsp{
		display:block;
	}
}
@media screen and (max-width:480px){
	.pctb{
		display:none;
	}
	.sp{
		display:block;
	}
}
    /* ===== COLOR & ASSETS SETTINGS ===== */
    :root {
      --pink-main: #e8527a;
      --pink-light: #f9d0dc;
      --pink-pale: #fff0f4;
      --pink-mid: #f4849e;
      --red-accent: #c0392b;
      --white: #ffffff;
      --gray-light: #f8f8f8;
      --gray-text: #666;
      --section-pad: 80px 20px;
    }
@media screen and (max-width:480px){
    :root {
      --section-pad: 30px 20px;
	}
}

    /* ===== HEADER / STICKY NAV ===== */
    header {
    }
    /* ===== HERO (強化版) ===== */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
		justify-content: flex-end;
      text-align: center;
      padding: 50px 2% 60px;
      color: #333;
      overflow: hidden;
      background-color: #fff;
    }
    /* 背景画像レイヤー */
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('images/top-001.jpg');
      background-size: cover;
      background-position: left 10% top;
      opacity: 0.4; /* 画像を見やすくするために透過度を調整 */
      z-index: 1;
    }
.hero-content {
	position: relative;
    z-index: 2;
    max-width: 800px;
    width: 68%;
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.5);
}
 .hero-top-text {
      font-size: clamp(18px, 1.833vw, 22px);
      font-weight: 700;
      margin-bottom: 10px;
      display: inline-block;
      position: relative;
    }
    .hero-top-text::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--pink-main);
      border-radius: 2px;
      opacity: 0.6;
    }
    .hero h1 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(24px, 4.66vw, 56px);
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 20px;
      color: #222;
      text-shadow: 0 2px 10px rgba(255,255,255,0.8);
    }
    .hero h1 em {
      font-style: normal;
      color: var(--pink-main);
    }
    .hero-sub-wrap {
      margin-bottom: 30px;
    }
    .hero-sub {
      font-size: clamp(16px, 2vw, 24px);
      font-weight: 700;
      color: #444;
      margin-bottom: 5px;
    }
    .hero-record {
      font-size: 1.1rem;
      color: var(--pink-main);
      font-weight: 900;
      margin-bottom: 5px;
    }
    .hero-agent-name {
      font-size: 1rem;
      color: #555;
      font-weight: 700;
    }
    .hero-badges-vertical {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      margin-bottom: 40px;
    }
    .badge-v-item {
      background: #fff;
      border: 2px solid var(--pink-light);
      border-radius: 50px;
      padding: 8px 30px;
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--pink-main);
      box-shadow: 0 4px 12px rgba(232,82,122,0.15);
      min-width: 240px;
    }
    .satisfaction-seal {
      position: absolute;
      bottom: 10%;
      right: 5%;
      width: 140px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
    }

    .cta-btn-large {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #06c755 0%, #04a843 100%);
      color: #fff;
      font-weight: 900;
      font-size: clamp(16px, 1.583vw, 19px);
      padding: 20px 50px;
      border-radius: 60px;
      box-shadow: 0 8px 30px rgba(6,199,85,0.5);
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.04em;
    }
    .cta-btn-large:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(6,199,85,0.6); }

@media screen and (max-width:768px){
	.hero {
		height: 80vh;
	}
	.satisfaction-seal {
		bottom: 10%;
		right: auto;
		left: 5%;
	}
}
@media screen and (max-width:480px){
	.hero {
		height: 70vh;
	}
	.hero-sub-wrap {
    margin-bottom: 15px;
	}
    .hero-badges-vertical {
      gap: 6px;
		margin-bottom:15px;
	}
	.cta-btn-large {
		padding: 3% 8%;
	}
	.satisfaction-seal {
        bottom: 1%;
        right: auto;
        left: 1%;
		width: 120px;
		height: 120px;
    }
}


    /* ===== SECTION COMMON ===== */
    section { padding: var(--section-pad); }
    .section-inner { max-width: 800px; margin: 0 auto; }
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-title h2 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(1.4rem, 4vw, 2rem);
      font-weight: 700;
      color: #2c2c2c;
      line-height: 1.45;
    }
    .section-title h2 em {
      font-style: normal;
      color: var(--pink-main);
    }

    /* ===== WORRIES (共感セクション) ===== */
    .worries { background: var(--gray-light); }
    .worries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }
    .worry-card {
      background: #fff;
      border-radius: 16px;
      padding: 20px 18px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      border-left: 4px solid var(--pink-main);
    }
    .worry-icon {
      font-size: 1.2rem;
      color: var(--pink-main);
      flex-shrink: 0;
    }
    .worry-text {
      font-size: 0.92rem;
      font-weight: 700;
      color: #444;
      line-height: 1.5;
    }

    /* ===== SOLUTION (解決提示) ===== */
    .solution { 
		background: linear-gradient(135deg, #fff0f4 0%, #fff9fb 100%); 
	}
	.solution .solution-img {
		text-align:center; margin-top:40px;
	}
	.solution .solution-img img{
		width:100%;border-radius:20px; max-width:800px; margin:0 auto;
	}

    .solution-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
    }
    .solution-item {
      background: #fff;
      border-radius: 16px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 4px 16px rgba(232,82,122,0.1);
    }
    .solution-check {
      color: var(--pink-main);
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .solution-item-text { font-size: 0.95rem; font-weight: 700; color: #333; }



/* ===== RESULTS (実績) ブラッシュアップ版 ===== */

.results {
  background: #fff;
  padding: 80px 0;
}

/* 満足度100%部分のデザイン */
.results-main {
  text-align: center;
  margin-bottom: 60px;
}

.results-title-main {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
        color: #2c2c2c;
  margin-bottom: 10px;
}

.results-subtitle {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 20px;
}

.results-satisfaction {
  display: flex;
  justify-content: center;
  align-items: center;
}

.satisfaction-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 数字の装飾（キラキラ感） */
.satisfaction-badge::before {
  content: '★';
  position: absolute;
  top: -10px;
  right: -20px;
  color: #FFD700;
  font-size: 1.5rem;
}

.satisfaction-num {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(4.5rem, 12vw, 6.5rem); /* 少し大きく */
  font-weight: 700;
  color: var(--pink-main);
  line-height: 0.8;
  letter-spacing: -0.05em;
}

.satisfaction-num span {
  font-size: 0.4em;
  margin-left: 2px;
}

/* 成功例カードセクション */
.cases-headline {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.cases-headline::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: var(--pink-pale);
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.cases-subtext {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 30px;
}

/* 親要素を flex に変更 */
.results-cases {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 24px;
  justify-content: center; /* 中央寄せ */
}

/* 子要素（カード）の幅指定 */
.case-card {
	width: 29%;
    background: #fff;
    border-radius: 20px;
    padding: 30px 2%;
	background: #fff;
  border-radius: 20px;
  padding: 30px 10px;
  text-align: center;
  border: 1px solid var(--pink-light);
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.1);
  box-sizing: border-box; /* パディングを含めた幅計算 */
}

@media (max-width: 480px) {
  .case-card {
    width:94%;
	margin:0 auto;
  }
}

.case-card:hover {
  transform: translateY(-5px);
}

/* カテゴリタグ */
.case-tag {
  display: inline-block;
  background: var(--pink-main);
  color: #fff;
  font-weight: bold;
  padding: 2px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.case-name {
  color: var(--gray-text);
  margin-bottom: 15px;
}

/* Before/After の見せ方 */
.case-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.before {
  font-size: 0.85rem;
  color: #bbb;
  text-decoration: line-through;
}
.arrow {
  content: "↓";
  color: var(--pink-light);
  font-size: 1.2rem;
  margin: -5px 0;
}
.after {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-main);
  position: relative;
}


/* ===== VOICES (決定者インタビュー) ===== */
.voices { background: var(--gray-light); }
 .voices-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .voice-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px 20px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      text-align: center;
    }
    .voice-card h4{
		color: var(--pink-main);
	}


    /* ===== STRENGTHS (ペアケアの強み) ===== */
    .strengths { background: linear-gradient(135deg, #fff0f4 0%, #fff9fb 100%); }
    .strengths-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
    .strength-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 6px 24px rgba(232,82,122,0.12);
    }
    .strength-num {
      width: 40px;
      height: 40px;
      background: var(--pink-main);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      font-weight: 900;
      margin: 0 auto 16px;
    }
    .strength-title {
      font-size: 1.05rem;
      font-weight: 900;
      color: var(--pink-main);
      margin-bottom: 10px;
    }
    .strength-sub {
      font-size: 0.78rem;
      color: var(--gray-text);
      font-weight: 700;
      margin-bottom: 12px;
    }
    .strength-desc {
      font-size: 0.88rem;
      color: #555;
      line-height: 1.7;
      text-align: left;
    }

    /* ===== LINE BENEFITS (LINE登録特典) ===== */
    .line-benefits { background: #fff; }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .benefit-card {
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      border: 2px solid var(--pink-light);
      background: var(--pink-pale);
    }
    .benefit-num {
      display: inline-block;
      background: var(--pink-main);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 12px;
      border-radius: 50px;
      margin-bottom: 12px;
    }
    .benefit-title {
      font-size: 1rem;
      font-weight: 900;
      color: #333;
      margin-bottom: 8px;
    }
    .benefit-desc { font-size: 0.85rem; color: #666; line-height: 1.6; }

    /* ===== COUNSELING VOICES (カウンセリングの声) ===== */
    .counseling-voices { background: linear-gradient(135deg, #fff0f4 0%, #fff9fb 100%); }
    .cv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }
    .cv-card {
	  position:relative;
      background: #fff;
      border-radius: 16px;
      padding: 24px 20px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(232,82,122,0.1);
    }
    .cv-text { 
		font-size: 0.9rem; 
		color: #777; 
		font-weight: 600; 
		line-height: 1.5; 
		text-align:left;
		padding-bottom:20px;
	}
    .cv-name { 
		position:absolute;
		bottom:15px;
		right:0;
		font-size: 0.9rem; 
		color: #777; 
		font-weight: 600; 
		line-height: 1.5; 
		text-align:left;
	}
.counseling-voices .flex-com {
	display:flex;
	flex-wrap:wrap;
	gap:10%;
	max-width:500px;
	margin:30px auto 0;
}
.counseling-voices .flex-50 {
	width:45%;	
}
.counseling-voices .flex-50 video{
	width:100%;
	margin-bottom:20px;
}
@media screen and (max-width:480px){
	.counseling-voices .flex-50 {
		width:100%;	
	}
}

    /* ===== ABOUT (代表メッセージ) ===== */
    .about { background: #fff; }
    .about-inner {
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
    }
    .about-img {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--pink-light);
      flex-shrink: 0;
    }
    .about-img img { width: 100%; height: 100%; object-fit: cover; }
    .about-text { max-width: 560px; }
    .about-name {
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--pink-main);
      margin-bottom: 16px;
    }
    .about-career {
      font-size: 0.88rem;
      color: #555;
      line-height: 1.8;
    }

    /* ===== FAQ (よくある質問) ===== */
    .faq { background: var(--gray-light); }
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .faq-q { font-weight: 700; font-size: 0.95rem; color: #333; margin-bottom: 8px; }
    .faq-a { 
		font-size: 0.9rem; 
		color: #555; line-height: 1.7; 
		padding-left: 30px; 
		border-left: 3px solid var(--pink-light); 
		text-indent:-1.5em;
		margin-left:2em;
		text-align:left;
	}

    /* ===== FINAL CTA ===== */
    .final-cta {
      background: linear-gradient(135deg, var(--pink-main) 0%, #c0392b 100%);
      padding: 80px 24px;
      text-align: center;
      color: #fff;
    }
    .final-cta h2 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 16px;
    }
    .final-cta p {
      font-size: 0.95rem;
      opacity: 0.9;
      margin-bottom: 36px;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #2c2c2c;
      color: #aaa;
      text-align: center;
      padding: 32px 24px;
      font-size: 0.8rem;
    }

    /* ===== ANIMATIONS ===== */
    .fade-in {
      opacity: 0;
      transition: opacity 0.6s ease, transform 0.6s ease;
      transform: translateY(100px);
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }



    /* ===== FLOATING CTA ===== */
    .float-cta {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 200;
      background: linear-gradient(135deg, #06c755 0%, #04a843 100%);
      color: #fff;
      font-weight: 900;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 60px;
      box-shadow: 0 6px 24px rgba(6,199,85,0.5);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    @media (min-width: 640px) {
      .about-inner { flex-direction: row; align-items: flex-start; }
    }







