* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}
/* Header Styles */
.exodus-header {
    background-color: #1a1a2e;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.exodus-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.exodus-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}
.exodus-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}
.exodus-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}
.exodus-nav a:hover {
    color: #dc3545;
}
.exodus-contact-btn {
    background-color: #dc3545;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.exodus-contact-btn:hover {
    background-color: #c82333;
    color: white;
}
/* Footer Styles */
.exodus-footer {
    color: white;
    padding: 40px 40px 20px;
}
.exodus-footer-container {
    max-width: 1400px;
    margin: 0 auto;
}
.exodus-footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 30px;
}
.exodus-footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}
.exodus-footer-section ul {
    list-style: none;
}
.exodus-footer-section ul li {
    margin-bottom: 10px;
}
.exodus-footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.exodus-footer-section a:hover {
    color: white;
}
.exodus-footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .exodus-header {
        padding: 15px 20px;
    }
    .exodus-nav {
        display: none;
    }
    .exodus-footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
.exodus-hero {
    background: linear-gradient(135deg, #4a1a6b 0%, #2d1147 100%);
    background-image: url('/themes/inabata/img/business/img-exodus-topbackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 20px;
    text-align: center;
    position: relative;
    min-height: 500px;
}
.exodus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 17, 71, 0.7);
    z-index: 1;
}
.exodus-hero .acms-container {
    position: relative;
    z-index: 2;
}
.exodus-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .exodus-hero h1 {
        font-size: 32px;
    }
}
.exodus-hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .exodus-hero p {
        font-size: 16px;
    }
}
.exodus-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 15px 40px;
    background-color: #C80D42;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.exodus-btn:hover {
    background-color: #c82333;
    color: white;
}
@media (max-width: 768px) {
    .exodus-btn {
        font-size: 14px !important;
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
.exodus-section {
    padding: 60px 20px;
    background-color: #F5F5F6;
}
@media (max-width: 768px) {
  .exodus-section {
    padding: 30px 14px;
  }
}

.exodus-section-alt {
    background-color: #F5F5F6;
}
.exodus-product {
    margin-bottom: 60px;
}
.exodus-product-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .exodus-section-alt {
        background-color: #ffffff;
    }
    .exodus-product-flex {
        flex-direction: column;
        gap: 0;
        align-items: stretch;;
    }
}
.exodus-product-content {
    flex: 1;
    min-width: 300px;
}
.exodus-product-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.exodus-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.exodus-product h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #231F20;
}
.exodus-product p {
    color: #374150;
}

@media (max-width: 768px) {
    .exodus-product h2 {
        font-size: 28px;
    }
}
.exodus-product h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #374150;
    text-transform: uppercase;
    font-weight: bold;
}
@media (max-width: 768px) {
    .exodus-product h3 {
        margin-top: 24px;
        margin-bottom: 16px;
        font-size: inherit;
        color: inherit;
        text-transform: none;
    }
}
.exodus-features {
    list-style: none;
    padding: 0;
}
.exodus-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}
.exodus-features li:last-child {
    border-bottom: none;
}

