* {
    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: -162px; /* 右端からの距離は自由に調整可能 */
    top: -6px;
    max-height: 512px;
    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;
    }
    
    
  }
  




  .campaign-slider {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .slider-track::-webkit-scrollbar {
    display: none;
  }
  
  .slide-item {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    border-radius: 8px;
  }
  
  .arrow {
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #F4792B;
    user-select: none;
  }
  
  .arrow:hover {
    opacity: 0.6;
  }
  




    /* --------------------------- 監修者 --------------------------- */

    .kansyu_ttl {
        position: absolute;
        top: -23px; /* ← 上にはみ出す距離 */
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        z-index: 2;
      }

      .kansyu_ttl img {
        width: 200px;  /* 好きな幅に調整 */
        height: auto;  /* 縦横比を保持 */
      }
      

    .supervisor-section {
        position: relative; /* ← これが超重要！ */
        background-color: #f7f7f7;
        padding: 40px 20px 20px; /* ← 上側に余白を少し増やす */
        border-radius: 12px;
        max-width: 800px;
        margin: 80px auto;
      }
      
      
      .supervisor-container {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 40px;
      }
      
      .supervisor-image img {
        width: 240px;
        /* border-radius: 4px; */
      }
      
      .supervisor-text {
        flex: 1;
        min-width: 280px;
      }
      
      .supervisor-label {
        display: inline-block;
        background-color: #f4792b;
        color: white;
        font-weight: bold;
        font-size: 18px;
        padding: 4px 16px;
        border-radius: 4px;
        margin-bottom: 12px;
      }
      
      .supervisor-name {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 12px;
        color: #333;
      }
      
      .supervisor-name span {
        color: #f4792b;
        font-size: 16px;
        margin-left: 12px;
      }
      
      .supervisor-text p {
        font-size: 15px;
        line-height: 1.8;
        color: #444;
      }










    /* --------------------------- 会社紹介（ほごらんどとは） --------------------------- */

.about-section{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;      /* ← 縦中央 */
  min-height: 420px;        /* 高さは調整OK */
  padding: 40px 16px;
  overflow: hidden;         /* ← 上下を隠す */
  background: #fff;
}

/* 左右写真：セクション内で固定配置し、中央へ向けてフェード */
.about-photo{
  position: absolute;
  top: 0; bottom: 0;
  width: 42%;
  background-size: cover;
  background-position: center;
  filter: saturate(105%);
}
.about-photo-left{
  left: 0;
  background-image: url("../images/about_bg_01.png");
  mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.05));
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.05));
}
.about-photo-right{
  right: 0;
  background-image: url("../images/about_bg_02.png");
  mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0.05));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0.05));
}

/* 中央の楕円カード */
.about-bubble{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 48px;       /* テキストの余白 */
  background: transparent;  /* ← 背景は疑似要素に移動 */
  box-shadow: none;
  border-radius: 0;
  isolation: isolate;       /* 疑似要素のz-index管理が安定 */
}



/* ここが “白い円” 本体（中央に固定） */
.about-bubble::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%); /* ← 完全中央 */
  width: min(800px, 95vw);        /* 円の大きさ（調整可） */
  height: min(800px, 95vw);
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: -1;                     /* テキストの背面へ */
}

.about-body{
  text-align: center;
}

