/* ==========================================================================
   ヒーローセクション改変：toppage2026.css
   ※.is-top クラスを持つ要素内でのみ有効
   ========================================================================== */

.frontpage .ab .mainHeroSection {
  display: flex;
  flex-direction: column;

}


/* 親要素：背景を白に指定 */
.frontpage .mainHeroSection1 {
    display: flex;
    position: relative;
    min-height: 500px;
    background-color: #fff;
    overflow: hidden;
}

/* 右側の画像：背景として配置 */
.frontpage .ab .heroBackgroundImage {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%; /* box4(70%)と重なるように設定 */
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* 左側のテキストエリア：画像の上に大きく被せる */
.frontpage .ab .box4 {
    position: relative;
    z-index: 2;
    width: 70%; /* 70%まで広げる */
    /* 80%の位置までしっかり緑を維持し、残りの20%で透明にする */
    background: linear-gradient(
        to right, 
        rgb(27, 147, 93) 0%, 
        rgb(27, 147, 93) 80%, 
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px 60px 80px;
}

/* スマホ対応：画像を上に、テキストを下に */
@media (max-width: 991px) {
    .frontpage .mainHeroSection1 {
        flex-direction: column;
    }
    .frontpage .ab .heroBackgroundImage {
        position: relative;
        order: 1; /* 画像を上に */
        width: 100%;
        height: 300px;
    }
    .frontpage .ab .box4 {
        order: 2; /* テキストを下に */
        width: 100%;
        margin-top: -40px; /* 画像に被せる */
        background: rgb(27, 147, 93); /* スマホは単色で視認性確保 */
        padding: 40px 20px;
        border-radius: 30px 30px 0 0;
    }
}

/* --- 追加：スマホ用微調整 --- */
@media (max-width: 479px) {
    .frontpage .ab .box4 {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   バッジ・タイトル改修：toppage2026.css
   ※.is-top クラスを持つ要素内でのみ有効
   ========================================================================== */

/* 特大画面での幅調整 */
@media (min-width: 1920px) and (max-width: 2999px) {
    .frontpage .ab .wrapper25 {
        width: 100%;
    }
}

/* 横並びにするための設定 */
.frontpage .wrapper25.flex_row_top {
    display: flex;             /* 横並びにする */
    flex-direction: row;      /* 縦並び(column)から横並びに変更 */
    justify-content: center;   /* 中央寄せ */
    align-items: center;       /* 上下中央 */
    gap: 10px;                 /* 要素間のすきま */
    width: 100%;               /* 全体幅を確保 */
}

/* 3つのボックスを均等な見た目にする */
.frontpage .header_badge {
    flex: 1;                   /* 3つの幅を均等に広げる */
    text-align: center;        /* 文字を中央に */
    background: rgba(255,255,255,0.2); /* 背景を少し明るく（任意） */
    padding: 5px 10px;         /* 内側の余白 */
    border-radius: 4px;        /* 角を少し丸く */
    white-space: nowrap;       /* 改行させない */
}

.frontpage .header_badge p {
    margin: 0;
    font-size: 17px;           /* 文字サイズ調整 */
    font-weight: bold;
}

/* スマホでは縦並びに戻す、もしくは幅を調整する場合 */
@media (max-width: 479px) {
    .frontpage .wrapper25.flex_row_top {
        gap: 5px;              /* スマホでは隙間を狭く */
    }
    .frontpage .header_badge p {
        font-size: 11px;       /* スマホで文字を小さく */
    }
}

/* ヒーロータイトルの幅指定 */
.frontpage .ab .heroTitle {
    display: flex;
    align-items: center;
    min-width: 0px;
    width: 600px;
    font: 700 40px/1.39 "Noto Sans JP", Helvetica, Arial, serif;
    color: rgb(255, 255, 255);
}

/* ==========================================================================
   データハイライト・選ばれる理由セクション：toppage2026.css
   ※.is-top クラスを持つ要素内でのみ有効
   ========================================================================== */

/* 背景画像の幅調整（特大画面） */
@media (min-width: 1920px) {
  .frontpage .ab .heroBackgroundImage {
    width: 100%;
  }
}

/* --- 1. データハイライト (s-dataHighlights) --- */
.frontpage .dataHighlightsTitle {
  font-size: 25px;
}

.frontpage .s-dataHighlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
  background-color: rgb(248, 248, 248);
  padding: 60px 40px;
  overflow: hidden;
  width: 100%;
}

.frontpage .w-dataHighlights {
  max-width: 800px;
  margin: 0 auto;
}

/* スマホ用スタイル */
@media (max-width: 991px) {
  .frontpage .ab .s-dataHighlights {
    width: 95%;
    padding: 40px 20px;
    gap: 30px 0;
    border-radius: 10px;
  }
}

@media (max-width: 479px) {
  .frontpage .ab .s-dataHighlights {
    width: 100%;
    border-radius: 0;
    padding: 30px 15px;
  }
}

/* リスト全体のボックス */
.frontpage .dataHighlightsList {
  list-style: none;
  padding: 30px 40px;
  margin: 30px auto;
  max-width: 800px;
  background-color: #fdfdfd;
  border: 2px dashed #22b573;
  border-radius: 12px;
}

.frontpage .dataHighlightsList li {
  font-size: 19px;
  line-height: 1.8;
  color: #333;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 15px;
}

.frontpage .dataHighlightsList li:last-child {
  margin-bottom: 0;
}

/* 箇条書きドットの自作 */
.frontpage .dataHighlightsList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: #22b573;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .frontpage .dataHighlightsList {
    padding: 20px 25px;
    margin: 20px 10px;
  }
  .frontpage .dataHighlightsList li {
    font-size: 14px;
  }
}

/* --- 2. ボタン・テキストパーツ --- */
.frontpage .btn_txt {
  display: flex;
  align-items: center;
  min-width: 0px;
  font: 500 12px / 1.2 "Noto Sans JP", Helvetica, Arial, serif;
  color: #fff;
  letter-spacing: 0.99px;
  text-align: center;
}

.frontpage .DL_btn_wrap .btn_txt {
  text-align: center;
}

.frontpage .btn_orange_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  border-radius: 10px;
  min-width: 0px;
  height: 40px;
  background-color: rgb(251, 115, 2);
  padding: 0px 20px;
  overflow: hidden;
}