.exodus-about {
  background: linear-gradient(to bottom, #374150 27%, #231F20 100%);
  padding: 80px 64px;
}
@media (max-width: 768px) {
    .exodus-about {
        padding: 60px 14px;
    }
}
        
.exodus-about .acms-container {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

/* 左テキスト */
.exodus-about-content {
  flex: 1;
  color: #fff;
}

/* 右画像 */
.exodus-about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exodus-about-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
}
.exodus-about-content h2 {
  font-size: 32px;
  margin-top: 12px;
  margin-bottom: 24px;
}

/* SP調整 */
@media (max-width: 768px) {
  .exodus-about .acms-container {
    flex-direction: column;
  }

  .exodus-about-content {
    padding: 0 ;
  }

  .exodus-about-image img {
    max-height: none;
  }
  .exodus-about-content h2 {
  font-size: 28px;
  margin-top: 12px;
  margin-bottom: 24px;
}
}

.exodus-contact-section {
    padding: 60px 14px;
    /* background-color: #f8f9fa; */
      background: linear-gradient(to bottom, #C80D42 0%, #A00B36 100%);
    color: #fff;
}
.exodus-contact-center {
    text-align: center;
    /* padding: 40px 20px; */
    /* max-width: 33.333%; */
    margin: 0 auto;
    padding: 40px 0;
    width: 100%;
}
.exodus-contact-center h1 {
    font-size: 1.9rem;
    line-height: 1.8;
    font-weight: 400;
}
@media screen and (max-width: 768px) {
  .exodus-contact-center h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  .exodus-about .acms-container {
    display: flex;
    flex-direction: column;
  }

  .exodus-about .acms-container {
    gap: 0 !important;        
    row-gap: 0 !important;    
    column-gap: 0 !important; 
  }

  .exodus-about-image {
    order: 1;
    margin-bottom: 24px; 
  }

  .exodus-about-content {
    order: 2;
  }
}

.exodus-contact-center .exodus-btn {
    background-color: #fff;
    color: #c80d42 !important;
}
.exodus-contact-center .exodus-btn:hover {
    background-color: #f3f3f3;
    color: #c80d42;
}
.exodus-contact-center p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
}
@media (max-width: 968px) {
    .exodus-contact-center {
        max-width: 100%;
    }
}
@media (max-width: 968px) {
    .exodus-contact-center {
        max-width: 100%;
    }
}
.exodus-contact-container {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
}
.exodus-contact-text {
    flex: 1;
    min-width: 300px;
}
.exodus-contact-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.exodus-product .exodus-product-title {
    font-size: 1.3rem;      
    font-weight: bold;
    color: #374150;
    margin-top: 30px;
    margin-bottom: 16px;    
}
@media screen and (max-width: 768px) {
    .exodus-product .exodus-product-title {
        font-size: 14px;
}
}
.exodus-product .exodus-list {
    padding-left: 20px;      
    margin: 0 0 24px 0;
    list-style: none;        
}

.exodus-product .exodus-list li {
    position: relative;
    font-size: 16px;
    color: #4A5565;          
    margin-bottom: 12px;     
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .exodus-product .exodus-list li{
       font-size: 14px;  
 }       
}
.exodus-product .exodus-list li::before {
    content: "";
    position: absolute;
    left: -14px;             
    top: 0.7em;              
    width: 6px;
    height: 6px;
    background: #C80D42;   
    border-radius: 50%;     
}

.exodus-contact-form {
    flex: 0.6;
    min-width: 280px;
    max-width: 400px;
}
.exodus-contact-form-wrapper {
    background-color: #e9ecef;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}
.exodus-contact-form-wrapper p {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
    line-height: 1.6;
}
@media (max-width: 968px) {
    .exodus-contact-container {
        flex-direction: column;
        gap: 40px;
    }
}
.exodus-form-group {
    margin-bottom: 15px;
}
.exodus-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}
.exodus-form-group input,
.exodus-form-group textarea,
.exodus-form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}
.exodus-form-group textarea {
    min-height: 80px;
    resize: vertical;
}
.exodus-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}
.exodus-checkbox input {
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}
.exodus-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.exodus-form-bottom .exodus-checkbox {
    flex: 1;
}
@media (max-width: 768px) {
    .exodus-form-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
.exodus-submit-btn {
    background-color: #C80D42;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.exodus-submit-btn:hover {
    background-color: #c82333;
}
.acms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .acms-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .exodus-product-content {
    display: contents;
  }
  .exodus-product-content h2 { order: 1; }
  .exodus-product-content p { order: 2; }
  .exodus-product-image {
    order: 3;
    margin: 20px 0;
  }

  .exodus-product-content h3 { order: 4; }
  .exodus-list { order: 5; }
  .exodus-btn { order: 6; }
}
.exodus-label {
  color: #C80D42;
}
/* H-600ヒーロー専用 */
.exodus-about.exodus-about-h600 .exodus-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exodus-about.exodus-about-h600 .exodus-btn {
  margin-top: 24px;
  align-self: flex-start;
  width: auto;
}