/* タイトル行（左にロゴ→テキスト） */
.about-ttl{
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.about-logo{
  height: 42px; width: auto;
}

/* 本文 */
.about-body p{
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 6px 0;
  font-weight: 500;
}

.ttl_fr{
  margin-bottom: 24px;
  
  color: #F4792B;
}

.ttl_ls{
  margin-top: 24px;
  color: #F4792B;
}

.towa{
  margin-top: 20px;
  margin-left: -12px;
}



.about-body .hl{
  color: #f4792b;            /* オレンジ強調 */
  font-weight: 700;
}

/* --- レスポンシブ --- */
@media (max-width: 1024px){
  .about-photo{ width: 38%; }
  .about-bubble{ padding: 32px 36px; }
}
@media (max-width: 768px){
  .about-photo{ display: none; }      /* スマホは写真を隠し読みやすく */
  .about-bubble{
    border-radius: 20px;
    padding: 24px 6px;
  }
  .about-ttl{ font-size: 20px; }
  .about-body p{ font-size: 15px; line-height: 1.75; }
}











      

    /* --------------------------- お悩みセクション --------------------------- */


      .worry-section {
        position: relative;
        background: url("../images/nayami_bg.jpg") no-repeat center/cover;
        color: #fff;
      }
      
      .worry-overlay {
        padding: 120px 20px 120px;
        text-align: center;
      }
      
      .worry-title {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 60px;
        position: relative;
        display: inline-block; /* ← 横幅に合わせて線を中央にするため */
        letter-spacing: 0.08em;
      }
      
      .worry-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background-color: #f4792b;
        margin: 12px auto 0;
        border-radius: 2px;
      }
    
      
      .worry-item {
        background: #fff;
        color: #333;
        padding: 18px;
        border-radius: 8px;
        text-align: left;
      }
      
      .worry-heading {
        font-size: 16px;
        font-weight: 600;
        color: #f4792b;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 8px;
        letter-spacing: 0.04em;
      }

      .worry-text {
        /* max-width: 600px; */
      }
      
      .worry-sub {
        font-size: 16px;
        color: #333;
        margin-left: 24px;
      }
      
      
      .worry-message-small {
        font-weight: 500;
        font-size: 21px;
        /* margin-bottom: 20px; */
      }
      
      .worry-message-big {
        font-size: 36px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.00em;
      }
      
      .worry-message-big span {
        background: #fff;
        color: #f4792b;
        padding: 4px 8px;
        display: inline-block;
        margin-top: 8px;
        font-size: 36px;
      }


      .worry-message_cover{
        display: flex;
        top: 180px;
      }

      .awords{
        width: 36px;
        height: auto;
        margin-left: 12px;
        margin-right: 12px;
      }
      .awords img{
        width: 100%;
      }
      
 



  /* --------------------------- 選ばれる理由 --------------------------- */



  .reason-title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
    text-align: center;
    line-height: 1.4;
  }
  
  .reason-title-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
  }
  
  .reason-logo {
    width: 200px;
    /* height: 160px; */
  }
  
  .reason-ga {
    font-size: 32px;
    font-weight: bold;
    color: #f4792b;
    margin-left: 0px;
    margin-top: 12px;
  }
  
  .reason-ttl {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(to right, #FF9552, #F4792B);
    padding: 6px 18px;
    display: inline-block;
    letter-spacing: 0.2em;
    margin-top: -10px;
  }
  
  




  .reason-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  .reason-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
    gap: 40px;
  }
  
  .reason-box.reverse {
    flex-direction: row-reverse;
  }
  
  .reason-text {
    flex: 1;
  }
  
  .reason-image {
    flex: 1;
  }
  
  .reason-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .reason-number {
    font-size: 18px;
    color: #f4a261;
    font-weight: bold;
  }
  
  .reason-number span {
    font-size: 40px;
    font-weight: bold;
  }
  
  .reason-title {
    font-size: 32px;
    color: #f4792b;
    font-weight: 600;
    margin: 12px 0;
    margin-top: -12px;
    letter-spacing: 0.04em;
    line-height: 1.4;
  }
  
  .reason-line {
    width: 100%;
    height: 2px;
    background: #f4792b;
    margin: 16px 0;
  }
  
  .reason-description {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    font-weight: 600;
  }
  
  .highlight {
    color: #f4792b;
    font-weight: 600;
  }
  

  .comparison-section {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center;     /* 横方向中央寄せ */
    justify-content: center;
    /* padding: 60px 20px; */
    padding-bottom: 120px;
  }
  
  .comparison-img {
    max-width: 60%;
    height: auto;
    margin-bottom: 32px;
  }
  





  /* --------------------------- ご利用者さまの声セクション --------------------------- */







  .voice-section {
    background: linear-gradient(to right, #f99e4e, #f4792b);
    padding: 120px 20px;
    color: #fff;
    text-align: center;

  }


  .voice-cover{
    background-color: #FFE8DA;
    max-width: 980px;
    padding: 12px;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 0px 12px rgba(0,0,0,0.05);
  }
  
  .voice-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 60px;
    position: relative;
    display: inline-block; /* ← 横幅に合わせて線を中央にするため */
    letter-spacing: 0.04em;
  }
  
  .voice-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #fff;
    margin: 12px auto 0;
  }
  
  .voice-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    max-width: 960px;
    margin: 0 auto 12px;
    color: #333;
  }
  
  .voice-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
  
  .voice-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .voice-content {
    flex: 1;
    text-align: left;
  }
  
  .voice-quote {
    font-size: 24px;
    font-weight: 600;
    color: #f4792b;
    margin: 0 0 12px;
  }
  

  
  .meta-label {
    background-color: #FFE8DA;
    color: #F4792B;
    font-weight: bold;
    padding: 2px 8px;
    /* border-radius: 4px; */
    font-size: 14px;
  }
  
  .meta-text {
    font-size: 16px;
    color: #333;
    margin-right: 12px;
  }
  
  .voice-divider {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
  }
  
  .voice-text {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }
  





  /* --------------------------- 物件セクション --------------------------- */






  .property-section {
    text-align: center;
    padding: 80px 20px;
  }
  
  

  
  .property-item {
    width: 288px;
    text-align: left;
    font-size: 14px;
  }
  
  
  .property-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .property-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
  }
  
  .badge {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 20px;
  }
  
  .badge.orange {
    background: #f4792b;
    color: white;
  }
  
  .badge.border {
    border: 1px solid #f4792b;
    color: #f4792b;
  }
  
  .property-price {
    font-weight: bold;
    color: #f4792b;
    margin: 4px 0;
  }
  
  .property-price .yen {
    font-size: 24px;
  }
  
  .property-price .yen-unit {
    font-size: 18px;
    margin-left: 2px;
  }
  
  .property-price .kanri {
    font-size: 13px;
    font-weight: normal;
    margin-left: 6px;
    color: #f4792b;
  }
  
  .property-icons {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #555;
    margin: 6px 0;
    padding: 0;
    list-style: none;
  }
  
  .property-icons .label {
    background: #e5e5e5;
    color: #333;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 5px;
    margin-right: 2px;
  }
  
  .property-access {
    font-size: 13px;
    color: #333;
    margin-top: 4px;
  }
  
  /* CTAボタン */
  .fancy-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 9999px;
    background: #f4792b;
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
    transition: color 0.3s ease;
    /* letter-spacing: 0.08em; */
    margin-top: 60px;
  }
  
  .fancy-button .bg-circle {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    background: #de5a10; /* 濃いオレンジ */
    border-radius: 0 9999px 9999px 0;
    z-index: 1;
    transition: width 0.4s ease;
  }
  
  .fancy-button:hover .bg-circle {
    width: 100%;
    border-radius: 0;
  }
  
  .fancy-button .btn-text,
  .fancy-button .btn-arrow {
    position: relative;
    z-index: 2;
    margin-left: 28px;
  }
  
  .fancy-button .btn-text {
    /* margin-left: 16px; */
  }
  
  .fancy-button .btn-arrow {
    font-weight: bold;
    font-size: 20px;
  }
  

  .btn-arrow {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    z-index: 2;
  }
  











  /* --------------------------- SP物件スライダー スワイプ --------------------------- */




  .container {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    /* padding-right: 20px; */
}

