* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    letter-spacing: 0.08em;
  }
  

  body {
    font-family: 'Noto Sans JP', sans-serif;
    /* font-family: 'Zen Kaku Gothic New', sans-serif; */
    background-color: #fff;   /* 任意 */
    color: #333;              /* 任意 */
    line-height: 1.6;

    letter-spacing: 0.08em;
    
  }

  

  /* a {
    color: inherit;
    text-decoration: none;
  } */



.contact-box :hover{
  opacity: 0.9;
}

  /* --------------------------- LINE - CTA --------------------------- */



  .fixed-banner {
    position: fixed;
    right: -10px;     /* 右端からの距離 */
    bottom: 160px;   /* 下端からの距離（調整OK） */
    z-index: 100;   /* 他の要素より前面に出す */
    display: block;
  }
  
  .fixed-banner img {
    width: 120px; /* サイズは調整OK */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
  }
  
  .fixed-banner:hover img {
    opacity: 0.9;
    transform: translateX(-6px); /* ← 右に6pxスライド */
  }
  



  /* --------------------------- ヘッダー --------------------------- */
/* ヘッダー全体 */
.pc_site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #f7f6f4;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* ← スクロール時に影が出て少し浮く */
  }
  
  
  /* 中央揃え用コンテナ */
  .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center; /* 追加で中央寄せ */
}
  
  /* 1段目：ロゴ + SNS + TEL + CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }
  
  /* 2段目：メニュー */
  .nav-menu {
    display: inline-flex;
    align-items: center;
    gap: 54px;
    height: 40px;
  }

  .nav-menu a {
    text-decoration: none;
    color: #575757;
    font-weight: 600;
    font-size: 14px;
    padding: 0 8px;
    position: relative;
    transition: color 0.3s ease; /* ✅ opacityじゃなく color にする */
  }

  .nav-menu a:hover {
    color: #F4792B;
  }
  

  
  /* 縦区切り線を保つ場合 */
  .nav-menu a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background-color: #ccc;
    
  }

  .external-icon {
    height: 14px;           /* アイコンサイズ調整 */
    width: auto;
    vertical-align: middle; /* テキスト中央に揃える */
    margin-bottom: 4px;
  }

  
  
  /* 左セクション */
  .left-section {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  /* SNSアイコン */
  .sns-icons{
    display: flex;
    gap: 8px; /* ← ここでアイコンの間隔を調整 */
  }
  .sns-icons img {
    height: 25px;
    transition: opacity 0.2s ease; /* ← フェード効果追加 */
  }
  
  .sns-icons img :hover{
    opacity: 0.6; /* ← hover時に薄くする */
  }

/* すべてのSNSアイコン画像にフェード */
.sns_logo {
    transition: opacity 0.3s ease;
  }
  
  .sns_logo:hover {
    opacity: 0.6;
  }

  
  /* ロゴ */
  .header_logo {
    height: 40px;
  }
  
  /* 右セクション（TEL＋ボタン） */
  .right-section {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .tel-box {
    /* display: flex;
    flex-direction: column; */
    line-height: 1.2;
  }
  
  .tel-icon {
    height: 32px;
  }
  
  .tel-number {
    color: #F4792B;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 0.00;
  }
  
  .tel-hours {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.00;
  }
  
  .cta-button img {
    margin-top: 12px;
    width: 210px;
    transition: opacity 0.3s ease; /* フェード用 */
  }

  .cta-button:hover img {
    opacity: 0.8; /* ホバー時に少し薄く */
  }

  .header_logo{
    margin-top: 12px;
    /* width: 210px; */
    transition: opacity 0.2s ease; /* フェード用 */
  }

  .header_logo:hover{
    opacity: 0.6; /* ホバー時に少し薄く */
  }

  


  /* --------------------------- FV --------------------------- */



  .fv {
    position: relative;
    width: 100%;
    height: 500px; /* ← 固定高さに設定 */
    overflow: hidden;
  }
  
  .fv-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ← 比率を保ったまま全体にフィット */
    display: block;
  }
  
  
  .fv-overlay {
    position: absolute;
    top: 55%; /* ← ここで下に寄せる（50%〜60%の間で調整OK） */
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    /* align-items: flex-end;  */
    gap: 32px; /* ← 間の距離。もっと狭くしたいなら 32px や 24px */
    pointer-events: none;  /* 必要に応じて */
  }
  
  .fv-text {
    max-width: 582px;
    height: auto;
    position: relative;
    right: 168px;
    bottom: 24px;
  }
  
  .fv-person {
    position: absolute;
    /* bottom: 0; */
    right: -155px; /* 右端からの距離は自由に調整可能 */
    top: -12px;
    max-height: 480px;
    height: auto;
    backface-visibility: hidden; /* ← アンチエイリアスの線を回避する手段 */
  }
  
  


  /* --------------------------- CVセクション --------------------------- */



  .cv_section {
    background: linear-gradient(to right, #FF9552, #F4792B);
    
    padding: 32px 20px;
    text-align: center;
    color: #fff;
  }
  
  .cv-inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* gap: 20px; */
  }
  
  .cv-title {
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  
  .cv-phone {
    max-width: 360px;
    width: 380px;
    color: #f4792b;
    /* padding: 16px 32px; */
    border-radius: 8px;
    text-align: center;
    flex: 1;
  }
  
  .cv-label {
    width: 100%;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: -6px;
    color: #f4792b;
  }
  
  .cv-number {
    font-size: 44px;
    letter-spacing: 0.0;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .cv-number img {
    margin-top: 6px;
    height: 36px;
  }
  
  .cv-time {
    font-size: 12px;
    margin-top: -12px;
    color: #fff;
    letter-spacing: 0.2;
  }
  
  .cv-line img {
    height: 70px;
    flex: 1;
    transition: transform 0.3s ease;
  }
  
  .cv-line:hover img {
    transform: translateX(4px);
  }




  /* ===== CV：LINEボタン ===== */
.cv-line-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 8px 30px 18px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.9);
  /* box-shadow: 0 6px 20px rgba(0,0,0,.12) inset; */
  overflow: hidden;
  isolation: isolate; /* ::before をボタン内に閉じ込める */
  transition: transform .06s ease;
}
.cv-line-btn:active{ transform: translateY(1px); }

/* 左から覆う濃い色（ホバー時スライド） */
.cv-line-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #179a4b 0%, #179a4b 100%);
  transform: translateX(-100%);            /* 初期は全て左に隠す */
  transition: transform .45s ease;
  z-index: -1; /* 本文より下 */
}
.cv-line-btn:hover::before{ transform: translateX(0); }

