/* ITDD */
/* 固定ページ共通CSS */
/* 不要要素の非表示 */
  p {
      margin-bottom: 0 !important;
      line-height: normal;
  }

  /* テキスト配色 */
  .text-yellow1 {
    color: var(--yellow-1);
    line-height: normal;
  }

  .text-yellow4 {
      color: var(--yellow-4);
      line-height: normal;
  }

  .text-green1 {
      color: var(--green-1);
      line-height: normal;
  }

  /* 協調スタイル */
  .bg-text-collar {
    background-color: var(--text-main);
    color: var(--white);
    display: inline-block;
    padding: 0.2em 0.4em; /* textを真中に */
    line-height: normal; 
  }

  .bg-yellow1,
  .bg-yellow4 {
    color: var(--white);
    display: inline-block;
    padding: 0 0.2em; /* textを真中に */
    line-height: normal; 
  }

  .bg-yellow4 {
    background-color: var(--yellow-4);
  }

  .bg-yellow1 {
    background-color: var(--yellow-1);
  }

  .sidebar,
  .sns-share,
  .date-tags,
  .article-footer,
  .entry-title {
  display: none;
  }
   
  .content-in {
      justify-content: center;
  }
  
  .wrap {
      width: 100%;
  }
  
  .main {
      width: 100%;
      padding: 0px;
  }
  
  .entry-content {
      background-color: var(--white);
      color: var(--text-main);
      display: flex;
      flex-direction: column;
      font-weight: bold;
      margin-bottom: 0px !important;
  }
  
  .content {
      margin-top: 0px;
  }

  .article {
      margin-bottom: 0px !important;
  }

  .article h2 {
    padding: 0px;
    line-height: normal;
  }

  .article h3 {
    padding: 0px;
    line-height: normal;
  }

  .article h4 {
    padding: 0px;
    line-height: normal;
  }

  .footer {
      margin-top: 0px;
  }

  .itdd-wrapper {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      margin-bottom: 0px;
  }

  .itdd-container {
      width: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .first-view-description-title p,
  .first-view-description-sub-title p {
    color: var(--white);
    text-shadow:
        1px 1px 0 rgba(189, 189, 189, 0.50),
        -1px 1px 0 rgba(189, 189, 189, 0.50),
        1px -1px 0 rgba(189, 189, 189, 0.50),
        -1px -1px 0 rgba(189, 189, 189, 0.50);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.69));
  }

/* ========== パンくずリスト ========== */
  .breadcrumb {
    background-color: var(--yellow-3);
  }

/* ========== トラブル ========== */
  /* ========== トラブルタイトル ========== */
  .problem-wrapper {
      text-align: center;
      background-color: var(--yellow-3);
  }

  /* ========== トラブル内容 ========== */
  .problem-examples-wrapper {
    background-color: var(--white);
  }

  .problem-examples {
    background-color: var(--yellow-5);
    text-align: center;
    border-radius: 20px;
  }

  .problem-examples-details {
    text-align: start;
  }

  .problem-examples-details ul {
    padding-left: 0 !important;
  }

  .problem-examples-need {
    text-align: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }

/* ========== リスク ========== */
  .risk-wrapper {
    background-color: var(--gray-2);
  }

  /* ========== リスクタイトル ========== */
  .risk-title {
    text-align: center;
  }

  .risk-subtitle-text {
    margin-bottom: 6px !important;
  }

  
  /* ========== リスク内容 ========== */
  .risk-example-title {
    color: var(--brown-4);
  }

  .risk-example-text {
    background-color: var(--white);
    display: inline-block;
  }

  .risk-example-result-content {
    background-color: var(--yellow-4);
    color: var(--white);
    display: inline-block;
  }

  /* ========== リスクチェック ========== */
  .risk-check-container {
    background: var(--yellow-3);
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    clip-path: polygon(
      50% 0%, /* 上の頂点（中央） */
      100% 30%, /* 右上の角 */
      100% 100%, /* 右下 */
      0% 100%, /* 左下 */
      0% 30% /* 左上の角 */
    );
  }

  .risk-check-border-container {
    width: 100%;
    background-color: var(--yellow-1);
  }