.cards-wrapper {
    /* display: flex;
    transition: transform 0.3s ease-out;
    touch-action: pan-y; */
    margin-bottom: 24px;
}

.card {
  min-width: calc(100vw - 80px);
  margin-bottom: 24px;
  /* margin-right: 16px; */
  margin-left: 0;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.card:first-child {
    /* margin-left: 20px; */
}

.card-image {
    width: 100%;
    height: 200px;
    background-color: #e8e8e8;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-image.room1 {
    background-image: url('../images/bil_01.jpeg');
}

.card-image.room2 {
    background-image: url('../images/bil_02.jpeg');
}

.card-image.room3 {
    background-image: url('../images/bil_03.jpg');
}

.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f4792b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.card-content {
    padding: 12px 6px 24px 6px;
}


.property_price{
  display: flex;
  align-items: end;
  gap: 6px;
}

.property-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
    color: #333;
}

.label{
  background: #e5e5e5;
  color: #333;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 5px;
  margin-right: 2px;

}

.features {
    display: flex;
    gap: 6px;
    margin-bottom: 0px;
    font-weight: 500;
}

.feature-tag {
    background: #f4792b;
    color: white;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 12px;
}

.feature-tag.secondary {
    border: 1px solid #f4792b;
    background-color: white;
    color: #f4792b;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #f4792b;
    margin-bottom: 4px;
    letter-spacing: 0.00;
}

.price-detail {
    font-size: 14px;
    color: #f4792b;
    margin-bottom: 8px;
}

.specs {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    letter-spacing: 0.00;
}

.location {
    font-size: 14px;
    color: #333;
}

.indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #f4792b;
}












  /* --------------------------- サポートの流れセクション --------------------------- */





  .support-flow {
    background: linear-gradient(to right, #f99e4e, #f4792b);
    padding: 80px 20px;
  }
  
  .support-flow .inner {
    max-width: 900px;
    margin: 0 auto;
  }

  
  
  .support-flow-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 60px;
    position: relative;
    /* letter-spacing: 0.08em; */
  }
  
  .support-flow-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #fff;
    margin: 12px auto 0;
  }
  
  .step-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-direction: row;
  }


.step-content {
    flex: 1;
    margin-left: 20px;
  }
  
  .step-header {
    flex-shrink: 0;
    width: 120px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
  }
  
  .step-number {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .step-header img {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
  }
  
  .step-line {
    margin: 0 auto;
    line-height: 0.4;
    /* display: inline-block; */
    font-size: 20px;
  }
  
  .step-line span {
    display: block;
    opacity: 0;
    /* transition: opacity 0.3s ease; */
  }
  
  
  
  .step-body {
    background: #fffaf3;
    padding: 24px;
    border-radius: 14px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 180%;
  }
  
  .step-title.orange {
    font-size: 24px;
    font-weight: 500;
    color: #F4F684;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
  }
  
  .step-contact {
    display: flex;

    gap: 12px;
    margin-top: 20px;
  }
  
  .line-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #00c300;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
  }
  
  .line-btn img {
    height: 20px;
    margin-right: 8px;
  }
  
  .phone {
    display: flex;
    font-size: 48px;
    font-weight: bold;
    color: #f4792b;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0;
    /* margin-bottom: -63px; */
    margin-top: 12px;
  }
  
  .phone img {
    height: 42px;
    margin-right: 8px;
    margin-top: 4px;
  }

  .step_line{
    width: 280px;
    height: auto;
  }




  








  /* --------------------------- よくある質問セクション --------------------------- */







  .faq-section {
    text-align: center;
    background: #fff;
    padding: 80px 20px;
  }
  
  .faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
  }
  
  .faq-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #f4792b;
    margin: 10px auto 0;
  }
  
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-list a {
    text-align: center;
  }
  
  .faq-item {
    margin-bottom: 16px;
    border-bottom: 1px solid #ddd;
  }
  
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 20px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: #333;
    letter-spacing: 0.2;
  }
  
  .faq-icon.q {
    background: #f4792b;
    color: #fff;
    border-radius: 999px; /* 横長楕円形 */
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 16px;
    flex-shrink: 0;
  }
  
  
  .faq-icon.a {
    background: #28c3a0;
    color: #fff;
    border-radius: 50%;
    padding: 6px 12px;
    margin-right: 10px;
    font-size: 14px;
    vertical-align: top;
  }
  
  .faq-answer {
    display: none;
    padding: 20px;
    font-size: 15px;
    line-height: 1.8;
    background: #fef0e9;
    border-top: 1px solid #ddd;
  }

  /* 初期は閉じる：高さ0で隠し、heightだけをアニメーション */
.faq-answer {
  overflow: hidden;
  height: 0;
  transition: height .2s ease; /* スピードはお好みで */
}

/* 開いているときの見た目調整があれば */
.faq-item.is-open .faq-question {
  /* 例）矢印回転など */
}

/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}



  .faq-item.open .faq-answer {
    display: block;
    text-align: left;
  }
  
  .faq-toggle {
    margin-left: auto;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }
  
  .faq-toggle img {
    width: 18px;
    height: 18px;
    display: block;
  }
  
  .faq-item.open .faq-toggle {
    transform: rotate(180deg);
  }
  








 /* --------------------------- ブログセクション --------------------------- */







  .blog-section {
    background: linear-gradient(to right, #f99e4e, #f4792b);
    padding: 80px 20px;
    text-align: center;
  }
  
  .blog-inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .blog-title {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
  }
  
  .blog-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #fff;
    margin: 10px auto 0;
  }
  
  .blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .blog-card {
    /* background: #fff; */
    /* border-radius: 8px; */
    overflow: hidden;
    text-align: left;
    font-size: 14px;
  }


  .blog-card:hover .blog-heading {
    text-decoration: underline;
  }
  

  
  
  .blog-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .blog-meta {
    color: #e2e2e2;
    font-size: 12px;
    margin: 4px 0px 4px;
  }
  
  .blog-heading {
    margin: 0 0px 12px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: white;
  }
  
  .blog-button {
    text-align: center;
  }
  
  .blog-more-btn {
    display: inline-block;
    background: #fff;
    color: #f4792b;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
  }
  
  .blog-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #e05b10;
    width: 0;
    height: 100%;
    transition: width 0.3s ease;
    z-index: 0;
  }
  
  .blog-more-btn:hover::before {
    width: 100%;
  }
  
  .blog-more-btn:hover {
    color: #fff;
  }
  
  .blog-more-btn {
    position: relative;
    z-index: 1;
  }
  











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