/* 右端の ">" 矢印（コードで描画） */
.cv-line-arrow{
  position: absolute;
  right: 18px;
  width: 22px; height: 22px;
}
.cv-line-arrow::before,
.cv-line-arrow::after{
  content:"";
  position:absolute;
  left: 6px; top: 3px;
  width: 10px; height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

/* ロゴ（丸白の吹き出しに画像を載せる想定） */
.cv-line-btn .line-logo{
  flex: 0 0 auto;
  width: 64px; height: 64px;
  /* border-radius: 50%; */
  /* background: #fff; */
  display: grid; place-items: center;
  /* box-shadow: 0 2px 6px rgba(0,0,0,.15); */
}
.cv-line-btn .line-logo img{
  margin-top: 4px;
  width: 50px; height: auto; display:block;
}

/* 上の白いIDバッジ（角丸ピル） */
.cv-line-btn .line-badge{
  position: absolute;
  left: 96px;             /* ロゴ右に配置 */
  top: 12px;
  background: #fff;
  color: #16a34a;
  font-weight: 600;
  padding: 0px 48px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: .02em;
  white-space: nowrap;
}

/* 矢印 */
.cv-line-btn .line-arrow {
  margin-top: 28px;
  margin-left: 6px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* メインテキスト */
.cv-line-btn .line-text{
  margin-top: 28px;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: .04em;
  line-height: 1;
  /* text-shadow: 0 1px 0 rgba(0,0,0,.15); */
}

/* レイアウト調整（cv-innerと並べた時の幅感） */
/* .cv-line-btn{ flex: 1 1 420px; } */

/* --- レスポンシブ --- */
@media (max-width: 1024px){
  /* .cv-line-btn{
    padding: 16px 60px 16px 18px;
  } */
  /* .cv-line-btn .line-text{ font-size: 28px; }
  .cv-line-btn .line-badge{
    left: 90px; top: 8px; font-size: 14px; padding: 5px 12px;
  } */
}
@media (max-width: 768px){
  .cv-line-btn{
    /* width: 100%; */
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 56px 14px 14px;
    border-width: 2px;
    border-radius: 12px;
  }
  .cv-line-btn .line-logo{ width: 54px; height: 54px; }
  .cv-line-btn .line-logo img{ width: 100%;margin-top: 0px; }
  .cv-line-btn .line-text{ font-size: 22px; }
  .cv-line-btn .line-badge{

    position: absolute;
    left: 80px;             /* ロゴ右に配置 */
    top: 12px;
    background: #fff;
    color: #16a34a;
    font-weight: 600;
    padding: 0px 24px;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: .02em;
    white-space: nowrap;


          /* スマホは上に固定せず通常フロー */
    order: 2;
    margin-left: 0;
    transform: translateY(-2px);
    
  }
  .cv-line-btn .line-text{ order: 3;
  letter-spacing: 0.06em; }
  .cv-line-arrow{ right: 14px; }

  .cv_section {
    background: linear-gradient(to right, #FF9552, #F4792B);
    
    padding: 16px 16px 16px 16px;
    text-align: center;
    color: #fff;
  }
}







  
  /* スマホ対応 */
  @media (max-width: 768px) {
    .cv-inner {
      flex-direction: column;
    }
    .cv-phone, .cv-line {
      width: 100%;
      
      margin-bottom: 16px;
      
    }

    .cv-line-arrow::before,
    .cv-line-arrow::after{
      content:"";
      position:absolute;
      left: 6px; top: 3px;
      width: 10px; height: 10px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
      transform: rotate(45deg);
    }

    .cv-line-btn .line-arrow {
      position: absolute;
      right: 6%;
      
      margin-top: 28px;
      margin-left: 6px;
      width: 12px;
      height: 12px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
      transform: translateY(-50%) rotate(45deg);
    }


    .cv-title {
      width: 100%;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 16px;
    }
    
    
  }
  














  





 /* --------------------------- お問い合わせセクション --------------------------- */


/* 임시대책 */
 /* .step-block {
  display: none;
} */





 .contact-section {
  background: url("../images/contact_bg.svg") no-repeat center/cover;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}
  
  .contact-inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  
  .contact-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 32px;
    position: relative;
    color: #f4792b;
    letter-spacing: 0.08em;
  }
  
  /* .contact-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #f4792b;
    margin: 32px auto 0;
  } */
  
  .contact-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 12px; */
    text-align: center;
    border-top: 1px solid transparent; /* IE対策 */
    transition: opacity 0.2s ease;
  }
  
  .contact-box {
    flex: 1;
    padding: 0 20px;
    position: relative;
    transition: opacity 0.2s ease;
  }

  .contact-box img {
    width: 100%;
  }


/* 真ん中2つの左右に線を入れる */
.contact-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 80%;
  background: rgba(0, 0, 0, 0.1); /* 黒に近い薄いグレー */
  transition: opacity 0.3s ease;
}
  
  .contact-label {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 20px;
    color: #333;
    letter-spacing: 0.06em;
  }
  
  .contact-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 24px;
    border-radius: 9999px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    /* transition: opacity 0.3s ease; */
    transition: opacity 0.3s ease-in-out;
  }
  
  .contact-btn.green {
    background: #00a49f;
  }
  
  .contact-btn.line {
    background: #00c300;
  }
  
  /* .contact-btn:hover {
    opacity: 0.8;
  } */
  
  .contact-btn img {
    height: 20px;
    margin-bottom: 8px;
  }
  
  .small-label {
    font-size: 12px;
    opacity: 0.9;
  }
  
  .main-label {
    font-size: 16px;
  }
  
  .contact-phone {
    margin-top: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    letter-spacing: 0.00;
    font-weight: bold;
    color: #f4792b;
    margin-bottom: 8px;
    gap: 8px;
  }
  
  .contact-phone img {
    height: 30px;
  }
  
  .contact-time {
    font-size: 14px;
    color: #666;
    margin-top: -12px;
  }

  



  .step-contact p{
    font-size: 14px; margin-top: -6px; text-align: end;
  }









 /* --------------------------- footerセクション --------------------------- */




 .site-footer {
  background: #505050;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: block;
  margin: 0 auto 30px;
  height: 40px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  /* padding: 10px; */
}