.frontpage .btn_green_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  border-radius: 10px;
  min-width: 0px;
  height: 40px;
  background-color: rgb(34 181 115);
  padding: 0px 20px;
  overflow: hidden;
}

/* --- 3. アバウト・要約セクション --- */
.frontpage .ab .aboutUsSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px 0px;
  background-color: rgb(248, 248, 248);
  padding: 30px 40px; /* AB_new.cssの値を採用 */
  overflow: hidden;
}

.frontpage .reasonsSummaryTitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #22b573;
}

.frontpage .reasonsSummary_container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.frontpage .s-reasonsSummary {
  display: flex;
  justify-content: center;
  background-color: rgb(223 223 223);
  padding: 30px 40px;
  overflow: hidden;
  width: 100%;
}

.frontpage .w-reasonsSummary {
  width: 800px;
  margin: 0 auto;
}

.frontpage .reasonsSummary_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 20px 10px;
  border-radius: 8px;
}

.frontpage .reasonsSummary_item img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}

.frontpage .reasonsSummary_item p {
  font-weight: bold;
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .frontpage .reasonsSummary_container {
    flex-wrap: wrap;
  }
  .is-top .reasonsSummary_item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 479px) {
  .frontpage .reasonsSummary_item {
    flex: 0 0 100%;
  }
}

.frontpage .w-dataHighlights {
width: 100%;
}

/* ==========================================================================
   追加セクション群：toppage2026.css
   ========================================================================== */

/* --- 特徴・専門性 (s-featureSpecialty) --- */
.frontpage .featureSpecialty_container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    max-width: 1080px;
    margin: 40px auto;
    padding: 30px;
}

.frontpage .featureSpecialty_item.icon_item {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frontpage .featureSpecialty_item.icon_item img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.frontpage .featureSpecialty_item.text_item {
    flex: 1;
}

.frontpage .sub_txt {
    color: #22b573;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.frontpage .featureSpecialtyTitle {
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: bold;
    line-height: 1.4;
    text-align: left;
}

.frontpage .main_txt {
    font-size: 15px;
    line-height: 1.8;
}

.frontpage .featureSpecialty_item.badge_item {
    flex: 0 0 110px;
    height: 110px;
    background-color: #22b573;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    align-self: flex-end;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .frontpage .featureSpecialtyTitle {
        font-size: 20px;
    }
    .frontpage .featureSpecialty_container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }
    .frontpage .featureSpecialty_item.icon_item {
        flex: none;
        width: 150px;
        margin-bottom: 10px;
    }
    .frontpage .featureSpecialty_item.text_item {
        flex: none;
        width: 100%;
        order: 1;
    }
    .frontpage .featureSpecialty_item.badge_item {
        order: 2;
        align-self: center;
        margin-top: 10px;
        flex: none;
        width: 110px;
        height: 110px;
    }
}

/* --- エビデンスデータ (s-evidenceData) --- */
.frontpage .s-evidenceData {
    background-color: #fff;
    padding: 40px 20px;
    width: 100%;
}

.frontpage .evidenceDataTitle {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #12100e;
    margin-bottom: 50px;
}

.frontpage .evidenceData_container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

