/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

html, body {
  overflow-x: hidden; /* 横方向のはみ出しを隠す */
  width: 100%;
}

        /* --- 基本設定 --- */
        :root {
            --primary-color: #00202e; /* ダークブルー */
            --accent-color: #79cace; /* ターコイズ/アクセント */
            --text-color: #343434;
            --light-bg: #b0babe;
            --white: #ffffff;
        }

  .dnd-section {
            padding: 0px!important;
              }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
            overflow-x: hidden;
          word-break: keep-all!important;     /* 単語の途中で改行しない（日本語向け） */
  overflow-wrap: break-word!important; /* 長すぎる英単語は折り返す */
        }

        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

h1 {
  font-size: clamp(28px, 5vw, 54px)!important;
}

h2 {
  font-size: clamp(24px, 5vw, 36px)!important;
}
h3 {
  font-size: clamp(18px, 5vw, 24px)!important;
}

h4 {
  font-size: clamp(16px, 5vw, 18px)!important;
}
h5 {
  font-size: clamp(14px, 5vw, 16px)!important;
}

h6 {
  font-size: clamp(12px, 5vw, 14px)!important;
}
p {
  font-size: clamp(14px, 5vw, 16px)!important;
  margin-bottom: 1rem!important;
  color: var(--text-color);  
}
        .u-text-center {
        text-align: center;
        }


        ul {
            margin-bottom: 1.5rem;
            padding-left: 20px;
        }

        li {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            color: var(--white);
        }

.menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-2 a {
        text-align: left!important;
    }

.menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
    left: 0!important;    /* 左端を揃える */
    right: auto!important;/* 解除 */
    top: 100%;!important;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  /* PCでは固定レイアウト */
  table-layout: fixed; 
}

.company-table th,
.company-table td {
  padding: 12px 4px; /* 見やすいように少し余白を広げました */
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--light-bg); /* 区切り線 */
}

.company-table th {
  width: 30%; /* PCでの項目幅 */
  font-weight: normal;
}

.company-table td {
  width: 70%; /* PCでの内容幅 */
  font-weight: bold;
}

        /* --- 共通コンポーネント --- */


        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            text-decoration: none;
            color: var(--white)!important;
            border-radius: 4px;
            font-weight: bold;
        }

        .btn:hover {
            background-color: var(--accent-color);         
        }

        .section {
            padding: 60px;
            margin: 0 auto!important;
            max-width: 1200px!important;
        }

  .leaders img {
    width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
}
        /* --- 1. ヒーローセクション --- */

        .hero-content {
            max-width: 1000px!important;
            margin: 0 auto!important;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--white);
            line-height: 1.2;
        }
        .hero h2 {
            color: var(--white);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--white);
        }
.article img{
  display: block;
  margin: 0 auto;
  width: 600px; /* 例 */
}