.footer-divider {
  height: 1px;
  background: #fff;
  margin: 20px auto;
  max-width: 1200px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #ccc;
  font-size: 13px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-copy {
  margin-top: 10px;
  font-size: 12px;
  color: #ccc;
}




/* TOPに戻る */

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 0px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: scale(1.1);
}

.back-to-top img {
  width: 16px;
  height: 16px;
}

.sp-only {
  display: none;
}

.step-line .sp-only { display: none !important; }






@media (min-width: 769px) {

  .about-section_sp{
    display: none;
  }

  .comparison-section_sp{
    display: none;
  }

  .blog-section_sp{
    display: none;
  }

  .float-cta-sp { display: none; }

  .fv_sp{
    display: none;
  }

  

  .worry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 1080px;
    margin: 0 auto;
  }


  .worry-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/worry_bg.svg") no-repeat center/cover;
    padding: 80px 20px 80px;
    color: #fff;
    /* gap: 12px; */
  }

  .property-img {
    width: 100%;
    margin-bottom: 10px;
  }



  .worry-image {
    height: 256px;
    margin-top: -24px;
  }

  .worry-image img {
    height: 280px;
    margin-top: -24px;
  }

  .reason-section_sp{
    display: none;
  }


  .voice-section_sp{
    display: flex;
  }

  .property-section_sp {
    display: none;
  }
  .voice-section_sp{
    display: none;
  }

  .fixed-cta {
    display: none;
  }

  .voice-section_sp{
    display: none;
  }




  .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #f4792b;
    margin: 10px auto 0;
  }
  
  .property-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }


  .section-title {
    font-size: 28px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
    letter-spacing: 0.04rem;
    color: #333;
  }


  .worry-section_sp{
    display: none;
  }


  .voice-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items:center
  }


}