/* 技術的特徴セクション */
.exodus-tech-features {
  padding: 80px 14px;
  background: #fff;
  text-align: center;
}

.tech-title {
  font-size: 32px;
  color: #231F20;
  margin-bottom: 24px;
}

.tech-lead {
  font-size: 20px;
  color: #374150;
  margin-bottom: 48px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tech-box {
  background: #F5F5F6;
  border-radius: 8px;
  padding: 24px;
  text-align: left;
}

.tech-box h3 {
  font-size: 18px;
  color: #231F20;
  margin-bottom: 8px;
}

.tech-box p {
  font-size: 16px;
  color: #374150;
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 16px !important;
  }

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

  .tech-lead {
    font-size: 20px;
  }
}

.tech-box-head {
    display: flex;
    align-items: center;
    gap: 12px; 
    margin-bottom: 12px;
}

.tech-icon {
    width: 32px;
    height: 32px;
}

/* .exodus-main-features */
.exodus-main-features {
    background: #F5F5F6;
    padding: 80px 14px;
    text-align: center;
}

.features-title {
    font-size: 32px;
    color: #231F20;
    margin-bottom: 24px;
}

.features-lead {
    font-size: 20px;
    color: #374150;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.features-box {
    background: #FFFFFF;
    border: 1px solid rgba(55, 65, 80, 0.24); /* 374150 の 24% */
    border-radius: 10px;
    padding: 24px 24px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-icon {
    width: 32px;
    height: 32px;
}

.features-box p {
    margin: 0;
    font-size: 16px;
    color: #231F20;
    font-weight: 700;
}

.features-grid {
    display: grid;
    gap: 24px;
}

.features-grid.top-row {
    grid-template-columns: repeat(3, 1fr);
}
.features-grid.bottom-row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .features-grid_top-row,
  .features-grid_bottom-row,
  .features-grid {
    grid-template-columns: 1fr !important; 
  }
}

/* Specifications */
.exodus-specs {
    background: #FFFFFF;
    padding: 80px 14px;
}

.spec-title {
    text-align: center;
    font-size: 32px;
    color: #231F20;
    margin-bottom: 24px;
}

.spec-lead {
    text-align: center;
    font-size: 20px;
    color: #374150;
    margin-bottom: 24px;
}

.spec-table th {
    background: #374150;
    font-size: 18px;
    color: #FFFFFF;
    padding: 10px 16px;
    text-align: left;
    font-weight: bold;
}

.spec-table td {
    background: #FFFFFF;
    padding: 10px 16px;
    border-bottom: 1px solid #E0E0E0;
    vertical-align: top;
}

.spec-table td:first-child {
    font-weight: bold;
    width: 260px;
}

.spec-table th:first-child,
.spec-table td:first-child {
  width: 50%;   
}

.spec-table {
  font-size: 16px;
  width: 100%;
  table-layout: fixed; 
  border-collapse: separate;   
  border-spacing: 0;          
  border-radius: 4px;       
  overflow: hidden;          
  border: 2px solid #D3DAE6;
  background: #fff;
}

.spec-table th,
.spec-table td {
  border-bottom: 2px solid #D3DAE6;; 
}
.spec-table tr:last-child td {
  border-bottom: none !important;
}
@media screen and (max-width: 768px) {

    .spec-lead {
      background: #374150;
      color: #FFFFFF;
      font-size: 18px;
      padding: 12px 16px; 
      margin-bottom: 0;
      text-align: left;
      border-radius: 4px 4px 0 0;

      display: block;
      width: 100%;
      box-sizing: border-box;
  }

  .spec-table {
      border-top: none;
      border-radius: 0 0 4px 4px;
      margin-top: 0;
  }

  .spec-table thead,
  .spec-table th {
      display: none !important;
  }

  .spec-table tr {
      display: block;
      margin-bottom: 12px;
      border-bottom: 1px solid #E0E0E0 !important;
  }

  .spec-table tr:last-child {
      border-bottom: none !important;
      margin-bottom: 0;
      padding-bottom: 0;
      border-top: none !important;
  }

  .spec-table td {
      display: block;
      width: 100% !important;
      padding: 4px 16px;
      border-bottom: none !important; 
  }

  .spec-table tr {
      border-bottom: 1px solid #E0E0E0 !important;
  }

  .spec-table td:last-child {
      margin-bottom: 12px !important;
      display: block;
  }

  .spec-table tr:last-child td:last-child {
      margin-bottom: 12px !important;   
      border-bottom: none !important; 
  }
}