/* 임시대책 */
 /* .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;
  }


    /* FVエリア */
    .fv {
      display: none;

      /* padding: 40px 0; */
    }

    .fv_sp {
      position: relative;
      width: 100%;
      height: 600px; /* 適宜調整可 */
      background-image: url("../images/fv_bg_sp.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
    }
  
    .fv-bg-sp {
      display: none; /* imgを削除したので不要、安全のため非表示 */
    }
  
    .fv-sp-overlay {
      /* position: absolute; */
      top: 62%;
      left: 50%;
      /* transform: translate(-50%, -50%); */
      display: flex;
      flex-direction: column;
      align-items: center;
      pointer-events: none;
      z-index: 10;
      width: 100%;
      max-width: 100%;
      padding: 0 16px;
    }
  
    .fv-text-sp {
      width: 380px;
      height: auto;
      margin-top: 24px;
    }
  
    .fv-ogawa-sp {
      position: relative;
      top: -208px;
      /* bottom: 322px; */
      left: 100px;
      width: 380px;
      height: auto;
      margin-top: 8px;
      max-height: 480px;
    }




    body {
      overflow-x: hidden; /* 横スクロール防止 */
    }
  
    .worry-image {
      position: relative;
      
    }


    .slide-item {
      flex: 0 0 auto;
      width: 100%;
      scroll-snap-align: start;
      border-radius: 8px;
    }



    .supervisor-container {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 40px;
      justify-content: center;
    }

    .supervisor-text p {
      font-size: 14px;
      line-height: 1.8;
      color: #444;
    }


    .supervisor-text {
      flex: 1;
      min-width: 280px;
      text-align: center;
    }


    .supervisor-name span {
      color: #f4792b;
      font-size: 16px;
      margin-left: 2px;
    }


    .campaign-slider {
      position: relative;
      max-width: 800px;
      margin: 40px auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 16px;
    }


    .supervisor-section {
      position: relative; /* ← これが超重要！ */
      background-color: #fff;
      padding: 40px 20px 20px; /* ← 上側に余白を少し増やす */
      border-radius: 12px;
      max-width: 800px;
      margin: 80px 12px;
    }


    .about-section_sp{
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 520px;           /* 欲しい高さに */
      padding: 48px 16px;
      overflow: hidden;            /* 円の上下を隠す */
      background: 
        url("../images/about_bg_sp.png") center/cover no-repeat;      
    }


    .about-bubble::before{
      display: none;
    }





    .cv-line-btn .line-text{
      margin-top: 16px;
      font-weight: 600;
      font-size: 22px;
      letter-spacing: 0.04em;
      line-height: 1;
      /* text-shadow: 0 1px 0 rgba(0,0,0,.15); */
    }




    .worry-title {
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 60px;
      position: relative;
      display: inline-block; /* ← 横幅に合わせて線を中央にするため */
      letter-spacing: 0.08em;
    }
    
    .worry-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background-color: #f4792b;
      margin: 12px auto 0;
      border-radius: 2px;
    }


    .worry-list {
        display: grid;
        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: 0px 20px 0px;
        color: #fff;
        gap: 48px;
        /* overflow: hidden;  */
        position: relative; /* 念のため */
        height: 240px;
    }


      .worry-image {
        height: 256px;
        margin-top: -24px;
        text-align: center;
        position: relative;
        top: 232px;
        /* left: 160px; */
        right: -45%; 
      }

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


      .worry-item {
        background: #fff;
        color: #333;
        padding: 18px;
        border-radius: 8px;
        text-align: left;
      }
      
      .worry-heading {
        font-size: 16px;
        font-weight: 600;
        color: #f4792b;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 8px;
        letter-spacing: 0.04em;
      }

      .worry-text {
        position: relative;
        top: -137px;

        max-width: 600px;
      }


      
      .worry-sub {
        font-size: 14px;
        font-weight: 500;
        color: #333;
        margin-left: 24px;

      }
      

      .reason-text img{
        width: 112px;
      }


      .worry-text {
        max-width: 600px;
      }
      
      .worry-message-small {
        position: relative;
        top: 190px;
        text-align: center;
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.5;
        font-weight: 500;
      }
      
      .worry-message-big {
        position: relative;
        /* top: 120px; */
        font-size: 28px;
        font-weight: 600;
        line-height: 1.0;
        letter-spacing: 0.00em;
        text-align: center;
      }
      
      .worry-message-big span {
        background: #fff;
        color: #f4792b;
        padding: 4px 6px;
        display: inline-block;
        margin-top: 16px;
        font-size: 28px;

      }

      .worry-message_cover{
        display: flex;
        justify-content: center;
        position: relative;
        top: 190px;
      }


      .awords{
        width: 32px;
        height: auto;
        margin-left: 12px;
        margin-right: 12px;
      }
      .awords img{
        width: 100%;
      }



      .reason-ga {
        font-size: 24px;
        font-weight: bold;
        color: #f4792b;
        margin-left: 0px;
        margin-top: 12px;
      }


      .reason-ttl {
        font-size: 24px;
        font-weight: 500;
        color: #fff;
        background: linear-gradient(to right, #FF9552, #F4792B);
        padding: 6px 18px;
        display: inline-block;
        letter-spacing: 0.2em;
        margin-top: 0px;
      }

      .reason-title{
        font-size: 24px;
        font-weight: 700;
      }


      .reason-section_sp{
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
      }


      .comparison-img {
        max-width: 100%;
        height: auto;
        margin-bottom: 12px;
      }




      .voice-section_sp{
        background: linear-gradient(to right, #f99e4e, #f4792b);
        padding: 60px 20px;
        color: #fff;
        text-align: center;
    
      }
      

      .voice-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 60px;
        position: relative;
        letter-spacing: 0.08em;
      }

      .meta-label {
        background-color: #FFE8DA;
        color: #F4792B;
        font-weight: bold;
        padding: 2px 8px;
        /* border-radius: 4px; */
        font-size: 14px;
      }
      
      .meta-text {
        font-size: 14px;
        color: #333;
        margin-right: 12px;
        font-weight: 600;
      }



      .section-title {
        font-size: 28px;
        font-weight: 600;
        position: relative;
        /* display: inline-block; */
        margin-bottom: 60px;
        text-align: center;
        letter-spacing:0.06em;
      }

      .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;
      }


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



      .property-section_sp {
        display: block;
        padding: 60px 20px;
      }
      
    
      .property-slider {
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
        max-width: 100%;
      }


      
      
      
      .property-slider-track {
        display: flex;
        transition: transform 0.4s ease;
        width: 100%;
      }
      
      .property-slide {
        width: 80%;
        min-width: 80%;
        box-sizing: border-box;
        padding: 0px 8px;
      }
      
      .property-slider .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 5;
      }
      
      .property-slider .arrow.left {
        left: 0px;
      }
      
      .property-slider .arrow.right {
        right: 0px;
      }
      

      .step-body{
        padding: 12px;
        font-size: 15px;
        border-radius: 6px;
      }
      .step_line{
        width: 100%;
        max-width: 320px;
      }

      .phone{
        font-size: 28px;
        margin-top: 0px;
      }

      .step-title.orange{
        font-size: 18px;
        letter-spacing:0.04em;
      }
      .step-number{
        font-size: 13px;
        margin-bottom: 4px;
        letter-spacing: 0.00;
      }

      .step-header{
        width: 18%;
      }

      .step-header img {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
      }


    
  
    /* 選ばれる理由 */
    .reason-box {
      flex-direction: column;
      margin-bottom: 60px;
      /* text-align: center; */
      gap: 12px;
    }
  
    .reason-box.reverse {
      flex-direction: column;
    }
  
    /* ご利用者さまの声 */
    .voice-header {
      flex-direction: column;
      /* align-items: center; */
      gap: 6px;
    }
  
    .voice-avatar {
      width: 40%;
      height: 40%;
    }
  
    .voice-content {
      /* text-align: center; */
      display: flex;
      gap: 12px;
    }
    
    .voice-meta div{
      margin-bottom: 6px;
      display: flex;
      align-items: center;
    }

    .meta-label {
      background-color: #FFE8DA;
      color: #F4792B;
      font-weight: bold;
      padding: 0px 0px;
      /* border-radius: 4px; */
      font-size: 14px;
      /* margin: 12px 12px 12px 12px; */
      width: 12px;
      /* height: 22px; */
      margin-right: 8px;
      display: inline-block; /* これ重要 */
      width: 68px;           /* 横幅を固定 */
      background-color: #FFE8DA;
      color: #F4792B;
      font-weight: 500;
      font-size: 14px;
      padding: 2px 8px;
      text-align: center;
    }
  
    .voice-text {
      text-align: left;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .voice-quote {
      font-size: 22px;
      font-weight: 700;
      color: #f4792b;
      margin: 0 0 12px;
      text-align: left;
      line-height: 1.5;
    }
  
    /* 物件カード */
    .property-list {
      flex-direction: column;
      align-items: center;
    }

    .fancy-button_cover{
      text-align: center;
      /* justify-content: center;
      margin: 0 auto; */
    }

    .step-contact {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      margin-top: 20px;
    }

    .voice-meta {
      display: flex;
      flex-direction: column;
      /* gap: 4px; */
      /* margin: 0px 16px; */
    }


    .faq-icon.q {
      background: #f4792b;
      color: #fff;
      border-radius: 999px; /* 横長楕円形 */
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 4px;
      font-size: 16px;
      flex-shrink: 0;
    }

    .reason-description {
      font-size: 16px;
      line-height: 1.75;
      color: #333;
      font-weight: 500;
    }
  
  
    /* ブログカード */
    .blog-list {
      grid-template-columns: 1fr;
    }


    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: none;
      border: none;
      padding: 20px;
      width: 100%;
      font-size: 16px;
      font-weight: 500;
      text-align: left;
      cursor: pointer;
      color: #333;
      gap: 6px;
      line-height: 140%;
    }


    .worry-section_sp {
      position: relative;
      background: url("../images/nayami_bg_sp.jpg") no-repeat center/cover;
      color: #fff;
    }

    .voice-card {
      background: #fff;
      border-radius: 16px;
      padding: 16px;
      max-width: 960px;
      margin: 0 auto 12px;
      color: #333;
    }




    .blog-section_sp {
      background: linear-gradient(to right, #f99e4e, #f4792b);
      padding: 60px 20px;
      text-align: center;
    }

    .fancy-button {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 40px;
      border-radius: 9999px;
      background: #f4792b;
      color: #fff;
      font-weight: 500;
      font-size: 17px;
      overflow: hidden;
      z-index: 0;
      text-decoration: none;
      transition: color 0.3s ease;
      /* letter-spacing: 0.08em; */
      margin-top: 42px;
      
    }

    .phone img {
      height: 28px;
      margin-right: 8px;
      margin-top: 0px;
    }

    .step-contact p{
      font-size: 12px; margin-top: -6px; text-align: end; letter-spacing: 0.08;
    }


  
    /* お問い合わせ */
    .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;
    }


    .support-flow-title {
      text-align: center;
      color: #fff;
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 60px;
      position: relative;
      letter-spacing: 0.04em;
    }
    
    .support-flow-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 2px;
      background: #fff;
      margin: 12px auto 0;
    }


    .contact-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 60px;
      position: relative;
      color: #f4792b;
      letter-spacing: 0.08em;
    }
    
    /* .contact-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 2px;
      background: #f4792b;
      margin: 32px auto 0;
    } */

    .reason-title-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 80px;
      text-align: center;
    }