/* ========== 可能にすること ========== */
  .possible-wrapper {
    background-color: var(--white);
  }

  /* ========== 可能タイトル ========== */
  .possible-title {
    text-align: center;
  }

  /* ========== 可能内容 ========== */
  .possible-example {
    display: flex;
    align-items: center;
  }

  /* 偶数番目だけ左右逆にする */
  .possible-example:nth-child(even) {
    flex-direction: row-reverse;
  }

  .possible-example-maintext .large-text {
    margin-top: 1px
  }

/* ========== 導入事例 ========== */
  .case-wrapper {
    background-color: var(--gray-4);
  }

  /* ========== タイトル ========== */
  .case-title {
    position: relative;         
    width: 100%;           
    display: flex;              
    align-items: center;     
    justify-content: center;  
    overflow: hidden;       
  }

  /* タイトル背景 */
  .background-text {
    position: absolute;         /* 重ねるための絶対位置指定 */
    color: rgba(229, 222, 206, 0.42); /* 薄いグレー */
    z-index: 1;                 /* 背景に配置 */
    user-select: none;          /* ユーザーが選択できないようにする */
  }
  
  .foreground-text {
    position: relative;   /* 普通に表示（上に重ねる） */
    z-index: 2;   
    align-items: end;
    display: flex;
    justify-content: center;
    line-height: normal;
  }

  /* ========== 導入事例内容========== */
  .case-cards {
    display: flex;
    flex-direction: column;
  }

  .case-card {
    background-color: var(--white);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: inline-block;
  }

  /* ========== 導入事例タイトル ========== */
  .case-card-title {
    background-color: var(--yellow-6);
    align-items: center;
    display: flex;
  }

  .case-card-title-inner {
    display: flex;
  }

  .case-card-title-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .case-card-title-textlabel {
    background-color: var(--white);
    border-radius: 50px;
    text-align: center;
  }

  /* ========== 目的・売上 ========== */
  .case-card-section {
    display: flex;
  }

  .case-card-section-label {
    background-color: var(--yellow-4);
    color: var(--white);
    text-align: center;
    border-radius: 10px;
  }

  .case-card-maintext {
    position: relative; /* 重ねるための土台 */
  }

  /* ========== 支援内容 ========== */
  .case-card-maintext-heading {
    position: absolute;
    background-color: var(--yellow-6);
    align-items: center;
    display: flex;
    justify-content: end;
    left: 0;
    z-index: 2;
  }

  .case-card-maintext-box {
    position: relative; 
    z-index: 1;
    background-color: var(--yellow-3);
    display: inline-block;
  }

  .case-card-maintext-box ul li{
    margin: 0px;
    line-height: normal;
  }
 
/* ========== 安心してご利用 ========== */
  .trust-message-wrapper {
    background-color: var(--yellow-1);
    color: var(--white);
  }

/* ========== 調査手法の流れタイトル ========== */  
  .research-process-wrapper{
    background-color: var(--white);
  }

  .research-process-inner {
    width: 100%;
  }

  .research-process-title {
    display: flex;
    align-items: center;
  }

  .research-process-title .line {
    flex: 1;
    background-color: var(--yellow-4);
  }

  .research-process-title h2 {
    white-space: nowrap;
    color: var(--yellow-4);
  }

