body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #fff;
    color: #333;
  }

  li {
    list-style-type: none;
  }

  .sp-only {
    display: none;
  }

  @media (max-width: 768px) {
    .sp-only {
        display: block;
    }
  }
  
  .hero-new {
    background-color: #f0faff;
    padding: 60px 20px;
  }
  
  .hero-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
  }
  
  .hero-text {
    flex: 1 1 400px;
  }
  
  .hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .hero-text .sky {
    color: #87ceeb;
    font-weight: bold;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .cta-main {
    display: inline-block;
    background-color: #87ceeb;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: background 0.3s;
    font-weight: bold;
  }
  
  .cta-main:hover {
    background-color: #5cb3dd;
  }
  
  .hero-image {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .hero-image img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #87ceeb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  /* モバイル対応 */
  @media (max-width: 768px) {

    .hero-new {
        padding: 30px 20px 50px;
    }

    .hero-inner {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text h1 {
      font-size: 1.8rem;
    }
  
    .hero-image img {
      width: 200px;
      height: 200px;
    }

    .hero-text {
        flex: 1 1 345px;
    }

    .hero-image {
        flex: 1 1 200px;
        text-align: center;
    }    
  }
  


/* =========================================
   consult-box セクション用スタイル（これだけで完結／他と衝突なし）
========================================= */

/* ---------- consult-box 全体 ---------- */
.consult-box {
    margin: 60px auto;
    padding: 0 1rem;
    max-width: 1000px;
    font-family: "Noto Sans JP", sans-serif;
    color: #222;
  }
  
  /* ---------- 見出しストライプ ---------- */
  .consult-box .consult-title {
    --stripe-h: 12px; /* この中だけで使う内部変数 */
    position: relative;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  .consult-box .consult-title::before {
    content: "";
    position: absolute;
    inset: calc(50% - var(--stripe-h)) 0 auto;
    height: var(--stripe-h);
    background-image: repeating-linear-gradient(
      135deg,
      #d7f1ff 0 10px,
      transparent 10px 20px
    );
    z-index: -1;
  }
  .consult-box .consult-title span {
    background: #ffffff;
    padding: 0 0.8rem;
  }
  
  /* ========================================
     ▼▼▼ consult-content の大胆リデザイン ▼▼▼
     グリッド×カード×グラデ＋クリップパス
  ======================================== */
  
  /* ----- グリッドレイアウト ----- */
  .consult-box .consult-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #f5fcff;
    padding: 0;       /* 枠不要なのでリセット */
    border: none;
    border-radius: 0;
  }
  
  /* ----- リストをカード化 ----- */
  .consult-box .consult-list {
    display: grid;
    gap: 1rem;
    padding: 1rem;
  }
  .consult-box .consult-list li {
    position: relative;
    padding: 1.5rem 1rem 1.2rem 1.6rem;
    background: #ffffff;
    border-left: 6px solid #87ceeb;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
  }
  .consult-box .consult-list li:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  .consult-box .consult-list li::before {
    content: "✓";
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #87ceeb;
    font-weight: bold;
  }
  
  /* ----- 画像ブロックにグラデ＋クリップ ----- */
  .consult-box .consult-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #87ceeb 0%, #d0f0ff 100%);
    padding: 1rem;
    border-radius: 12px;
  }
  .consult-box .consult-img img {
    width: 100%;
    max-width: 320px;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s;
  }
  .consult-box .consult-img img:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  /* ---------- モバイル時は縦並びに ---------- */
  @media (max-width: 767px) {
    .consult-box .consult-content {
      grid-template-columns: 1fr;
    }
    .consult-box .consult-img {
      margin-top: 1rem;
    }
    .consult-box .consult-list li {
      padding: 1.2rem 1rem 1.2rem 1.6rem;
    }
  }
  




  /* -------------------------------
   特徴セクション用スタイル
--------------------------------- */
.features-section {
    padding: 60px 20px;
    background-color: #f5fcff;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
  }
  
  .features-section .features-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .features-section .features-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .features-section .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .features-section .feature-card {
    background: #fff;
    border-top: 4px solid #87ceeb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  /* FontAwesome アイコンスタイル */
  .features-section .feature-icon {
    margin: 0 auto 16px;
    font-size: 2rem;
    color: #87ceeb;
    width: 2rem;  /* アイコンの幅を固定 */
    height: 2rem; /* アイコンの高さを固定 */
  }
  
  /* タイトル */
  .features-section .feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #222;
  }
  
  /* 説明文 */
  .features-section .feature-text {
    margin-top: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }
  
  /* モバイル対応：カラム数を１に */
  @media (max-width: 600px) {
    .features-section {
      padding: 40px 16px;
    }
    .features-section .features-heading {
      font-size: 1.6rem;
      margin-bottom: 24px;
    }
  }
  


  /* =========================
   services-section 用スタイル
   ※:root は使わず独自クラス配下に記述
========================= */
.services-section {
    padding: 60px 20px;
    background-color: #f5fcff;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
  }
  .services-section .services-inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .services-section .services-heading {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
  }
  /* PC: 2 列固定 */
  .services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  /* --- 各サービスカード --- */
  .services-section .service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  /* バッジ：文言＆アイコン変更 */
  .services-section .service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #87ceeb;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
  }
  .services-section .service-badge i {
    margin-right: 0.3rem;
    font-size: 0.85rem;
  }
  
  /* タイトル */
  .services-section .service-title {
    margin-top: 2.4rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    text-align: center;
  }
  
  /* 本文エリア：画像とテキストの順序を逆 */
  .services-section .service-body {
    display: flex;
    flex-direction: column;     /* 画像→テキストを縦積み */
    align-items: center;        /* 中央揃え */
    text-align: center;         /* 説明文も中央寄せに */
    gap: 1rem;                  /* 要素間の余白 */
  }
  
  /* 画像 */
  .services-section .service-img img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #87ceeb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s;
  }
  .services-section .service-img img:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  /* 説明文 */
  .services-section .service-info {
    flex: 1;
  }
  .services-section .service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.8rem;
  }
  
  /* 料金 */
  .services-section .service-price {
    font-size: 1rem;
    font-weight: bold;
    color: #87ceeb;
  }
  
  /* モバイル対応 */
  @media (max-width: 768px) {
    /* スマホは 1 列 */
    .services-section .services-grid {
      grid-template-columns: 1fr;
    }
    /* 縦並び */
    .services-section .service-body {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .services-section .service-img img {
      width: 125px;
      height: 125px;
    }
  }
  





  /* =========================
   流れセクション：タイムライン版
   ※:root は使わず .flowsection-alt 以下に閉じる
========================= */
.flowsection-alt {
    padding: 60px 20px;
    background-color: #eefaff;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
  }
  .flowsection-alt__heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
  }
  .flowsection-alt__heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #87ceeb;
    margin: 12px auto 0;
  }
  
  .flowsection-alt__timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  /* 横向きライン */
  .flowsection-alt__timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background-color: #87ceeb;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .flowsection-alt__item {
    position: relative;
    width: calc(100%/6);
    text-align: center;
    z-index: 2;
  }
  .flowsection-alt__circle {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background-color: #87ceeb;
    color: #fff;
    font-weight: bold;
    margin: 0 auto 12px;
  }
  .flowsection-alt__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .flowsection-alt__icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 8px;
    transition: transform 0.3s;
  }
  .flowsection-alt__icon img:hover {
    transform: scale(1.1);
  }
  .flowsection-alt__title {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
  }
  
  /* モバイル：縦向きタイムライン */
  @media (max-width: 767px) {
    .flowsection-alt__timeline {
      display: block;
      padding-left: 20px;
      padding-right: 20px;
    }
    .flowsection-alt__timeline::before {
      left: 20px;
      top: 5%;
      bottom: 5%;
      width: 4px;
      height: auto;
      transform: none;
    }
    .flowsection-alt__item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 40px;
      width: auto;
    }
    .flowsection-alt__circle {
      margin: 0;
      flex-shrink: 0;
    }
    .flowsection-alt__content {
      margin-left: 16px;
      align-items: flex-start;
      text-align: left;
    }
    .flowsection-alt__icon img {
      width: 120px;
      height: 120px;
    }
  }
  





  /* =========================================
   シンプルFAQセクション用スタイル
   (.faq-section 以下に閉じ込め)
========================================= */
.faq-section {
    padding: 60px 20px;
    background-color: #eef7fc;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
  }
  .faq-section__inner {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-section__heading {
    font-size: 1.8rem;
    font-weight: bold;
    border-bottom: 4px solid #87ceeb;
    padding-bottom: 0.5em;
    margin-bottom: 2rem;
    text-align: left;
  }
  
  /* リスト全体 */
  .faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* 質問部分 */
  .faq-section__header {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-left: 4px solid #87ceeb;
    padding: 12px 16px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }
  .faq-section__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #87ceeb;
    color: #ffffff;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
  }
  .faq-section__question-text {
    font-size: 1rem;
    color: #222;
    line-height: 1.4;
  }
  
  /* 回答部分 */
  .faq-section__answer {
    display: flex;
    align-items: flex-start;
    background: #f0fbff;
    padding: 12px 16px;
    border-radius: 4px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }
  .faq-section__answer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }
  
  /* モバイル対応 */
  @media (max-width: 600px) {
    .faq-section__heading {
      font-size: 1.6rem;
      text-align: center;
    }
    .faq-section__header,
    .faq-section__answer {
      padding: 10px 14px;
    }
    .faq-section__icon {
      width: 28px;
      height: 28px;
      margin-right: 8px;
    }
  }
  


  

  /* =========================
   greeting-section 用スタイル
   ========================= */