.frontpage .evidenceData_item {
    flex: 1;
    background: #fff;
    padding: 30px 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.frontpage .evidenceData_item:hover {
    transform: translateY(-5px);
}

.frontpage .evidenceData_subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.frontpage .evidenceData_main {
    font-size: 48px;
    font-weight: 800;
    color: #fb7302;
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.frontpage .evidenceData_main .small_txt {
    font-size: 16px;
    font-weight: bold;
    margin-left: 2px;
}

.frontpage .evidenceData_desc {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .frontpage .evidenceData_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .frontpage .evidenceData_main {
        font-size: 36px;
    }
}

@media (max-width: 479px) {
    .frontpage .evidenceData_container {
        grid-template-columns: 1fr;
    }
}

/* --- 安心ポイント (s-safetyPoints) --- */
.frontpage .s-safetyPoints {
    background-color: #f8f8f8;
    padding: 80px 20px;
}

.frontpage .safetyPointsTitle {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #000;
}

.frontpage .safetyPoints_container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.frontpage .safetyPoints_item {
    flex: 1;
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.frontpage .safetyPoints_subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #22b573;
    margin-bottom: 15px;
}

.frontpage .safetyPoints_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

@media (max-width: 991px) {
    .frontpage .safetyPoints_container {
        flex-direction: column;
    }
}

/* --- 解決セクション (s-userWorries) --- */
.frontpage .s-userWorries {
    background-color: #f0f0f0;
    padding: 80px 20px;
}

.frontpage .userWorries_container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 40px;
}

.frontpage .userWorries_item {
    flex: 1;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.frontpage .userWorries_item.Worries {
    background-color: #e0e0e0;
}

.frontpage .userWorries_item.Worries .userWorries_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 36px;
    height: 36px;
    background-image: var(--icon-url);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.frontpage .userWorries_item.Worries .userWorries_list li {
    padding-left: 45px !important;
}

.frontpage .userWorries_item.Solutions {
    background-color: #ffffff;
    border: 2px solid #22b573;
}

.frontpage .userWorries_footer {
    margin-top: 25px;
    text-align: center;
    font-weight: bold;
    color: #22b573;
}

@media (max-width: 991px) {
    .frontpage .userWorries_container {
        flex-direction: column;
    }
}

/* --- お客様の声 (s-testimonials) --- */
.frontpage .s-testimonials {
    background-color: #f0f0f0;
    padding: 80px 20px;
}

.frontpage .testimonials_bubble {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 30px;
    min-height: 200px;
}

.frontpage .testimonials_bubble::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 40px;
    border-style: solid;
    border-width: 20px 15px 0 15px;
    border-color: #ffffff transparent transparent transparent;
}

/* --- 調査ケース (s-inspection-cases) --- */
.frontpage .s-inspection-cases {
    padding: 80px 0;
    background-color: #fff;
}

.frontpage .inspection-casesheader {
    background: linear-gradient(180deg, #f2f2f2 0%, #ffffff 100%);
    padding: 60px 30px;
    margin-bottom: 10px;
}

.frontpage .inspection-cases_container_owner {
    margin-top: 50px;
    padding: 60px 40px;
    background-color: #f8f8f8;
    border-radius: 20px;
}

.frontpage .inspection-cases_container_owner .inspection-cases_icon {
    width: 80px;
    height: 80px;
    background-color: #009c63;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

/* --- 共通・その他 --- */
.frontpage .green_bg_box {
    background-color: #22b573;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.8;
}

.frontpage .displaynone {
    display: none;
}

.frontpage .text_annotation {
    font-size: 12px;
    color: #666;
}

/* --- コンテナ全体の調整 --- */
.featureSpecialty_container {
    display: flex;
    align-items: stretch;    /* PCでは高さを揃える */
    justify-content: space-between;
    gap: 40px;
    max-width: 1080px;
    margin: 40px auto;
    padding: 30px;
}

/* --- 写真エリア --- */
.featureSpecialty_item.icon_item {
    flex: 0 0 200px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

.featureSpecialty_item.icon_item img {
    width: 100%;
    height: auto;
    max-width: 200px; /* 画像が大きくなりすぎないよう制限 */
}

/* --- テキストエリア --- */
.featureSpecialty_item.text_item {
    flex: 1;
}

.sub_txt {
    color: #22b573;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.featureSpecialtyTitle {
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: bold;
    line-height: 1.4;
    text-align: left;
}

.main_txt {
    font-size: 15px;
    line-height: 1.8;
}

/* --- 右側：丸バッジ --- */
.featureSpecialty_item.badge_item {
    flex: 0 0 110px; /* 少し大きく調整 */
    height: 110px;
    background-color: #22b573;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    align-self: flex-end;   /* PCでは右下に配置 */
    margin-bottom: 10px;
}

/* ==========================================================================
   スマホ対応 (991px以下)
   ========================================================================== */
@media (max-width: 991px) {
    /* 親コンテナの stretch を解除 */
    .featureSpecialty_container {
        flex-direction: column;
        align-items: center; /* これで縦方向の引き伸ばしが止まります */
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .featureSpecialty_item.icon_item {
        flex: none;
        width: 150px;
        margin-bottom: 10px;
    }

    .featureSpecialty_item.text_item {
        flex: none;
        width: 100%;
        order: 1;
    }

    .featureSpecialty_item.badge_item {
        order: 2;
        align-self: center;
        margin-top: 10px;
        
        /* 縦長崩れを防ぐための修正 */
        flex: none;             /* PCの flex: 0 0 110px を解除 */
        width: 110px;           /* 横幅を固定 */
        height: 110px;          /* 高さを固定 */
        display: flex;          /* 中の文字を中央に置くために必要 */
        align-items: center;
        justify-content: center;
    }
}

/* --- セクション全体 --- */
.s-evidenceData {
    background-color: #fff;
    padding: 40px 20px;
    width: 100%;
}

.w-evidenceData {
    max-width: 1080px;
    margin: 0 auto;
}

/* --- タイトル --- */
.evidenceDataTitle {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #12100e;
    margin-bottom: 50px;
}

/* --- カード並びのコンテナ --- */
.evidenceData_container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* --- 各カード（項目） --- */
.evidenceData_item {
    flex: 1; /* 4つ均等に広がる */
    background: #f8f8f8;
    padding: 30px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.evidenceData_item:hover {
    transform: translateY(-5px); /* ホバー時に少し浮く */
}

/* --- アイコン部分 --- */
.evidenceData_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.evidenceData_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- テキスト --- */
.evidenceData_item p {
    font-size: 16px;
    font-weight: bold;
    color: #12100e;
    margin: 0;
    line-height: 1.4;
}

/* --- スマホ対応 (991px以下) --- */
@media (max-width: 991px) {
    .evidenceData_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2列2行にする */
        gap: 15px;
    }
    .evidenceDataTitle {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* --- 小さいスマホ (479px以下) --- */
@media (max-width: 479px) {
    .evidenceData_container {
        grid-template-columns: 1fr; /* 1列にする */
    }
    .evidenceData_item {
        padding: 20px;
    }
}

/* --- 親コンテナ（4つ横並び） --- */
.evidenceData_container {
    display: flex;
    justify-content: space-between;
    gap: 15px; /* カード間の隙間 */
    margin: 40px 0;
}

/* --- 各カードのスタイル --- */
.evidenceData_item {
    flex: 1; /* 4つ均等な幅にする */
    background: #fff;
    padding: 30px 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee; /* 薄い枠線 */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* --- サブタイトル（項目名） --- */
p.evidenceData_subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

/* --- メインの数字（大きなオレンジ文字） --- */
p.evidenceData_main {
    font-size: 48px;        /* 文字サイズを大きく */
    font-weight: 800;       /* 太字 */
    color: #fb7302;         /* オレンジ色 */
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif; /* 数字が綺麗に見えるフォント */
}

/* 単位などの小さな文字 */
.evidenceData_main .small_txt {
    font-size: 16px;
    font-weight: bold;
    margin-left: 2px;
}

/* --- 下の説明文 --- */
.evidenceData_desc {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* --- 下部の緑背景エリア --- */
.green_bg_box {
    background-color: #22b573;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.8;
}

/* --- スマホ対応 --- */
@media (max-width: 991px) {
    .evidenceData_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2x2に折り返し */
    }
    .evidenceData_main {
        font-size: 36px; /* スマホでは少し小さく */
    }
}

@media (max-width: 575px) {
    .evidenceData_container {
        grid-template-columns: 1fr; /* 1列に */
    }
}

/* --- セクション全体 --- */
.s-safetyPoints {
    background-color: #f8f8f8; /* 以前のデータセクションと同じ薄いグレー */
    padding: 80px 20px;
    width: 100%;
}

.w-safetyPoints {
    max-width: 1080px;
    margin: 0 auto;
}

.safetyPointsTitle {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #000;
}

/* --- 横並び設定 --- */
.safetyPoints_container {
    display: flex;
    justify-content: space-between;
    gap: 30px; /* 項目間の距離 */
    margin-bottom: 50px;
}

/* --- 各カード --- */
.safetyPoints_item {
    flex: 1;
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* アイコン */
.safetyPoints_icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safetyPoints_icon img {
    width: 100%;
    height: auto;
}

/* サブタイトル（安心ポイント） */
.safetyPoints_subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #22b573; /* 緑 */
    margin-bottom: 15px;
    line-height: 1.4;
}

/* 説明文 */
.safetyPoints_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: left; /* 長文なので左寄せが読みやすい */
}

/* --- 下部の緑背景 --- */
.s-safetyPoints .green_bg_box {
    background-color: #22b573;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.8;
}

/* --- スマホ対応 --- */
@media (max-width: 991px) {
    .safetyPoints_container {
        flex-direction: column;
        gap: 20px;
    }
    .safetyPointsTitle {
        font-size: 22px;
    }
}

.DL_btn_wrap {
    width: 800px;
}
/* --- スマホ対応 --- */
@media (max-width: 991px) {
    .DL_btn_wrap {
    max-width: 100%;
}
}

/* --- セクション全体：背景グリーン --- */
.s-ctaAction {
    background-color: #22b573; /* コーポレートカラーの緑 */
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.w-ctaAction {
    max-width: 1080px;
    margin: 0 auto;
}

.ctaActionTitle {
    text-align: left;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.ctaActionSub {
    text-align: left;
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- ボタンコンテナ（横並び） --- */
.ctaAction_container {
    display: flex;
    justify-content: right;
    height: 80px;
    gap: 20px;
}

.ctaAction_item {
    max-width: 480px; /* ボタンが広がりすぎないように制限 */
}

/* --- ボタン共通スタイル --- */
.ctaBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 50px; /* 丸みのあるボタン */
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.ctaBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* WEBボタン（オレンジ） */
.ctaBtn--web {
    background-color: #fb7302;
    color: #fff;
}

/* 電話ボタン（白） */
.ctaBtn--tel {
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* アイコンサイズ */
.ctaAction_img {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

/* ボタン内のテキスト調整 */
.ctaBtn_text {
    text-align: left;
}

.ctaActionInfo {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.ctaActionHours {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.ctaBtn--tel .ctaActionInfo {
    font-size: 26px; /* 電話番号は大きく */
}

/* --- スマホ対応 --- */
@media (max-width: 767px) {
    .ctaAction_container {
        flex-direction: column;
        align-items: center;
    }
    .ctaAction_item {
        width: 100%;
    }
    .ctaActionTitle {
        font-size: 22px;
    }
    .ctaBtn {
        padding: 15px;
    }
    .ctaActionSub {
    text-align: left;
    font-size: 19px;
}
.s-ctaAction {
    overflow: hidden;
    padding: 20px 20px 116px 20px;
}
}
/* --- セクション全体：薄いグレー背景 --- */
.s-userWorries {
    background-color: #f0f0f0; /* 薄いグレー */
    padding: 80px 20px;
}

.w-userWorries {
    max-width: 1080px;
    margin: 0 auto;
}

.userWorriesTitle {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000;
}

/* --- コンテナ（横並び） --- */
.userWorries_container {
    display: flex;
    gap: 20px;
    align-items: stretch; /* 高さを揃える */
    margin-bottom: 40px;
}

.userWorries_item {
    flex: 1;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.userWorries_item .userWorries_inner_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.4;
    text-align: center;
}
.userWorries_item.Worries .userWorries_inner_title {
    margin-bottom: 50px;
}
/* --- リスト共通 --- */
.userWorries_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.userWorries_list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 15px;
}

/* --- 左側：Worries（グレー背景 / 〇） --- */
.userWorries_item.Worries {
    background-color: #e0e0e0; /* グレー */
}
.userWorries_item.Worries li{
  margin: 25px 10px;
}
ul.userWorries_list img {
    width: 25px;
}
.userWorries_item.Worries .userWorries_list li::before {
    content: ""; /* 文字は出さず、器（擬似要素）だけ作る */
    position: absolute;
    left: 0;
    top: 0.2em; /* 文字の高さに合わせて微調整 */
    
    /* ここでサイズを自由に変更！ */
    width: 36px;  
    height: 36px;

    /* 変数で画像を表示し、サイズを枠に合わせる */
    background-image: var(--icon-url);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* もし左側に余白が残ってしまう場合は、li自体のpaddingを0にします */
.userWorries_item.Worries .userWorries_list li {
    padding-left: 45px !important;
}

/* --- 右側：Solutions（白背景 / 緑の✓） --- */
.userWorries_item.Solutions {
    background-color: #ffffff; /* 白 */
    border: 2px solid #22b573;
}

.userWorries_item.Solutions .userWorries_inner_title {
    color: #22b573;
}

.userWorries_item.Solutions .userWorries_list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22b573;
    font-weight: bold;
    font-size: 18px;
}

/* --- 補足テキスト --- */
.small_txt {
    font-size: 13px;
    color: #666;
}

.userWorries_footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
    text-align: center;
    font-weight: bold;
    color: #22b573;
}

/* --- 下部 緑背景 --- */
.s-userWorries .green_bg_box {
    background-color: #22b573;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.8;
}

/* --- スマホ対応 --- */
@media (max-width: 991px) {
    .userWorries_container {
        flex-direction: column;
    }
    .userWorries_item {
        padding: 30px 20px;
    }
}
/* --- セクション基本 --- */
.s-reasonsMain {
    padding: 80px 20px;
    background-color: #fff;
    width: 100%;
}

.w-reasonsMain {
    max-width: 1080px;
    margin: 0 auto;
}

.reasonsMainTitle {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #000;
}

/* --- コンテナ（横並び） --- */
.reasonsMain_container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px; /* 段の間の隙間 */
}

/* 最後の段の下マージンは不要 */
.reasonsMain_container:last-child {
    margin-bottom: 0;
}

/* --- 各アイテム（カード型） --- */
.reasonsMain_item {
    flex: 1; /* 3つを均等な幅にする */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background-color: #fdfdfd;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.reasonsMain_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* アイコン */
.reasonsMain_icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reasonsMain_icon img {
    width: 100%;
    height: auto;
}

/* 小見出し */
.reasonsMain_subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #22b573;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* 説明文 */
.reasonsMain_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* --- スマホ対応 --- */
@media (max-width: 991px) {
    .reasonsMain_container {
        flex-direction: column; /* 縦並びにする */
        gap: 20px;
        margin-bottom: 20px;
    }
    .reasonsMainTitle {
        font-size: 24px;
    }
}

/* --- セクション背景 --- */
.s-testimonials {
    background-color: #f0f0f0; /* 全体背景は少しグレー */
    padding: 80px 20px;
}

.w-testimonials {
    max-width: 1080px;
    margin: 0 auto;
}

.testimonialsTitle {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 50px;
}

/* --- コンテナ（3つ横並び） --- */
.testimonials_container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.testimonials_item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* --- 吹き出し本体 --- */
.testimonials_bubble {
    background-color: #ffffff; /* 白いバブル */
    padding: 30px 20px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 30px; /* アイコンユニットとの距離 */
    min-height: 200px; /* 高さを揃える（中身に合わせて調整） */
}

/* 吹き出しの三角部分 */
.testimonials_bubble::after {
    content: "";
    position: absolute;
    bottom: -20px; /* バブルの底から出す */
    left: 40px;    /* アイコンの位置に合わせる */
    border-style: solid;
    border-width: 20px 15px 0 15px;
    border-color: #ffffff transparent transparent transparent;
}

.testimonials_subtitle {
    color: #22b573;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
}

.testimonials_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* --- アイコンと名前のユニット --- */
.testimonials_icon_unit {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.testimonials_icon {
    width: 70px;
    height: 70px;
    background-color: #ccc; /* 画像がない場合のダミー色 */
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonials_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials_name {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
    color: #000;
}

/* --- スマホ対応 --- */
@media (max-width: 991px) {
    .testimonials_container {
        flex-direction: column;
        gap: 40px;
    }
    .testimonials_bubble {
        min-height: auto;
    }
}

/* --- セクション全体 --- */
.s-priceTable {
    padding: 80px 0;
    background-color: #fff;
    width: 100%;
}

.w-priceTable {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.priceTableTitle {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 50px;
}

/* --- レイアウト：横並びコンテナ --- */
.priceTable_container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 40px;
}

/* --- 左側：強調ブロック --- */
.priceTable_highlight {
    flex: 1;
    display: flex;
}

.priceTable_highlightBox {
    width: 100%;
    /* border-styleをdoubleに変更 */
    border: 6px double #fb7302; 
    padding: 26px 16px; /* 枠が太くなった分、内側の余白を微調整 */
    background-color: #fff;
    /* 軽いシャドウを加えるとさらに浮き上がって見えます */
    box-shadow: 0 4px 15px rgba(251, 115, 2, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    text-align: center;
}

.priceTable_highlightIcon {
    width: 65px;
    margin-bottom: 15px;
}

.priceTable_highlightBox .priceTable_highlightBox_title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* --- 右側：プランエリア --- */
.priceTable_plans {
    flex: 0 0 620px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.priceTable_card {
    border: 1px solid #22b573; /* メイングリーン */
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.priceTable_header {
    background-color: #22b573;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.priceTable_header .ctaAction_img {
    width: 45px; /* カード内のアイコンサイズ */
    height: auto;
}

.priceTable_header .priceTable_header_title {
    color: #fff;
    font-size: 18px;
    margin: 0;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.priceTable_header .priceTable_header_title span {
    font-size: 13px;
    font-weight: normal;
    opacity: 0.9;
}

.priceTable_body {
    padding: 25px 30px;
    text-align: center;
}

.priceTable_text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

/* --- 価格表示 --- */
.priceTable_orange {
    color: #fb7302;
    font-weight: 800;
    line-height: 1.2;
}

p.priceTable_orange {
    font-size: 40px;
}

.priceTable_orange.big {
    font-size: 64px;
}

.priceTable_orange span {
    font-size: 20px;
    margin-left: 4px;
}

/* 下部リンク */
.priceTable_footerLink {
    text-align: center;
    margin-top: 30px;
}

.priceTable_footerLink a {
    color: #22b573;
    font-weight: bold;
    text-decoration: underline;
}

/* --- スマホ対応 (991px以下) --- */
@media (max-width: 991px) {
    .priceTable_container {
        flex-direction: column;
    }
    
    .priceTable_plans {
        width: 100%;
        flex: none;
    }

    .priceTable_header h3 {
        flex-direction: column;
        gap: 5px;
    }

    .priceTable_orange.big {
        font-size: 52px;
    }
    
    .priceTable_highlightBox {
        padding: 40px 20px;
    }
}

/* --- お取引の流れ全体セクション --- */
.s-workflow {
    background-color: #f0f0f0;
    padding: 80px 20px;
    width: 100%;
}

.w-workflow {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.workflowTitle {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 60px;
}

/* --- コンテナ設定 --- */
.workflow_container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 50px;
}

.workflow_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- アイコンエリア --- */
.workflow_icon_wrap {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.workflow_icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow_icon img {
    width: 100%;
    height: auto;
}

/* PC：特大矢印（→）を表示 */
.workflow_item:not(:last-child) .workflow_icon_wrap::after {
    content: "→";
    position: absolute;
    right: -25%; 
    top: 50%;
    transform: translateY(-50%);
    font-size: 52px; 
    color: #22b573;
    font-weight: 900;
}

/* --- テキストエリア --- */
.workflow_content {
    text-align: left;
    width: 100%;
    padding: 0 10px;
}

.workflow_subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.workflow_main {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
}

.workflow_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    text-align: left;
}

/* --- 下部リンク --- */
.workflow_footer a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

/* --- スマホ対応 (矢印なし) --- */
@media (max-width: 991px) {
    .workflow_container {
        flex-direction: column;
        gap: 60px;
    }

    /* 矢印（↓）の表示を消去 */
    .workflow_item:not(:last-child) .workflow_icon_wrap::after {
        display: none; /* ←ここを追加して非表示にしました */
    }

    .workflow_content {
        text-align: center;
    }
    .workflow_main {
    height: auto;
}
}

/* --- ファーストビュー全体 --- */
.s-main {
    position: relative;
    width: 100%;
    min-height: 650px;
    background-color: #22b573;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.header_badge {
    max-width: 200px;
}
/* 背景画像：右端に固定 */
.w-main-Right {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.mainBackgroundImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* 左側コンテンツ：画像の上にグラデーションで被せる */
.w-main-Left {
    position: relative;
    z-index: 10;
    flex: 0 0 55%;
    padding: 80px 400px 80px 10%;
    color: #fff;
    background: linear-gradient(
        90deg, 
        rgb(25 131 84) 0%, 
        rgba(34, 181, 115, 1) 75%, 
        rgba(34, 181, 115, 0) 100%
    );
}

/* タイトル */
.frontpage .mainTitle {
    display: flex;
    align-items: center;
    min-width: 0px;
    color: rgb(255, 255, 255);
    font-size: 37px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* -----------------------------------------
   ★回収・追加：バッジ（アイコン左・文字右）
-------------------------------------------- */
.main_flex_row_top {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.header_badge {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border: 1.5px solid #c1c1c1;
    border-radius: 20px;
    background-color: rgb(34 165 107);
}

.header_badge img {
    width: 34px;
    height: auto;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* アイコンを白抜きに */
}

.header_badge p {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}
p.mainDescription.bg_white {
    margin-bottom: 25px;
}
/* -----------------------------------------
   ★回収・追加：白背景のメッセージボックス
-------------------------------------------- */
.mainDescription.white_box {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
    display: inline-block;
    max-width: 90%;
    font-weight: bold;
    line-height: 1.6;
}

/* -----------------------------------------
   ★回収・追加：CTAボタン（オレンジ）
-------------------------------------------- */
.ctaBtn--web {
    display: inline-flex;
    align-items: center;
    background-color: #fb7302;
    padding: 10px 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.ctaBtn--tel {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
}
.ctaAction_img {
    width: 45px;
    margin-right: 12px;
}

.ctaActionInfo {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.ctaActionHours {
    font-size: 12px;
    margin-left: 5px;
}

/* ==========================================================================
   スマホ対応 (991px以下)
   ========================================================================== */
@media (max-width: 991px) {
    .s-main {
        flex-direction: column;
        min-height: auto;
    }
    /* HTMLで .w-main という親要素がある前提 */
    .w-main { 
        width: 100%;
        display: flex;
        flex-direction: column; 
    }
    .w-main-Right { 
        position: relative; 
        width: 100%; 
        height: 350px; 
        order: -1; 
    }
    .w-main-Left { 
        width: 100%; 
        background: #22b573;
        padding: 40px 20px; 
        text-align: left;
        margin-right: 0;
    }

    .frontpage .mainTitle {
      display: contents;
      font-size: 22px;
    }
    .main_flex_row_top {
        justify-content: center;
    }
    .mainDescription.white_box {
        max-width: 100%;
        text-align: left;
    }
    .ctaBtn--web {
    display: flex;
    margin-bottom: 10px;


}
    .ctaActionInfo {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
  }
    .ctaBtn--tel .ctaActionInfo {
    font-size: 20px;
  }
  .header_badge img {
    width: 25px;
}

}

.casestudyblog_title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #22b573;
    margin-bottom: 0px;
}


.knowledge_title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #22b573;
    margin-bottom: 0;
}

/* 親要素をFlexboxに */
.knowledgeSection__body {
    display: flex;
    justify-content: space-between;
    gap: 40px; /* 左右の間隔 */
    align-items: flex-start;
}

/* -----------------------------------------------------------
   ★修正：左側のテキストボックス（サンプルデザイン反映）
----------------------------------------------------------- */
.knowledgeblog_box {
    flex: 0 0 350px;       /* サンプルに基づき幅を調整 */
    height: 350px;         /* 正方形を維持 */
    color: #fff;
    padding: 40px 30px;
    border-radius: 0;      /* 正方形デザインのため角丸をリセット */
    font-weight: bold;
    line-height: 1.8;
    position: sticky; 
    top: 40px;             /* 追従位置を微調整 */

    /* サンプル通りの斜め背景 (135度の角度で緑とグレーを分割) */
    background: linear-gradient(
        135deg, 
        #22b573 0%, 
        #22b573 50%, 
        #a5a5a5 50%, 
        #a5a5a5 100%
    );

    /* 文字を下寄せにする設定 */
    display: flex;
    align-items: flex-end;
}

/* 右側のブログリストエリア */
.knowledgeblog_Wrapper {
    flex: 1; /* 残りの幅をすべて使う */
}

/* ブログリスト自体のスタイル調整 */
.knowledgeArticles.p-postList {

    grid-template-columns: 1fr 1fr; /* 2列並び */
    gap: 20px;
    margin-bottom: 30px;
}

.ab .knowledgeArticles .p-postList__item.knowledgeblog_item {
    width: 32%;
}

/* -----------------------------------------------------------
   ★修正：スマホ対応
----------------------------------------------------------- */
@media (max-width: 991px) {
  p{
    text-align: left;
    margin: 10px 0px;
  }
    .knowledgeSection__body {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center;    /* 中央揃え */
    }

    .knowledgeblog_box {
        flex: none;
        width: 100%;
        max-width: 350px;   /* スマホで横に広がりすぎないよう制限 */
        height: 350px;      /* スマホでも正方形を維持 */
        margin-bottom: 30px;
        position: static;   /* スマホでは追従を解除 */
    }

    .knowledgeArticles.p-postList {
        grid-template-columns: 1fr; /* スマホではブログも1列 */
    }
    .ab .knowledgeArticles .p-postList__item.knowledgeblog_item {
    width: 100%;
}
}
/* 検索バーエリアのスタイル */
.search-bar-inner .p-searchForm {
    display: flex;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 幅が広いので影も少し強調 */
    border-radius: 4px;
    overflow: hidden;
    width: 100%; /* 親のmax-width（1000px）までいっぱい広げる */
}

/* 入力欄 */
.search-bar-inner {
    width: 600px;
}

.search-bar-inner .p-searchForm__input {
    flex: 1;
    border: 2px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 0 25px; /* 余白を広めにしてゆとりを持たせる */
    font-size: 18px; /* 幅が広いので文字も少し大きく */
}

/* 検索ボタン */
.search-bar-inner .p-searchForm__submit {
    width: 80px; /* ボタンも少し大きく調整 */
    height: 60px;
    background-color: #22b573;
    color: #fff !important;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.2s;
}

.search-bar-inner .p-searchForm__submit:hover {
    background-color: #27cf83;
}

/* --- スマホ対応 --- */
@media screen and (max-width: 991px) {
    .search-bar-inner {
        padding: 15px 10px;
        max-width: 100% !important; /* スマホでは画面幅いっぱいにする */
        width: 300px;
    }
    
    .search-bar-inner .p-searchForm__input {
        height: 54px; 
        padding: 0 15px;
        font-size: 16px;
    }
    
    .search-bar-inner .p-searchForm__submit {
        width: 60px;
        height: 54px;
    }
}


/* メルマガセクション全体 */
.s-newsletter {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.newsletter-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* タイトル */
.newsletter-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
}

/* 説明文 */
.newsletter-text {
    margin-bottom: 30px;
    color: #666;
    font-size: 1rem;
}

/* ボタンのスタイル */
.newsletter-btn {
    display: inline-block;
    background: #fb7302;
    color: #fff !important; /* テーマの色に負けないように */
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    transition: transform 0.2s, background 0.2s;
}

/* ホバー時の動き */
.newsletter-btn:hover {
    background: #cf711f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* --- スマホ対応 (991px以下) --- */
@media (max-width: 991px){
    .s-newsletter {
        padding: 40px 15px; /* 上下余白を少し詰める */
    }

    .newsletter-title {
        font-size: 1.25rem; /* スマホでは文字を少し小さく */
        text-align: left;   /* スマホでは左寄せの方が読みやすい場合が多い（中央寄せならここを消す） */
    }

    .newsletter-text {
        font-size: 0.9rem;
        text-align: left;   /* 同上 */
        margin-bottom: 25px;
    }

    .newsletter-btn {
        display: block;      /* ボタンを横幅いっぱいにする */
        padding: 15px 20px;
        font-size: 1rem;
    }
}
/* ==========================================================================
   s-inspection-cases
   ========================================================================== */
.s-inspection-cases {
    padding: 80px 0;
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
}
.inspection-casesheader {
    /* 下に向かって白く抜けるグラデーション（下が#ffffff） */
    background: linear-gradient(180deg, #f2f2f2 0%, #ffffff 100%);
    padding: 60px 30px; 
    margin-bottom: 10px;
    /* 下が白で消えるため、border-bottomは不要、または極めて薄くします */
    border-bottom: none; 
}
.inspection-casesheader p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}
.w-inspection-cases {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

/* 共通見出し */
.inspection-casesTitle {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.w-inspection-cases > p {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   上段：調査ケース（3カラム）
   -------------------------------------------------------------------------- */
.inspection-cases_container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    justify-content: center;
}

.inspection-cases_container .inspection-cases_item {
    width: calc(33% - 14px);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    background-color: #fdfdfd;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}
 
}
.inspection-cases_subtitle {
    font-weight: bold;
    font-size: 18px;
    margin: 20px 15px 10px;
    text-align: center;
}

.inspection-cases_icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.inspection-cases_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    padding: 0 20px;
}

.inspection-cases_subtitle {
    font-weight: bold;
    text-align: center;
    padding: 10px;
}
p.inspection-cases_desc {
    padding: 20px;
}
/* --------------------------------------------------------------------------
   下段：オーナー・責任者様向け（アイソレーション・5カラム）
   -------------------------------------------------------------------------- */
.inspection-cases_container_owner {
    margin-top: 50px;
    padding: 60px 40px;
    background-color: #f8f8f8; /* 背景をアイソレーション */
    border-radius: 20px;
}

.inspection-casesTitle_green {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #009c63; /* メイングリーン */
    margin-bottom: 15px;
}

.inspection-cases_container_owner > p {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* 5つ横並びの指定 */
.inspection-cases_container_owner .inspection-cases_container {
    justify-content: space-between;
    gap: 10px;
}

.inspection-cases_container_owner .inspection-cases_item {
    width: calc(20% - 12px); /* 5カラム計算 */
    background: transparent;
    text-align: center;
    padding: 10px;
}

/* アイコン：緑円形 */
.inspection-cases_container_owner .inspection-cases_icon {
    width: 80px;
    height: 80px;
    background-color: #009c63;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.inspection-cases_container_owner .inspection-cases_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inspection-cases_container_owner .inspection-cases_subtitle {
    color: #009c63;
    font-size: 15px;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
}

.inspection-cases_container_owner .inspection-cases_desc {
    font-size: 13px;
    padding: 0;
    text-align: center;
}

/* ==========================================================================
   タブレット・スマホ対応 (991px以下)
   ========================================================================== */
@media (max-width: 991px) {
    .inspection-casesTitle,
    .inspection-casesTitle_green {
        font-size: 24px;
    }

    .inspection-cases_container_owner {
        padding: 40px 20px;
        margin-top: 60px;
    }

    /* 全て1カラムへ */
    .inspection-cases_container {
        flex-direction: column;
        align-items: center;
    }

    .inspection-cases_item,
    .inspection-cases_container_owner .inspection-cases_item {
        width: 100% !important;
        max-width: 450px;
        margin-bottom: 30px;
    }

    .inspection-cases_container_owner .inspection-cases_subtitle {
        min-height: auto;
    }
}

p.text_annotation {
    font-size: 12px;
    color: #666;
}

.displaynone{
  display: none;
}