/* ▼ T-2800 セクション：上下センタリング */
.exodus-about-t2800 .acms-container {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
    .exodus-about-t2800 .acms-container {
        font-size: 28px;
        align-items: flex-start;
    }
}
.exodus-about-t2800 .exodus-about-content {
  color: #ffffff;
  max-width: 500px;
}

.exodus-about-t2800 .exodus-label {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}

.exodus-about-t2800 h2 {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
    .exodus-about-t2800 h2 {
        font-size: 28px;
    }
}
.exodus-about-t2800 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
    .exodus-about-t2800 p {
        margin-bottom: 0px;
     }
  }
.exodus-about-t2800 .exodus-btn {
  margin-top: 0; 
}

.features-grid-t2800 {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.top-row-t2800 {
    grid-template-columns: repeat(2, 1fr);
}

.bottom-row-t2800 {
    grid-template-columns: repeat(2, 1fr);
}

.features-box-t2800 {
    background: #fff;
    border: 1px solid rgba(55, 65, 80, 0.24);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-size: 16px;
    color: #231F20;
    font-weight: 700;
    padding: 24px 24px;
}

.features--box-t2800 p {
    margin: 0;
    font-size: 16px;
    color: #231F20;
    font-weight: 700;
}
.features-icon-t2800 {
    width: 32px;
    height: 32px;
}
.tech-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.tech-grid.top-row {
    grid-template-columns: repeat(3, 1fr); 
}

.tech-grid.bottom-row {
    grid-template-columns: repeat(2, 1fr);
}
.exodus-about-H-600 .exodus-label {
    color: #ffffff; 
}
/* H600ページの上（H600ヒーロー）→赤 */
.h600-page .exodus-about-h600 .exodus-label {
    color: #C80D42 !important;
}

/* H600ページの下（T2800紹介）→白 */
.h600-page .exodus-about-t2800 .exodus-label {
    color: #ffffff !important;
}
/* T2800ページの上（T2800ヒーロー）→赤 */
.t2800-page .exodus-about-t2800 .exodus-label {
    color: #C80D42 !important;
}

/* T2800ページの下（H600紹介）→白 */
.t2800-page .exodus-about-h600 .exodus-label {
    color: #ffffff !important;
}
@media screen and (max-width: 768px) {
  /* ボタンを exodus-about-content の外に移動したように見せる */
  .exodus-about-t2800 .exodus-about-content {
      display: contents; /* ← 子要素を親の外側に出せる */
  }

  .exodus-about-t2800 .exodus-about-content p,
  .exodus-about-t2800 .exodus-about-content h2 {
      order: 1;
  }

  .exodus-about-t2800 .exodus-product-image {
      order: 2;
  }

  .exodus-about-t2800 .exodus-about-content .exodus-btn {
      order: 3;
  } 
    .exodus-tech-features  {
        padding: 60px 14px;
    }
    .exodus-main-features {
    padding: 60px 14px;
    }
    .exodus-specs {
    padding: 60px 14px;
    }
    .tech-box h3{
        font-size: 16px;
    } 
    .tech-grid.top-row {
      grid-template-columns: 1fr !important;
      }
    .tech-grid.bottom-row {
      grid-template-columns: 1fr !important;
  }
    .features-grid-t2800.top-row-t2800 {
      grid-template-columns: 1fr !important;
  }

  .features-grid-t2800.bottom-row-t2800 {
      grid-template-columns: 1fr !important;
  }

  .features-grid-t2800 .features-box-t2800 {
      width: 100% !important;
  }
  .spec-title {
     text-align: left
    }

  /* 中身をすべて親の直下に展開して order が効くようにする */
  .exodus-about-h600 .exodus-about-content {
      display: contents !important;
  }

  /* テキストだけを order:1 に */
  .exodus-about-h600 .exodus-about-content p,
  .exodus-about-h600 .exodus-about-content h2 {
      order: 1;
  }

  /* 画像が2番目 */
  .exodus-about-h600 .exodus-product-image {
      order: 2;
      margin: 20px 0 !important;
  }

  /* ボタンを3番目 */
  .exodus-about-h600 .exodus-about-content .exodus-btn {
      order: 3;
      margin-top: 16px !important;
  }

  /* 親コンテナを縦並びに */
  .exodus-about-h600 .acms-container {
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 0 !important;
  }

  .exodus-btn {
      width: 100% !important;
      display: block;
      text-align: center;
  }
}


/* EVセクション */
.ev-info-section {
    padding: 80px 14px;
}

.ev-info-inner {
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    gap: 60px;
}

.ev-info-text {
    flex: 1;
}

.ev-info-text .exodus-label {
    color: #C80D42;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.ev-info-text h2 {
    font-size: 32px;
    color: #FFF;
    margin-bottom: 24px;
}

.ev-info-text p {
    font-size: 16px;
    color: #F5F5F6;
    margin-bottom: 24px;
}

.ev-info-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ev-info-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .ev-info-inner {
        flex-direction: column;
        gap: 40px;
    }
}