@media (min-width: 1001px) {
  .mobile-header{
    display: none;
  }




}

@media (max-width: 1000px) {
  .pc_site-header{
    display: none;
  }

  .mobile-header {
    display: flex;
    flex-direction: column;
    background: white;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #ddd;
  }

  .mobile-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    z-index: 10000;

  }

  .mobile-icons_sns{
    display: flex;
    gap: 6px;
    margin-right: 12px;
  }

  .mobile-logo img {
    height: 30px;
  }

  .mobile-icons {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-tel {
    display: flex;
  }
  .mobile-tel img {
    width: 28px;
    height: 28px;
  }



  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #f7f6f4;
    padding: 12px 16px;
    border-top: 1px solid #ddd;
  }

  .mobile-nav a {
    padding: 12px 0;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav.show {
    display: flex;
  }


  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(247,246,244,0.97);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: stretch;       /* ← 中央寄せをやめ、幅いっぱいに */
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    overflow-y: auto;           /* ← メニューが多い時にスクロール */
    -webkit-overflow-scrolling: touch;
    padding: 60px 0;            /* 画面上下に少し余白 */
  }

  .mobile-nav-overlay.show {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-nav-inner{
    width: 100%;
    max-width: 640px;           /* メニューの最大幅 */
    margin: 0 auto;             /* 画面中央に寄せる（左右） */
    padding: 0;                 /* gapは使わず、線で区切る */
  }
  
  /* 1行のメニュー行 */
  .mobile-nav-inner a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;   /* 右端に矢印 */
    padding: 22px 12px;               /* 行の高さ＆左右余白 */
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1;
    width: 90%;
    border-bottom: #F4792B 1px solid;
    margin: 0 auto;
    /* justify-content: center; */
  }
  
  /* 仕切り線（各行の下に、左右24px空けて敷く） */
  /* .mobile-nav-inner a:not(:last-child)::before{
    content:"";
    position:absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 2px;
    background: rgba(244,121,43,.35);
    pointer-events: none;
  } */
  
  /* 右向き矢印（境界線で描画） */
  .mobile-nav-inner a::after{
    content:"";
    width: 8px;
    height: 8px;
    border-top: 2px solid #F4792B;
    border-right: 2px solid #F4792B;
    transform: rotate(45deg);
    flex: 0 0 auto;
  }
  
  /* 押下/hover時のフィードバック */
  .mobile-nav-inner a:hover { background: rgba(244,121,43,.04); }
  .mobile-nav-inner a:active{ background: rgba(244,121,43,.08); }
  
  /* お好みで：先頭にも薄い線を入れる */
  /* .mobile-nav-inner::before{
    content:"";
    display:block;
    height:2px;
    background: rgba(244,121,43,.35);
    margin: 0 24px;
  } */


  .hbg_cta{
    margin-top: 32px;
    display: flex;
    justify-content: center;
  }

  .hbg-phone {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 16px;
    max-width: 360px;
    width: 380px;
    color: #f4792b;
    /* padding: 16px 32px; */
    border-radius: 8px;
    text-align: center;
    flex: 1;
    
  }

  .hbg-number {
    font-size: 44px;
    letter-spacing: 0.0;
    font-weight: bold;
    color: #f4792b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hbg-label {
    width: 100%;
    background-color: #f4792b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: -6px;
    margin-top: 12px;
    color: #fff;
  }

  .hbg-time {
    font-size: 12px;
    margin-top: -12px;
    color: #f4792b;
    letter-spacing: 0.2;
  }


  

  .hamburger {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
  }

  .hamburger span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #F4792B;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(1) {
    top: 4px;
  }
  .hamburger span:nth-child(2) {
    top: 11px;
  }
  .hamburger span:nth-child(3) {
    top: 18px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
  }

}