/* ========== 調査手法の流れ ========== */
  .process-wrapper {
    background-color: var(--white);
  }

  .process-content {
    display: flex;
    color: var(--white);
    align-items: center;
  }  

  /* ========== 左側 ========== */
  .process-content-left {
    clip-path: polygon(
      0% 0%,    
      50% 10%,
      100% 0%,
      100% 90%,
      50% 100%,   
      0% 90%
    );
    text-align: center;
    align-items: center;
    display: flex;
    z-index: 1;
  }

  .process-content-left-inner {
    width: 100%;
    position: relative; 
  }

  /* ========== 右側 ========== */
  .process-content-text {
    display: flex;
    align-items: center;
  }

  .process-content-text h4{
    border-radius: 50px;
    align-items: center;
    display: flex;
    position: relative;
    z-index: 1;
  }

  /* 番号 */
  .process-content-text span {
    aspect-ratio: 1 / 1;
    border-radius: 50%;       /* 円にする */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute; 
    z-index: 10;  
  }

  /* 1つ目の流れ */
  .set1 .process-content-left,
  .set1 .process-content-text h4,
  .set1 .process-content-text span {
    background-color: #F0CC5E;
  }

  /* 2つ目の流れ */
  .set2 .process-content-left,
  .set2 .process-content-text h4,
  .set2 .process-content-text span {
    background-color: var(--yellow-1);
  }

  /* 3つ目の流れ */
  .set3 .process-content-left,
  .set3 .process-content-text h4,
  .set3 .process-content-text span {
    background-color: var(--yellow-4);
  }