/* ev-solution-section */
.ev-solution-section {
  padding: 80px 14px;
}

.ev-solution-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.ev-solution-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #231F20;
}

.ev-solution-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #374150;
}
.ev-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 520px;
}
.ev-solution-item {
  background: #F5F5F6;
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
}

.ev-solution-item img {
  width: 48px;
  margin-bottom: 16px;
}

.ev-solution-item p {
  font-size: 16px;
  color: #231F20;
  font-weight: 700;
}
@media (max-width: 768px) {
  .ev-solution-inner {
    flex-direction: column;
  }
}

@media (min-width: 769px) {
  .ev-solution-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
  }

  .ev-solution-text {
    flex: 1;
    max-width: 50%;
  }

  .ev-solution-grid {
    flex: 1;
    max-width: 50%;
  }
}

@media screen and (max-width: 768px) {
    .ev-solution-section {
    padding: 60px 14px;
    }

    .ev-info-text .exodus-label {
    text-align: left ;
    display: block ;
    width: 100% ;
    }
    .ev-info-inner {
        display: flex;
        flex-direction: column;
    }

    .ev-info-text {
        display: contents ;
    }

    .ev-info-text p,
    .ev-info-text h2,
    .ev-info-text .exodus-label {
        order: 1;
    }

    .ev-info-image {
        order: 2;
        margin: 16px 0;
    }

    .ev-info-text .exodus-btn {
        order: 3;
        width: 100%;
        margin-top: 16px;
    }


  .ev-solution-inner {
    flex-direction: column;
  }

  .ev-solution-text,
  .ev-solution-grid {
    max-width: 100%;
    width: 100%;
  }

  .ev-solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-products-inner {
    flex-direction: column;
    gap: 40px; /* お好みで調整 */
  }

  .product-card {
    width: 100% !important;
    }

}







/* =========================================
   技術的特徴 セクション
========================================= */

.tech-products {
    text-align: center;
    padding: 80px 14px;
}

@media screen and (max-width: 768px) {
    .tech-products {
    padding: 60px 14px;
    }
}

.tech-products-inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
}