/* ▼ 物件スライダー（SP）— 中央スナップ＋チラ見せ＋スワイプ対応 */
.property-section_sp .property-slider {
  overflow: hidden;
  /* 縦スクロールは許可、横はJSで処理（ブラウザの横ジェスチャ衝突を避ける） */
  touch-action: pan-y;
}

.property-section_sp .property-slider-track {
  /* JSが読む値：1枚進む距離(step)計算に使用 */
  --gap: 16px;   /* スライド間の隙間。好みで 12〜20px */
  --peek: 12px;  /* 左右の“はみ出し”量。好みで 8〜24px */
  display: flex;
  gap: var(--gap);          /* ← これがないと中央に揃わない */
  transition: transform 0.4s ease;
  will-change: transform;
}

.property-section_sp .property-slide {
  /* 横幅は wrap 幅から左右のpeekを引いたサイズ＝中央にピタッとくる */
  flex: 0 0 auto;
  width: calc(100% - var(--peek) * 2);
  box-sizing: border-box;
  padding: 0 0;            /* 既存の 0 8px があるなら外してOK。必要なら調整 */
}




      /* SPブログ：横スライダー化 */
  .blog-section_sp .blog-slider {
    position: relative;
    max-width: 100%;
    margin: 24px auto 0;
    /* padding: 0 16px; */
    overflow: hidden; /* ← これで1枚以外は見切れる */
  }
  .blog-section_sp .blog-slider-track {
    display: flex;
    width: 100%;
    transition: transform .4s ease;
    will-change: transform;
  }
  .blog-section_sp .blog-slide {
    flex: 0 0 100%;           /* 常に1枚表示 */
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 0 0 100%;
    min-width: 100%;   /* 念のため */
  }

  /* 矢印ボタン（物件と同テイスト） */
  .blog-section_sp .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 999px;
    /* border: 1px solid #ddd; */
    /* background: #fff; */
    /* box-shadow: 0 4px 12px rgba(0,0,0,.12); */
    display: grid; place-items: center;
    font-size: 36px; line-height: 1;
    z-index: 5;
    cursor: pointer;
    user-select: none;
  }
  .blog-section_sp .arrow.left  { left: 0px; color: white;}
  .blog-section_sp .arrow.right { right: 0px; color: white;}

  
  .blog-card {
    /* background: #fff; */
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    font-size: 14px;
    width: 78%;
    margin: 0 auto;
  }


  .blog-card img {
    width: 100%;
    height: auto;
    display: block;
    /* margin: 0 auto; */
  }

  

  



    .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;
}