.greeting-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
  }
  .greeting-section__inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .greeting-section__heading {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #87ceeb;
    margin-bottom: 40px;
  }
  .greeting-section__content {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .greeting-section__image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #87ceeb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .greeting-section__text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    text-align: left;
  }
  .greeting-section__name {
    font-weight: bold;
    margin-top: 1rem;
  }
  /* モバイル対応 */
  @media (max-width: 768px) {
    .greeting-section__content {
      flex-direction: column;
      text-align: center;
    }
    .greeting-section__image img {
      width: 180px;
      height: 180px;
    }
  }




  /* ==================================================
   別デザイン版 お問い合わせバナー
   すべて .contact-banner-alt（aタグ）配下に閉じ込め
================================================== */
/* バナー外枠（aタグ） */
.contact-banner-alt {
    display: block; /* aタグをブロック化して section 相当のふるまいに */
    max-width: 700px;
    background: linear-gradient(135deg, #87ceeb 0%, #d0f4fe 100%);
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none; /* リンク下線を除去 */
    cursor: pointer;       /* カーソルをリンクっぽく */
  }
  
  /* 下部をホワイトで斜めカット */
  .contact-banner-alt::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 60px;
    background-color: #fff;
    transform: translateY(100%) rotate(-2deg);
  }
  
  /* 内部レイアウト */
  .contact-banner-alt__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    padding: 40px 20px;
  }
  
  /* 電話アイコン */
  .contact-banner-alt__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #87ceeb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* キャッチコピー部分 */
  .contact-banner-alt__text {
    flex: 1;
    margin: 0 20px;
  }
  .contact-banner-alt__title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 8px;
  }
  .contact-banner-alt__subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }
  
  /* CTAボタン風パーツ（div） */
  .contact-banner-alt__cta {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 12px 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  .contact-banner-alt__cta-label {
    font-size: 0.8rem;
    color: #87ceeb;
    margin-right: 8px;
    font-weight: bold;
  }
  .contact-banner-alt__cta-number {
    font-size: 1.2rem;
    color: #87ceeb;
    font-weight: bold;
  }
  
  /* ホバー時：CTAだけポヨッと */
  .contact-banner-alt:hover .contact-banner-alt__cta {
    transform: translateY(-3px);
  }
  
  /* レスポンシブ */
  @media (max-width: 768px) {
    .contact-banner-alt__inner {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
    .contact-banner-alt__text {
      margin: 0;
    }
  }
  