.product-card {
    width: 488px;
    min-height: 609px;
    background: linear-gradient(180deg, #374150 0%, #231F20 100%);
    border-radius: 12px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #fff;
}

.product-card img {
    width: 100%;
    height: 260px;       
    object-fit: contain; 
    margin-bottom: 24px;
}

.product-label {
    font-size: 14px;
    font-weight: bold;
    margin: 12px 0;
}

.product-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .product-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    }
    .product-card img {
    width: 100%;      
    margin-bottom: 0px;
    object-fit: contain; 
    }
}
.product-text {
    font-size: 16px;
    color: #F5F5F6;
    line-height: 1.7;
    margin-bottom: auto; 
}

.full-btn {
    width: 100%;
    margin-top: 32px;
    text-align: center;
}


/* SP対応 */
@media (max-width: 768px) {
    .product-cards {
        gap: 24px;
    }
    
}

/* ================================
   共通
   ================================ */

.ls-section-title {
    font-size: 32px;
    font-weight: bold;
    color: #231F20;
    line-height: 1.4;
    margin-bottom: 24px;

}

.ls-section-title.center {
    text-align: center;
}

.ls-section-body {
    font-size: 16px;
    line-height: 1.9;
    color: #374150;
}

.ls-section-lead {
    margin-top: 12px;
    font-size: 20px;
    color: #374150;
    text-align: center;
}

/* ================================
   Hero
   ================================ */
.ls-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ls-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
    display: block;
}

.ls-hero-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.ls-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    z-index: 2;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}


.ls-hero-title {
    font-size: 36px ;
    font-weight: bold ;
    color: #FFFFFF ;
    margin-bottom: 24px ;
    text-align: center ;
}

.ls-hero-text {
    font-size: 16px ;
    color: #F5F5F6 ;
    line-height: 1.8;
    text-align: center ;
}

@media (max-width: 768px) {
     .ls-hero-content {
      width: 100%;
      max-width: 90% !important; 
      padding: 0 12px; 
      }
  .ls-hero {
    width: 100%;
    height: 420px ;  
    overflow: hidden;        
    padding: 0 ;
  }

  .ls-hero-inner {
    height: 100% ;
  }

  .ls-hero-bg {
    width: 100%;
    height: 100% ;  
    object-fit: cover;  
    object-position: center top;
    display: block;
  }
  .ls-hero-title {
    white-space: nowrap;      
    width: 100%;          
    text-align: center;
    font-size: 30px;
    }
    .ls-hero-text {
    font-size: 14px;
    }
}






/* ================================
   医薬品製造の競争力強化セクション
   ================================ */

.ls-support {
    background-color: #f9fafb;
    padding: 80px 0;
}

.ls-support-inner {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.ls-support-text {
    flex: 1 1 50%;
}

.ls-support-image {
    flex: 1 1 50%;
}

.ls-support-image img {
    width: 100%;
    display: block;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .ls-support {
    padding: 60px 14px;
    }
  .ls-support-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ls-support-text {
    font-size: 28px ;
    display: contents;
  }

  .ls-section-title {
    order: 1;
  }

  .ls-support-image {
    order: 2;
    margin-bottom: 24px;
  }

  .ls-section-body {
    order: 3;
  }
}


/* ================================
   稲畑産業の強み
   ================================ */

.ls-strength {
    background-color: #f5f5f6;
    padding: 80px 0;
}

.ls-strength-head {
    margin-bottom: 40px;
}

.ls-strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ls-strength-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px 14px ;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    text-align: center;
    border: 3px solid rgba(55, 65, 80, 0.24); 
}


.ls-card-title {
    font-weight: bold;
    font-size: 16px;
    margin: 16px 0;
    color: #231F20;
}

.ls-card-text {
    font-size: 16px;
    color: #4A5565;
}
.ls-card-icon {
    width: 48px;       
    height: auto;
   } 

@media (max-width: 768px) {
    .ls-strength  {
    padding: 60px 14px;
    }
  .ls-strength-grid {
    display: grid;
    grid-template-columns: 1fr; /
    }
  .ls-strength-card {
    width: 100%;
    max-width: 100%;
    }
}










