@charset "utf-8";

/**
 * AIQOS 新規改修コンテンツ専用CSS
 * 管理者: 2026年 改修担当
 */

:root {
  --aq-sys: #0A95D6;
  --aq-ad: #05C270;
  --aq-text: #344955;
  --aq-sys-bg: #e7f0f6;
  --aq-ad-bg: #e9f6ef;
  --aq-white: #ffffff;
}

/* --- 基本レイアウト --- */
.new-content-wrapper {
  color: var(--aq-text);
  line-height: 1.8;
  overflow-x: hidden;
}

.new-content-wrapper section {
  padding: 100px 0;
}

.new-content-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

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

/* --- 見出し装飾 --- */
.sec-label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  color: var(--aq-text);
}

.sec-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.sec-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--aq-sys);
}

.biz-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.sys-color { color: var(--aq-sys); }
.ad-color { color: var(--aq-ad); }
.sys-label { color: var(--aq-sys); }
.ad-label { color: var(--aq-ad); }

/* --- サービスカード --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.card {
  background: var(--aq-white);
  padding: 35px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  text-align: left;
  box-shadow: 0 4px 20px rgba(52, 73, 85, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(52, 73, 85, 0.1);
}

.card-icon {
  width: 65px;
  margin-right: 25px;
  flex-shrink: 0;
}

.card-icon img {
  width: 100%;
  height: auto;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.card-text {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.card-sys { border-left: 6px solid var(--aq-sys); }
.card-ad { border-left: 6px solid var(--aq-ad); }

/* 5枚目のカードのセンター寄せ */
.card.is-center {
  grid-column: span 2;
  justify-self: center;
  width: calc(50% - 12px);
}

/* 広告セクションの6枠目（CTA） */
.is-cta {
  background: var(--aq-ad);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: none;
}

.is-cta:hover {
  background: #04a55f;
}

/* --- 特長（斜線レイアウト） --- */
.feature-area {
  margin-top: 80px;
}

.feature-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.feature-item {
  flex: 1;
  padding: 0 45px;
  position: relative;
}

/* 斜線のSVG背景 */
.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  height: 80%;
  width: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 10 100' preserveAspectRatio='none'%3E%3Cline x1='0' y1='100' x2='10' y2='0' stroke='%23344955' stroke-width='0.2' stroke-opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  transform: translateX(50%);
}

.num-box {
  position: relative;
  height: 70px;
}

.num {
  font-size: 72px;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}

.pt {
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  bottom: 12px;
  left: 95px;
}

/* --- 強み（シナジー） --- */
.sec-strength {
  background: linear-gradient(135deg, var(--aq-sys-bg) 0%, var(--aq-ad-bg) 100%);
}

.synergy-inf {
  margin: 50px 0;
}

.strength-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.s-card {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* --- レスポンシブ調整 --- */
@media (max-width: 960px) {
  .card-grid,
  .feature-grid,
  .strength-cards {
    grid-template-columns: 1fr;
    display: block;
  }

  .card.is-center {
    width: 100%;
  }

  .feature-item {
    padding: 40px 0;
    border-bottom: 1px dashed #ddd;
  }

  .feature-item::after {
    display: none;
  }

  .sec-title {
    font-size: 26px;
  }
}