.figcaption {
    text-align: center;
    margin: 0 0 20px;
}
        /* --- 2. Unified Data (左右分割) --- */
        .split-section {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .split-content {
            flex: 1;
        }

        .split-image {
            flex: 1;
            text-align: center;
        }
        
        .split-image img {
            max-width: 100%;
            height: auto;
        }


        /* --- 3. Why Choose (3カラム) --- */
        .why-choose {
            text-align: center;
            background-color: var(--white);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .feature-card {
            text-align: left;
        }

        .icon-box {
            color: var(--accent-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .icon-box img {
            margin-right: 20px;
            width: 50px;
            height: fit-content!important;
        }
        .icon-box h3 {
            margin-bottom: 0;
        }
        /* --- 4. AI Assistant --- */
        .bg-light {
            background-color: var(--light-bg);
        }

        /* --- 5. Trusted Logos --- */
        .trusted-logos {
            text-align: center;
            padding: 60px 0;
        }

        .logo-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-top: 30px;
            opacity: 0.6;
            filter: grayscale(100%);
        }

        .logo-placeholder {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--light-bg);
        }

        /* --- 6. Case Studies --- */
        .case-studies h2 {
            text-align: center;
            margin-bottom: 50px;
        }

        .case-card {
            padding: 30px;
            border: 2px solid var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .case-card h3, .results-card h3, .values-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .results-card {
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            background-color: var(--primary-color);
            border-radius: 4px;
        }

        .results-card p,.results-card h3 {
            color: var(--white);
            text-align: left;
        }

        .values-card {
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            background-color: var(--accent-color);
            border-radius: 4px;
        }


        .btn-small {
            font-size: 0.8rem;
            padding: 8px 20px;
            background-color: var(--primary-color);
            color: var(--white)!important;
            text-decoration: none;
            border-radius: 2px;
        }
        .btn-small:hover {
            background-color: var(--accent-color);            
        }


.dnd-section .dnd-column {
    padding: 0px!important;
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, .footer img, .footer label, .footer li, .footer p, .footer span {
    color: #ffffff;
}
.mwf_el_menu .menu__link , .footer a {
    color: #FFFFFF;
}

.footer a:hover {
    color: var(--accent-color);
}
a:hover, a:focus, a:active {

}

/* 外側の箱：画面いっぱいに背景色を塗る */
.footer-wrapper {
  background-color: var(--primary-color);
  width: 100%;
  display: flex;        /* 中身を中央に寄せるため */
  justify-content: center; 
}

/* 内側の箱：中身のレイアウト */
.footer-container {
  /* 背景色は親に移したので削除 */
  width: 100%;           /* 基本は100% */
  max-width: 1280px;     /* 最大幅を制限 */
  padding: 0 20px;
  gap: 40px;
  display: flex;
  justify-content: flex-end!important;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  box-sizing: border-box; /* paddingを含めて幅計算 */
  font-size: clamp(12px, 5vw, 14px)!important;
}
.footer-links {
  display: contents!important;
  gap: 20px; /* ここで間隔を調整（20pxなど） */
}


.hero-content {
    width: 75%;
}

.hs-form-booleancheckbox a {
            text-decoration: underline;
  
}

.hs-form-booleancheckbox a :hover {
  text-decoration: none;
}


.hs_submit {
    text-align: -webkit-center;
  
}
.slider-container {
  overflow: hidden;
}

.slider {
  width: 100%;
  position: relative;
}

.slides {
  display: flex;
  width: 200%;
  animation: slide var(--duration, 10s) linear infinite;
  
}

.slide {
  flex-basis: 100%;
  display:flex;
  align-items: center;
  
img {  /* i を img に変更 */
    display: block;
    flex-basis: var(--logo-width, 10%);
    
    /* 修正箇所：font-size ではなく width でサイズ指定 */
    width: clamp(60px, 6.8vw, 120px);
    height: auto; /* 比率を保つために自動調整 */
    
    /* 余白はそのまま */
    padding: clamp(30px, 4vw, 60px) 0;
    
    transition: transform .3s;
    
    /* 画像が縦に潰れないように念のため（必要なら） */
    object-fit: contain; 
    
  }
}




table {
    background-color: rgba(245, 245, 245, 0)!important;
      border: 0px solid!important;
}

.mwf_layout1 .mwf_row_t {
    margin-bottom: 0!important;
}

.mwf_layout1.focus_module_website_f {
    padding: 60px 0 0px 0!important;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide_alternate {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media (max-width: 768px) {
            
.hs_cos_wrapper_type_logo img {
    max-width: 20%!important;
  margin: 5px!important;
}
  
          h1, h2, h3, h4, h5, h6, p {
         text-align: left!important;
        }
          .u-text-center {
        text-align:left!important;
        padding: 0px 20px; /* 余白を少し詰める */
        }
  
  p, ul, ol, pre {
    margin: 0 0 1em 0!important;
}
            /* 全体の調整 */
            .section {
                padding: 40px 20px; /* 余白を少し詰める */
            }

            /* 1. Hero: フルスクリーン感を出す */
            .hero {
                    height: 70vh!important;
                align-items: center;
                padding: 40px 20px;
            }
            .hero-content {
                padding-left: 0;
                margin: 0 auto;
                  width: 100%;
            }
  
            .hero h1 {
                line-height: 1.2;
            }
            .hero p {
                margin-bottom: 2rem;
            }
            .btn-hero {
                width: 100%; /* ボタンを押しやすく全幅に */
                max-width: 300px;
            }

            /* 2. Unified Data: 縦積みに変更 */
            .split-layout {
                flex-direction: column;
                gap: 40px;
            }
            .split-visual {
                order: -1; /* 画像を先に持ってくる */
                width: 100%;
                margin-bottom: 10px;
            }
            .split-text h2 {
                font-size: 1.75rem;
            }
            /* サブ機能のリストは見やすいようにカード化 */
            .feature-sub {
                background: #fff;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.03);
                border-left: 4px solid var(--accent-teal);
                margin-bottom: 16px;
            }

            /* 3. Why Choose: カラム落ちとカードの調整 */
            .grid-3 {
                grid-template-columns: 1fr; /* 1列 */
                gap: 24px;
            }
            .card {
                background: #fff;
                padding: 24px;
                border-radius: 12px;
                /* スマホでのみ薄い枠線をつけて視認性アップ */
                border: 1px solid #f0f0f0; 
                text-align: center;
            }
            .icon-circle {
                margin: 0 auto 20px auto; /* アイコン中央寄せ */
            }
  
  .grid-2 {
                grid-template-columns: 1fr; /* 1列 */
                gap: 24px;
            }

            /* 4. AI Assistant: 順序変更 */
            .ai-layout {
                flex-direction: column;
                gap: 40px;
            }
            .ai-image {
                margin-top: 20px;
            }
            .ai-text h2 {
                font-size: 1.75rem;
            }
            /* ロボット背景をスマホに合わせて調整 */
            .robot-bg {
                padding: 30px;
            }

            /* 5. Logos: グリッド化して整理 */
            .logos-container {
                display: grid;
                grid-template-columns: 1fr 1fr; /* 2列表示 */
                gap: 30px 10px;
                text-align: center;
            }
            .logo-text {
                font-size: 1.2rem;
            }
            /* 最後の1つが奇数になる場合の処理（中央寄せ） */
            .logo-text:last-child {
                grid-column: span 2; 
            }
  

            /* 6. Case Studies: カードデザイン微調整 */
            .case-card {
                padding: 24px;
            }
  
  .icon-box img {
    /* 幅は50pxのまま、高さは比率に合わせて自動調整する */
    height: auto !important; 
    
    /* もし画像が歪む場合はこれも追加すると安全です */
    object-fit: contain; 
    margin: 10px !important; 
}
.split-section {
    display: flex;
    flex-direction: column;
  }
  
  /* 左カラムの枠を無視させる */
  .split-content {
    display: contents;
  }

  /* --- 順番の指定 --- */

  /* 1番目: h2見出し */
  .split-content h2 {
    order: 1;
    margin-bottom: 20px;
  }

  /* 2番目: 画像エリア */
  .split-image {
    order: 2;
    width: 100%;
    margin-bottom: 20px;
    text-align: center; /* 画像を中央寄せにする場合 */
  }

  /* 3番目以降: 残りの要素すべて (h3, ul, pなど) */
  /* ここで前回の p や .feature-item も一緒にまとめて order:3 にします */
  .split-content h3,
  .split-content ul,
  .split-content p,
  .split-content .feature-item {
    order: 3;
  }
  
  
  form {
    padding: 20px!important;
    margin: 0px 20px!important;
}
   .hs-input {
     width: 100%!important;
        }
  .legal-consent-container .hs-form-booleancheckbox-display>span {
    display: table-cell!important;
    margin-left: 0px!important;
}
  .slider {
  width: 200%;
}
  .mwf_image_text {
    display:none!important;
}
  .mwf_layout1.focus_module_website_f {
    padding: 60px 0px 0px!important;
}
 .mwf_el_text {
        gap: 20px!important;
    }
  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    /* テーブルの構造を解除して積み重ねる */
    display: block;
    width: 100%;
  }

  /* 行（tr）ごとの余白調整 */
  .company-table tr {
    margin-bottom: 16px;
    border-bottom: none; /* tr自体の線は消す */
  }

  /* 項目名（th）の見た目調整 */
  .company-table th {
    padding-bottom: 4px; /* 下の要素との隙間を詰める */
    border-bottom: none; /* 項目名の下線は不要 */
    font-size: 14px; /* 少し小さくしてラベル感を出す */
  }

  /* 内容（td）の見た目調整 */
  .company-table td {
    padding-top: 0; /* 上の項目名との隙間を詰める */
    padding-bottom: 16px; /* 次の項目との間隔 */
    border-bottom: 1px solid solid var(--light-bg); /* ここに区切り線を入れる */
  }
  .footer-container {
    gap: 20px;
    display: block;
    padding: 0 20px;
}
  .footer-links {
    display: grid!important;
    gap: 0px;
    margin: 0 0 10px;
}
  .dnd_area_101-row-1-padding {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
}
      #hs_cos_wrapper_footer-dnd_area_101-module-1 .mwf_el_image, #hs_cos_wrapper_footer-dnd_area_101-module-1 .mwf_el_menus, #hs_cos_wrapper_footer-dnd_area_101-module-1 .mwf_el_social, #hs_cos_wrapper_footer-dnd_area_101-module-1 .mwf_el_text {
        gap: 20px!important;
    }
      #hs_cos_wrapper_footer-dnd_area_101-module-1 .mwf_row {
        gap: 20px!important;
    }
  .mwf_layout1 .mwf_row_t {
    margin-bottom: 0px!important;
}
}