/* heaader */
.exodus-header2 {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    box-sizing: border-box;
    gap: 20px;
    text-align: center;
    font-size: 16px;
    color: #231f20;
    font-family: Helvetica;
    }
    .exodus-header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    }
    .exodus-products-parent {
    display: none;
    align-items: center;
    }
    .exodus-products {
    position: relative;
    font-weight: 600;
    }
    .exodus-chevron-down-1-icon {
    height: 24px;
    width: 24px;
    position: relative;
    }
.primary-button {
    border-radius: 4px;
    background-color: #c80d42;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    color: #fff;
    transition: background-color 0.3s;
    }
.primary-button:hover {
    background-color: #c82333;
    color: #fff;
    }


/* Footer */
.exodus-footer {
    width: 100%;
    position: relative;
    background-color: #231f20;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 64px 64px;
    box-sizing: border-box;
    text-align: left;
    font-size: 14px;
    color: #f5f5f6;
    font-family: Heebo;
    }
    .exodus-container {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    padding: 40px 0px;
    gap: clamp(80px, 8vw, 160px);
    }
    .exodus-content {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    }
    .exodus-logo-parent {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    }
    .exodus-footer-logo {
    width: 200px;
    height: 34.5px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    }
    .your-trusted-partner {
    align-self: stretch;
    position: relative;
    line-height: 21px;
    }
    .social-links-icon {
    width: 24px;
    height: 24px;
    }
    .exodus-footer-nav {
        flex: 1;
        display: flex;
        align-items: flex-start;
        gap: 20px; /* 固定 */
        font-size: 16px;
        font-family: Helvetica;
    }
    .exodus-nav {
    flex: 1;
    display: flex;
    align-items: flex-start;
    }
    .exodus-footer-nav-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    }
    .exodus-title {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    color: #fff;
    }
    .exodus-quick-links {
    position: relative;
    }
    .exodus-quick-links-columns {
        display: flex;
        gap: 20px;
        width: 100%;
    }
    
    .exodus-quick-links-col {
        display: flex;
        flex-direction: column;
        gap: clamp(12px, 2vw, 24px);
        min-width: clamp(140px, 12vw, 240px);
    }
    
    .exodus-quick-links-col:first-child {
        min-width: max-content;
    }    
    .exodus-home {
    align-self: stretch;
    position: relative;
    line-height: 145%;
    }
    .exodus-about-us {
    width: 152px;
    height: 23px;
    position: relative;
    line-height: 145%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    }
    .exodus-footer-nav-wrap2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    min-width: max-content;
    }
    .exodus-container2 {
    align-self: stretch;
    height: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 33px 0px 0px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: Helvetica;
    }
    .exodus-paragraph {
    align-self: stretch;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
  .exodus-copyright-inabata {
      letter-spacing: 0.4px;
      line-height: 16px;
    }

    /* ===============================
   EXODUS フッター（SP専用）
   PC には絶対影響しない！
================================ */
@media screen and (max-width: 960px) {

  /* フッター全体の横幅と余白 */
  .exodus-footer {
    padding: 40px 24px 60px;
    align-items: flex-start;
    text-align: left;
  }

  /* コンテンツ上下の余白を狭く */
  .exodus-container {
    flex-direction: column;
    gap: 60px;
    padding: 0;
  }

  /* 左側（ロゴ＋テキスト）を横幅100%に */
  .exodus-content {
    width: 100%;
  }

  /* “Your trusted partner…” のテキスト左揃え */
  .your-trusted-partner {
    text-align: left !important;
    max-width: 260px;
  }

  /* フッターナビを縦並びに */
  .exodus-footer-nav {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  /* 各メニュー（クイックリンク / サポート） */
  .exodus-nav {
    width: 100%;
  }

  /* リンクの行間などを統一 */
  .exodus-footer-link {
    font-size: 14px;
    line-height: 1.6;
  }

  /* コピーライト部分の余白調整 */
  .exodus-container2 {
    padding: 24px 0 0;
    height: auto;
    justify-content: flex-start;
  }

  /* ← フッターの nav だけブロックにする */
  .exodus-footer .exodus-nav {
    display: block !important;
    width: 100%;
  }
}

/* ============================
   SP フッター修正（960px以下）
============================ */

@media screen and (max-width: 960px) {

  .exodus-footer .exodus-nav {
    display: block !important;
    width: 100%;
  }

  .exodus-footer-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }

  .exodus-footer-nav-wrap,
  .exodus-footer-nav-wrap2 {
    width: 48%;
  }

  .exodus-quick-links-columns {
    display: block !important;
  }

  .exodus-quick-links-col {
    display: block !important;
    margin-bottom: 10px;
  }


  .exodus-footer-link {
    display: block;
    font-size: 16px;

  }

  .exodus-title b {
    white-space: nowrap; 
    display: block;
    font-size: 16px;
    color: #fff;
  }

  .exodus-quick-links-col {
    min-width: 0 !important;
    width: auto;
  }

  .exodus-home,
  .exodus-about-us {
    margin-bottom: 10px;
  }


  .exodus-quick-links-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .exodus-quick-links-col {
    width: 50%;      /* ← 左右で半分ずつしっかり幅を確保 */
    min-width: 0;    /* ← 折り返し原因を除去 */
  }

  .exodus-footer-link {
    white-space: nowrap; /* ← 強制的に1行にする */
  }

}





/* ===============================
   EXODUS ハンバーガーメニュー（SPのみ）
================================ */
/* ========== PC専用 ========== */
@media screen and (min-width: 961px) {
    .exodus-menuButton {
        display: none !important;
    }
    #exodus-nav {
        display: none !important;
        position: static !important;
    }
}