.property-section_sp .property-slider{
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
  touch-action: pan-y; /* ← 追加：縦スクロールは許可、横はJSで制御 */
}
.property-section_sp .property-slider-track{
  /* JSが読む計算用の変数 */
  --gap: 16px;   /* カード間の余白 */
  --peek: 12px;  /* 左右の“チラ見せ”量 */
  display: flex;
  gap: var(--gap);                 /* ← 重要：中央スナップのズレ防止 */
  transition: transform 0.4s ease;
  width: 100%;
}


.step-content {
  flex: 1;
  margin-left: 10px;
}



/*------------------------ SPブログ ------------------------*/

.blogsp_container {
  /* padding: 20px 0; */
  max-width: 100%;
  overflow: hidden;
  position: relative;
  /* padding-right: 20px; */
}

.blogsp_cards-wrapper {
  /* display: flex; */
  /* transition: transform 0.3s ease-out; コメントアウト - JSで制御 */
  /* touch-action: pan-y; コメントアウト - JSで制御 */
  will-change: transform; /* 追加：GPU加速 */
}

.blogsp_card {
  /* width: calc(100vw - 60px); */
  min-width: 280px; /* 最小幅を設定 */
  max-width: 400px; /* 最大幅を設定 */
  margin-bottom: 24px;
  /* background: white; */
  border-radius: 6px;
  overflow: hidden;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
  flex-shrink: 0;
}