/* ========== CTA ========== */
  .cta-inner {
    color: var(--white);
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-img {
    margin-bottom: 30px;
  }

  .cta-text p {
    text-align: center;
  }

  .cta-right {
    text-align: center;
    display: flex;
    align-items: center;
  }

  .cta-button {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* ========== ボタン ========== */
  .cta-info-button,
  .cta-contact-button {
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* 資料請求ボタン */
  .cta-info-button {
    background-color: var(--white);
    color: #009153;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cta-info-button a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* お問い合わせボタン */
  .cta-contact-button {
    color: var(--white);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cta-contact-button a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* ========== ボタンホバー ========== */
  /* 資料請求ボタン */
  .cta-info-button:hover {
    background-color: transparent;
    color: var(--white);
  }

  /* お問い合わせボタン */
  .cta-contact-button:hover {
    background-color: var(--white);
    color: var(--green-1);
  }

/* ========== FAQ ========== */
  .faq-wrapper {
    background-color: var(--white);
  }

  .faq-inner {
    width: 100%;
  }

   /* ========== タイトル ========== */
  .faq-title {
    text-align: center;
  }

  .faq-main-title {
    color: var(--yellow-4);
  }

  /* ========== 内容 ========== */
  .faq-content-q-inner {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: var(--gray-2);
    border-radius: 50px;
  }

  .faq-content-a-inner {
    display: flex;
    align-items: start;
  }

  .faq-content-q span,
  .faq-content-a span {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .faq-content-q span {
    background-color: var(--white);
    color: var(--green-1);
  }

  .faq-content-a span {
    background-color: var(--green-1);
    color: var(--white);
  }

  .faq-content:not(:last-child) {
    border-bottom: 2px solid var(--gray-2);
  }
  
@media screen and (min-width: 1024px) {
  .sp-only {
    display: none;
  }
/*
  .first-view-description {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  .first-view-description-title p {
    font-size: 55px;
    margin-bottom: 1.8em !important;
  }

  .first-view-description-sub-title p {
    font-size: 32px;
    margin-bottom: 1.8em !important;
  }

  .first-view-link-area {
    display: flex;
  }

  .first-view-information {
    width: 300px;
    height: 75px;
    border-radius: 10px;
  }

  .first-view-information p {
    font-size: 20px;
    margin-bottom: 0px;
    color: var(--white);
  }

  .first-view-contact {
    width: 180px;
    height: 75px;
    margin-left: 25px;
    border-radius: 10px;
  }

  .first-view-contact p {
    font-size: 20px ;
  }

  */
/* ========== 全セクション共通 ========== */
  /* コンテナ */
  .itdd-container {
    max-width: 1200px;
  }
    
  /* ========== タイトル ========== */
  /* タイトルの協調文字 */
  .title-large {
    font-size: 48px;
  }

  .title-medium{
    font-size: 40px;
  }

  .title-middle {
    font-size: 28px;
  }

  .title-text{
    font-size: 24px;
  }

/* ========== トラブル ========== */
  /* ========== トラブルタイトル ========== */
  .problem-title {
      margin: 30px 0;
  }

  .problem-subtitle-text {
      font-size: 20px;
  }

  .problem-maintitle-text {
      font-size: 24px;
  }

  .problem-maintitle-text .text-yellow4{
      font-size: 36px;
  }

  /* ========== トラブル内容 ========== */
  .problem-examples-container {
    margin: 40px auto 60px;
  }

  .problem-examples-title h3 {
    font-size: 36px;
  }

  .problem-examples-subtitle-text {
    font-size: 24px;
    margin-bottom: 10px !important;
  }

  .problem-examples-maintitle-text {
    margin-bottom: 12px !important;
  }

  .problem-examples-inner {
    margin: 40px;
  }

  .problem-examples-details {
    font-size: 24px;
  }

  .problem-examples-details h4 {
    font-size: 24px;
    display: inline;
  }
  
  /* 協調スタイル */
  .bg-text-collar {
    margin: 0 6px;
  }

  .problem-examples-details ul {
    list-style-position: inside; /* ● の下にもボーダー線が入るように */
    margin-bottom: 0;
    
  }

  .problem-examples-details li {
    padding: 16px 0px 16px 40px;
  }

  /* 最後の要素以外のボーダー線 */
  .problem-examples-details li:not(:last-child) {
    border-bottom: 1px solid var(--text-main);
  }

  .problem-examples-arrow {
    width: 138px;
    margin-bottom: 18px;
  }

  .problem-examples-need {
    border: 4px solid var(--yellow-4);
  }

  .problem-examples-need-inner {
    margin: 23px 112px;
  }

  .problem-examples-need-subtext {
    font-size: 16px;
  }

  .problem-examples-need-maintext {
    font-size: 24px;
  }

  .problem-examples-need-maintext .text-yellow1{
    font-size: 40px;
  }

/* ========== リスク ========== */
  .risk-inner {
    margin: 40px auto;
  }

  /* ========== リスクタイトル ========== */
  .risk-title {
    margin-bottom: 60px;
  }

  .risk-maintitle-text .bg-yellow4 {
    margin-right: 6px;
  }

  /* ========== リスク内容 ========== */
  .risk-example-title {
    margin-bottom: 20px;
  }

  .risk-example-title h3 {
    font-size: 30px;
  }

  /* 偶数のタイトルのみ右寄せ */
  .risk-example:nth-of-type(even) .risk-example-title {
    text-align: right;
  }

  .risk-example-box {
    display: flex;
    align-items: stretch; /* 子要素の高さを揃える */
    margin-bottom: 45px;
  }

  /* ボーダー線 */
  .vertical-line {
    width: 1px; /* 縦棒の太さ */
    background-color: var(--brown-4); 
    margin-right: 20px;      /* テキストとの間隔 */
  }

  /* 偶数のボーダー線の左に余白 */ 
  .risk-example:nth-child(even) .vertical-line {
    margin-left: 20px;
    margin-right: 0;
  }

  /* 偶数のみ右にボーダー線 */
  .risk-example:nth-child(even) .risk-example-box {
    flex-direction: row-reverse;
  }

  .risk-example-text {
    width: 920px;
    border-radius: 30px;
  }

  .risk-example-text-inner{
    margin: 28px 50px 18px 50px;
  }

  .risk-example-maintext {
    margin-bottom: 14px;
  }

  .risk-example-result {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .risk-example-result-content {
    border-radius: 50px;
    margin-right: 5px;
    margin-bottom: 10px;
  }

  .risk-example-result-content p {
    padding: 7px 15px;
    font-size: 16px;
  }

/* ========== リスクチェック ========== */
  .risk-check-container {
    height: 226px;
  } 

  .risk-check-border-container {
    height: 12px;
  }

  .risk-check-inner h2{
    font-size: 40px;
  }

/* ========== 可能にすること ========== */
  .possible-container {
    margin: 80px 0 30px; 
  }

  /* ========== 可能タイトル ========== */
  .possible-title {
    margin-bottom: 60px;
  }

  .possible-title h2 {
    font-size: 40px;
  }

  /* ========== 可能内容 ========== */
  .possible-example {
    gap: 40px;
    margin-bottom: 54px;
  }

  /* 画像 */
  .possible-example-img {
    width: 216px;
  }

  /* text */
  .possible-example-subtext {
    margin-bottom: 10px;
  }

  .possible-example-maintext {
    margin-bottom: 28px;
  }

  .possible-example-maintext .large-text {
    font-size: 32px;
    line-height: 42px;
  }

  .possible-example-description {
    font-size: 16px;
  }
/* ========== 導入事例 ========== */
  .case-container {
    margin-top: 40px;
  }

  /* ========== タイトル ========== */
  .case-title {
    height: 122px;            
    margin-bottom: 64px;        
  }

  /* タイトル背景 */
  .background-text {
    font-size: 128px;  /* 背景文字の大きさ */
  }

  .foreground-text {
    height: 122px;
  }

  /* ========== 導入事例内容========== */
  .case-cards {
    margin-bottom: 30px;
  }

  .case-card {
    margin-bottom: 50px;
  }

  /* ========== 導入事例タイトル ========== */
  .case-card-title {
    height: 120px;
    margin-bottom: 26px;
  }

  .case-card-title-inner {
    gap: 30px;
    margin-left: 56px;
  }

  .foreground-text h2 {
    font-size: 48px;
  }

  /* 画像 */
  .case-card-title-img {
    width: 96px;
  }

  .case-card-title-textmain {
    margin-bottom: 10px !important;
  }

  .case-card-title-textmain h3 {
    font-size: 24px;
  }

  .case-card-title-textlabel {
    width: 188px;
  }

  .case-card-title-textlabel .title-text {
    font-size: 16px;
    height: 36px;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  /* ========== 目的・売上 ========== */
  .case-card-sections {
    margin-left: 182px;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .case-card-section {
    gap: 30px;
    margin-bottom: 20px;
  }

  .case-card-section-label {
    border-radius: 10px;
    width: 168px;
    height: 30px;
  }

  .case-card-maintext {
    margin-bottom: 26px;
  }

  /* ========== 支援内容 ========== */
  .case-card-maintext-heading {
    width: 234px;
    height: 32px;
    top: 10px;
  }

  .case-card-maintext-heading p {
    font-size: 20px;
    margin-right: 46px;
  }

  .case-card-maintext-box {
    width: 790px;
    font-size: 16px;
    margin: 0 20px;
  }
  
  .case-card-maintext-box ul {
    margin: 50px 0 20px;
    margin-left: 10px; /* 左に寄りだったため余白を追加 */
  }

/* ========== 安心してご利用 ========== */
  .trust-message-wrapper {
    height: 48px;
    font-size: 20px;
  }

/* ========== 調査手法の流れタイトル ========== */  
  .research-process-title {
    margin: 26px 0 66px;
  }

  .research-process-title .line {
    height: 4px;
  }

  .research-process-title h2 {
    margin: 0 30px;
    font-size: 48px;
  }

/* ========== 調査手法の流れ ========== */
  .process-contents {
    margin-bottom: 110px;
  } 

  /* ========== 左側 ========== */
  .process-content-left {
    width: 372px;
    height: 336px;
  }

  /* 画像 */
  .process-content-left img {
    width: 270px;
    margin-bottom: 10px;
  }

  .process-content-left h3 {
    font-size: 32px;
  }

  /* ========== 右側 ========== */
  .process-content-text {
    margin-bottom: 20px;
  }

  .process-content-text h4{
    height: 78px;
    width: 596px;
    font-size: 28px;
    padding-left: 76px;
  }

  /* 番号 */
  .process-content-text span {
    width: 89px;
    border: 6px solid var(--white);
    font-size: 36px;
    left: 37%;
  }

/* ========== CTA ========== */
  .cta-wrapper {
    background: linear-gradient(98deg, var(--green-1) 41.7%, #00AC62 100%);
  }

  .cta-inner {
    gap: 50px;
    margin: 50px 0;
  }

  .cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-img {
    width: 456px;
  }

  .cta-text p {
    font-size: 20px;
  }

  .cta-title {
    margin-bottom: 30px;
  }

  .cta-title h2 {
    font-size: 48px;
  }

  .cta-main-title span {
    font-size: 36px;
  }

  /* ========== ボタン ========== */
  .cta-info-button,
  .cta-contact-button {
    width: 468px;
    height: 64px;
    font-size: 24px;
    border: 3px solid  var(--white);
  }

  /* 資料請求ボタン */
  .cta-info-button {
    margin-bottom: 20px;
  }

/* ========== FAQ ========== */
  .faq-inner {
    margin: 80px 0;
  }

  /* ========== タイトル ========== */
  .faq-title {
    margin-bottom: 80px;
  }

  .faq-title h2 {
    font-size: 64px;
  }

  .faq-main-title {
    margin-bottom: 10px !important;
  }

  .faq-sub-title {
    font-size: 24px;
  }

  /* ========== 内容 ========== */
  .faq-content {
    margin: 30px;
  }

  .faq-content-q-inner {
    gap: 36px;
    height: 84px;
    margin-bottom: 30px;
  }

  .faq-content-a-inner {
    gap: 36px;
    margin-bottom: 45px;
  }

  .faq-content-q span,
  .faq-content-a span {
    width: 64px;
    font-size: 36px;
    margin-left: 30px;
  }

  .faq-content-q h3,
  .faq-content-a p {
    font-size: 24px;
  }
}
  
  @media screen and (max-width: 1023px) {
     .pc-only {
      display: none;
    }
  
    .main {
      margin: 0px !important;
      padding: 0px !important;
    }
  
    .entry-content {
      margin-bottom: 0 !important;
    }

    .first-view-description {
      max-width: 350px;
  }
  /*
    .first-view-description {
      width: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--white);
      text-align: center;
    }
  
    .first-view-description-title p {
      font-size: 24px;
    }
  
    .first-view-description-title p span {
      font-size: 32px;
    }
  
    .first-view-description-sub-title p {
      font-size: 20px;
    }
  
    .first-view-link-area {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .first-view-information {
      width: 250px;
      height: 50px;
      border-radius: 25px;
    }
  
    .first-view-information p {
      font-size: 16px;
    }
  
    .first-view-contact {
      margin-top: 20px;
      width: 250px;
      height: 50px;
      border-radius: 25px;
      color: var(--black-1);
    }
  
    .first-view-contact p {
      font-size: 16px;
    }
  
    */
  /* ========== 全セクション共通 ========== */
    /* コンテナ */
    .itdd-container {
      max-width: 343px;
    }
  
    /* ========== タイトル========== */
    /* タイトルの協調文字 */
    .title-large {
      font-size: 20px;
    }
  
    .title-medium{
      font-size: 14px;
    }
  
    .title-text{
      font-size: 12px;
    }
    
/* ========== トラブル ========== */
  .problem-examples {
    width: 100%;
  }
  /* ========== トラブルタイトル ========== */
  .problem-title {
      margin: 10px 0;
      font-size: 12px;
  }

  .problem-title h2 {
    font-size: 12px;
  }

  /* ========== トラブル内容 ========== */
  .problem-examples-container {
    margin: 28px auto 32px;
  }

  .problem-examples-subtitle-text {
    font-size: 10px;
    margin-bottom: 6px !important;
  }

  .problem-examples-title h3 {
    font-size: 16px;
  }

  .problem-examples-maintitle-text {
    font-size: 16px;
    margin-bottom: 4px !important;
  }

  .problem-examples-inner {
    margin: 22px 16px 16px;
  }

  .problem-examples-details {
    font-size: 12px;
    margin: 0 30px;
    list-style: none;
    padding: 0;
  }

  .problem-examples-details h4 {
    font-size: 12px;
    display: inline;
  }

  .problem-examples-details li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1em;
  }

  .bullet {
    width: 1.2em; /* ● の幅分 */
    line-height: 1.5;
  }
  
  .problem-examples-details h4 {
    flex: 1;
    line-height: 1.6; 
  }

  /* 協調スタイル */
  .bg-text-collar {
    margin-right: 4px;
  }
  

  /* 最後の要素以外のボーダー線 */
  .problem-examples-details li:not(:last-child) {
    border-bottom: 0.5px solid var(--text-main);
  }

  .problem-examples-arrow {
    width: 86px;
    margin-bottom: 30px;
  }
  
  .problem-examples-need {
    border: 2px solid var(--yellow-4);
  }

  .problem-examples-need-inner {
    margin: 13px 4px;
  }

  .problem-examples-need-subtext {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .problem-examples-need-maintext h3 {
    font-size: 12px;
  }

  .problem-examples-need-maintext .text-yellow1{
    font-size: 20px;
  }

/* ========== リスク ========== */
  .risk-inner {
    margin: 30px auto;
  }

  /* ========== リスクタイトル ========== */
  .risk-title {
    margin-bottom: 30px;
  }

  .risk-title h2 {
    font-size: 12px;
  }

  .risk-title span {
    margin-right: 4px;
  }

  /* ========== リスク内容 ========== */
  .risk-example-title {
    margin-bottom: 12px;
  }

  .risk-example-title h3 {
    font-size: 13px;
  }

  .risk-example-box {
    margin: 0 14px 20px;
  }

  .risk-example-text {
    width: 100%;
    border-radius: 20px;
    font-size: 12px;
  }

  .risk-example-text-inner{
    margin: 20px 30px;
  }

  .risk-example-maintext,
  .risk-example-result {
    margin-bottom: 10px;
  }

  .risk-example-result-contents {
    display: flex;
    flex-direction: column;    /* 縦並び */
    align-items: center;       /* 横方向中央揃え */
    gap: 6px;
  }

  .risk-example-result-content {
    border-radius: 5px;
    width: 230px;
    text-align: center;
  }

  .risk-example-result-content p{
    padding: 3px 0;
  }

/* ========== リスクチェック ========== */
   .risk-check-container {
    height: 82px;
  } 

  .risk-check-border-container {
    height: 6px;
  }

  .risk-check-inner h2{
    font-size: 14px;
  }

/* ========== 可能にすること ========== */
  .possible-inner {
    margin-top: 40px;
  }
  /* ========== 可能タイトル ========== */
  .possible-title {
    margin-bottom: 40px;
  }

  /* ========== 可能内容 ========== */
  .possible-example {
    gap: 10px;
    margin-bottom: 30px;
  }

  /* 画像 */
  .possible-example-img {
    width: 78px;
  }

  /* text */
  .possible-example-subtext {
    margin-bottom: 4px;
  }

  .possible-example-maintext {
    margin-bottom: 8px;
  }

  .possible-example-maintext h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .possible-example-description {
    font-size: 12px;
  }

/* ========== 導入事例 ========== */
  /* ========== タイトル ========== */
  .case-title {
    height: 48px;            
    margin-bottom: 24px;        
  }

  /* タイトル背景 */
  .background-text {
    font-size: 48px;  /* 背景文字の大きさ */
  }

  .foreground-text {
    height: 48px;
  }

  /* ========== 導入事例内容========== */
  .case-cards {
    margin-bottom: 20px;
  }

  .case-card {
    margin-bottom: 24px;
  }

  /* ========== 導入事例タイトル ========== */
  .case-card-title {
    height: 70px;
    margin-bottom: 12px;
    justify-content: center;
  }

  .case-card-title-inner {
    gap: 10px;
    align-items: center;
  }

  /* 画像 */
  .case-card-title-img {
    width: 60px;
  }

  .case-card-title-textmain {
    font-size: 16px;
  }

  .case-card-title-textmain .title-text {
    all: unset;
  }

  .case-card-title-textlabel {
    width: 120px;
  }

  .case-card-title-textlabel p{
    padding: 4px 0;
  }

  /* ========== 目的・売上 ========== */
  .case-card-sections {
    margin-bottom: 2px;
    font-size: 13px;
  }

  .case-card-section {
    gap: 10px;
    margin-bottom: 16px;
    justify-content: center;
  }

  .case-card-section-label {
    width: 100px;
    height: 20px;
  }

  .case-card-section-text {
    width: 200px;
  }

  .case-card-maintext {
    margin-bottom: 10px;
  }

  /* ========== 支援内容 ========== */
  .case-card-maintext-heading {
    width: 96px;
    height: 18px;
    top: 10px;
  }

  .case-card-maintext-heading p {
    font-size: 13px;
    margin-right: 10px;
  }

  .case-card-maintext-box {
    font-size: 12px;
    margin: 0 8px;
  }

  .case-card-maintext-box ul {
    margin: 30px 0 10px;
  }

/* ========== 安心してご利用 ========== */
  .trust-message-wrapper {
    height: 30px;
    font-size: 12px;
  }

/* ========== 調査手法の流れタイトル ========== */  
  .research-process-title {
    margin: 10px 0 40px;
  }

  .research-process-title .line {
    height: 2px;
  }

  .research-process-title h2 {
    margin: 0 10px;
  }

/* ========== 調査手法の流れ ========== */
  .process-contents {
    margin-bottom: 44px;
    font-size: 12px;
  } 

  /* ========== 左側 ========== */
  .process-content-left {
    width: 120px;
    height: 110px;
  }

  /* 画像 */
  .process-content-left img {
    width: 90px;
    margin-bottom: 4px;
  }

  .process-content-left h3 {
    font-size: 12px;
  }

  /* ========== 右側 ========== */
  .process-content-text {
    margin-bottom: 4px;
  }

  .process-content-text h4{
    height: 26px;
    width: 220px;
    font-size: 12px;
    padding-left: 30px;
  }

  /* 番号 */
  .process-content-text span {
    width: 30px;
    border: 2px solid var(--white);
    font-size: 20px;
    line-height: 20px;
    left: 114px;
  }

/* ========== CTA ========== */
  .cta-wrapper {
    background: linear-gradient(141deg, var(--green-1) -0.26%, #00AC62 100%);
  }

  .cta-inner {
    flex-direction: column;
    margin: 25px 0;
  }

  .cta-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
  }

  .cta-main-title {
    font-size: 24px;
  }

  .cta-text {
    margin-bottom: 30px;
  }

  .cta-img {
    width: 194px;
  }

  .cta-text p {
    font-size: 12px;
  }

  .cta-right {
    justify-content: center;
  }

  /* ========== ボタン ========== */
  .cta-info-button,
  .cta-contact-button {
    width: 200px;
    height: 30px;
    font-size: 12px;
    border: 2px solid  var(--white);
  }

  /* 資料請求ボタン */
  .cta-info-button {
    margin-bottom: 10px;
  }

  /* 協調 */
  .cta-info-button span,
  .cta-contact-button span {
    font-size: 14px;
  }

/* ========== FAQ ========== */
  .faq-inner {
    margin: 30px 0;
  }

  /* ========== タイトル ========== */
  .faq-title {
    margin-bottom: 20px;
  }

  .faq-main-title {
    font-size: 20px;
    margin-bottom: 6px !important;
  }

  .faq-sub-title {
    font-size: 12px;
  }

  /* ========== 内容 ========== */
  .faq-content {
    margin-bottom: 20px;
  }

  .faq-content-q-inner {
    gap: 10px;
    height: 42px;
    margin-bottom: 16px;
  }

  .faq-content-a-inner {
    gap: 10px;
    margin-bottom: 16px;
  }

  .faq-content-q span,
  .faq-content-a span {
    width: 30px;
    font-size: 20px;
    margin-left: 10px;
    line-height: 20px;
  }

  .faq-content-q h3,
  .faq-content-a p {
    font-size: 12px;
  }

}
   