@media (max-width: 768px) {



  .about-section{
    display: none;
  }
  .step-line .sp-only { 
    display: inline !important; 
    margin-top: 8px; 
  
  } /* inline or inline-block */
  

  .comparison-section{
    display: none;
  }

  .sp-only {
    display: inline;
  }

  .blog-section{
    display: none;
  }
  

  .back-to-top.show{
    display: none;
  }

  .worry-section{
    display: none;
  }

  .voice-section{
    display: none;
  }


  .reason-section {
    display: none;
  }

  .property-section{
    display: none;
  }


  .pc_site-header{
    display: none;
  }

  .fixed-banner{
    display: none;

    
  }




  .cv-number {
    font-size: 38px;
    letter-spacing: 0.0;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .cv-label {
    margin: 0 auto;
    width: 90%;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: -6px;
    color: #f4792b;
  }



      
      


  
    /* お問い合わせ */
    .contact-boxes {
      flex-direction: column;
      gap: 12px;
    }
  
    .contact-box:not(:last-child)::after {
      display: none;
    }
  
    /* フッター */
    .footer-nav {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }






    .fixed-cta {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      /* height: 60px; */
      z-index: 100;
      background: #fff;
    }
  
    .fixed-cta a {
      flex: 1;
      display: flex;
    }
  
    .fixed-cta img {
      width: 100%;
      height: 100%; /* 高さを固定して揃える */
      object-fit: cover; /* はみ出しをトリミング */
    }

    .float-cta-sp {
      position: fixed;
      bottom: 32px;
      left: 8px;
      /* 下部の固定CTA(60px)と被らないよう少し上に。iOS安全域にも対応 */
      bottom: calc(56px + env(safe-area-inset-bottom));
      z-index: 10;
      display: block;
      animation: cta-bob 2.2s ease-in-out infinite;
      /* 触り心地UP */
      -webkit-tap-highlight-color: transparent;
    }
  
    .float-cta-sp img {
      width: 120px; /* サイズはお好みで */
      height: auto;
      display: block;
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18));
    }
  
    @keyframes cta-bob {
      0%   { transform: translateY(0); }
      50%  { transform: translateY(-2px); } /* 上下に小さく */
      100% { transform: translateY(0); }
    }
  
    /* 動きが苦手な人向けにアニメ抑制 */
    @media (prefers-reduced-motion: reduce) {
      .float-cta-sp { animation: none; }
    }


  
    body {
      padding-bottom: 60px; /* CTAの高さ分 */
    }


    /* CTA：最初は隠す */
.fixed-cta,
.float-cta-sp {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

/* スクロール後に表示 */
.fixed-cta.is-visible,
.float-cta-sp.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

}















/* よくある質問new */



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1rem;
}

.header {
  text-align: center;
  margin-bottom: 60px;
}

.header h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}


.header h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #f4792b;
  margin: 10px auto 0;
}