.blogsp_card:first-child {
  /* margin-left: 20px; */
}

@media (max-width: 320px) {
  .blogsp_card {
      /* width: calc(100vw - 60px); */
      min-width: 260px;
  }
  
  .blogsp_card:first-child {
      /* margin-left: 10px; */
  }
  
  .blogsp_container {
      /* padding-right: 10px; */
  }
}

.blogsp_card-image {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* デフォルト画像を削除 */
}

.blogsp_card-content {
  padding: 6px;
  /* height: 140px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blogsp_card-text {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  /* margin-bottom: 16px; */
  font-weight: 600;
  text-align: left;
}

.blogsp_card-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.blogsp_card-date {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

.blogsp_view-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.blogsp_view-button:hover {
  background-color: #f5f5f5;
}

.blogsp_view-arrow {
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* カード別の画像設定（修正版） */
.blogsp_card:nth-child(1) .blogsp_card-image {
  background-image: url(../images/blog_thum.jpg);
}

.blogsp_card:nth-child(2) .blogsp_card-image {
  background-image: url(https://hogoland.net/blog/wp-content/uploads/2025/08/c81c00cad27aa757b313626c3c02094f.webp);
}

.blogsp_card:nth-child(3) .blogsp_card-image {
  background-image: url(https://hogoland.net/blog/wp-content/uploads/2025/04/bd2f182081d02014a7b1b046e1b716fc-1024x576.webp);
}

.blogsp_card:nth-child(4) .blogsp_card-image {
  background-image: url(https://hogoland.net/blog/wp-content/uploads/2025/04/2e14145733b1977fd200b1e0091aeafc-1024x576.webp);
}

.blogsp_card:nth-child(5) .blogsp_card-image {
  background-image: url(https://hogoland.net/blog/wp-content/uploads/2025/04/e1d4c4774a3bee28d4405653a057a743-1024x576.webp);
}

/* 必要最小限の追加CSS */
.blogsp_cards-wrapper.transitioning {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

}