/* ===============================
   EXODUS SP HEADER
================================ */
@media screen and (max-width: 960px) {

  /* ヘッダー本体 */
  .exodus-header2 {
      height: 60px;
      padding: 0 9px 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      position: relative;
      z-index: 9999;
  }

  /* ロゴ */
  .exodus-header2 .logo img {
      height: 30px;
  }

  /* PCナビは非表示 */
  .exodus-header2 .exodus-header-nav {
      display: none !important;
  }

  /* ハンバーガー */
  .exodus-menuButton {
      display: flex !important;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      background: #E50053;
      border-radius: 8px;
      padding: 10px;
      cursor: pointer;
      position: static !important;
  }

  .exodus-menuButton .bar-wrap {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }

  .exodus-menuButton .bar {
      width: 22px;
      height: 2px;
      background: #fff;
      transition: 0.3s;
  }

  /* X アニメーション */
  .exodus-menuButton.-open .bar:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
  }
  .exodus-menuButton.-open .bar:nth-child(2) {
      opacity: 0;
  }
  .exodus-menuButton.-open .bar:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
  }

  /* SPナビ */
  #exodus-nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 20px 24px;
      z-index: 9998;
  }

  #exodus-nav.active {
      display: flex;
  }

  #exodus-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      width: 100%;
  }

  #exodus-nav ul li {
      border-bottom: 1px solid #ddd;
  }

  #exodus-nav ul li a {
      display: block;
      text-align: left;
      padding: 16px 4px;
      font-size: 20px;
      color: #231F20;
  }

  #exodus-nav .primary-button {
      width: 100%;
      text-align: center;
      padding: 14px 0;
      margin-top: 16px;
      background: #C80D42;
      color: #fff;
      border-radius: 4px;
  }
  .exodus-menu-text {
    font-size: 12px;
    color: #333;
    line-height: 1.5;
    max-width: 260px; 
    font-size: 14px;
    text-align: left;
  }

    .exodus-nav {
    align-items: flex-start !important;
    }
}

.exodus-footer a {
  color: #fff ;
}
.exodus-footer a:visited {
  color: #B0E0E6 ;
}

.exodus-header-nav a.link_select,
#exodus-nav a.link_select {
    color: #b63b4d !important;
    font-weight: 700;
}

a.primary-button:visited {
    color: #ffffff !important;
}

.exodus-btn:visited {
    color: #ffffff ;
}

.link-white,
.link-white:visited,
.link-white:hover,
.link-white:active {
  color: #ffffff ;
}