.header-text {
  color: #666;
  font-size: 16px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-button {
  width: 200px;
  height: 46px;
  padding: 0 1rem;
  border: 1px solid #f4792b;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background-color: white;
  color: #f4792b;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.04em;
}

.tab-button:hover {
  background-color: #fef7f2;
}

.tab-button.active {
  background-color: #f4792b;
  color: white;
  border-color: #f4792b;
}

.tab-arrow {
  width: 24px;
  height: 24px;
  background-color: #f4792b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: -8px;
}

.tab-arrow svg {
  width: 12px;
  height: 12px;
  fill: white;
}

.tab-button.active .tab-arrow {
  display: none;
}

.category-title {
  height: 42px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 42px;
  color: #333;
  border-bottom: 1px solid #F4792B;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s;
  letter-spacing: 0.04em;
}

.faq-question:hover {
  /* background-color: #f9fafb; */
}

.question-content {
  display: flex;
  align-items: center;
}

.q-icon {
  width: 28px;
  height: 28px;
  background-color: #f4792b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  margin-right: 0.75rem;
}


.chevron {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 0.2s;
}

.chevron.open {
  transform: rotate(180deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  background-color: #fafafa;
}

.answer-content {
  display: flex;
  align-items: flex-start;
  padding: 1.6rem 1rem 1.6rem 1rem;  /* ←追加 */
  background-color: #fef0e9;
}

.a-icon {
  width: 28px;
  height: 28px;
  background-color: #17a2b8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.answer-text {
  color: #333;
  line-height: 1.7;
  white-space: pre-line;
}

.faq-item.hidden {
  display: none;
}

@media (max-width: 768px) {
  .container {
      padding: 1rem 0.5rem;
  }
  
  .category-tabs {
      gap: 0.25rem;
  }
  
  .tab-button {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
      width: 46%;
  }
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  letter-spacing: 0.08em;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1rem;
}

.header {
  text-align: center;
  margin-bottom: 60px;
}



.header-text {
  color: #666;
  font-size: 16px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-button {
  width: 200px;
  height: 46px;
  padding: 0 1rem;
  border: 1px solid #f4792b;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background-color: white;
  color: #f4792b;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.04em;
}

.tab-button:hover {
  background-color: #fef7f2;
}

.tab-button.active {
  background-color: #f4792b;
  color: white;
  border-color: #f4792b;
}

.tab-arrow {
  width: 24px;
  height: 24px;
  background-color: #f4792b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: -8px;
}

.tab-arrow svg {
  width: 12px;
  height: 12px;
  fill: white;
}

.tab-button.active .tab-arrow {
  display: none;
}

.category-title {
  height: 42px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 42px;
  color: #333;
  border-bottom: 1px solid #F4792B;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s;
  letter-spacing: 0.04em;
}

.question-content {
  display: flex;
  align-items: center;
}

.q-icon {
  width: 28px;
  height: 28px;
  background-color: #f4792b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  margin-right: 0.75rem;
}

.question-text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.04em;
}

.chevron {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 0.2s;
}

.chevron.open {
  transform: rotate(180deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  background-color: #fafafa;
}

.answer-content {
  display: flex;
  align-items: flex-start;
  padding: 1.6rem 1rem 1.6rem 1rem;
  background-color: #fef0e9;
}

.a-icon {
  width: 28px;
  height: 28px;
  background-color: #17a2b8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.answer-text {
  color: #333;
  line-height: 1.7;
  white-space: pre-line;
}

.faq-item.hidden {
  display: none;
}

/* ページネーション */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.pagination-info {
  font-size: 14px;
  color: #666;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}

.pagination button:hover:not(:disabled) {
  background-color: #fef7f2;
  border-color: #f4792b;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination button.active {
  background-color: #f4792b;
  color: white;
  border-color: #f4792b;
}

.pagination .page-dots {
  padding: 8px 4px;
  color: #666;
}

@media (max-width: 768px) {
  .container {
      padding: 1rem 0.5rem;
  }
  
  .category-tabs {
      gap: 0.25rem;
  }
  
  .tab-button {
      padding: 0.5rem 1rem;
      font-size: 14px;
      width: 46%;
  }

  .pagination {
      gap: 0.25rem;
  }

  .pagination button {
      padding: 8px 10px;
      font-size: 14px;
  }

  .pagination-container {
      flex-direction: column;
      gap: 0.5rem;
  }
  
  .question-text {
    max-width: 88%;
  }
  
}