.infinity-section {
    font-family: 'Segoe UI', 'Hiragino Sans', 'Meiryo', sans-serif;
    background: #efefef;
    color: #333;
    padding: 60px 0 40px 0;
    margin: 0;
}
.infinity-container {
    max-width: 100%;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 48px 32px 32px 32px;
}
.infinity-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    text-align: center;
}
.infinity-lead {
    font-size: 1.2rem;
    color: #333333;
    text-align: center;
    margin-bottom: 36px;
}
.infinity-section h2, .infinity-section h3 {
    color: #00c6ff;
    margin-top: 36px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.infinity-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  position: relative;
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 12px;
}

.infinity-section h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #e63946; /* ブランドカラーなどに応じて変更可 */
  margin: 12px auto 0;
  border-radius: 2px;
}

.infinity-list {
    margin: 0 0 24px 0;
    padding: 0 0 0 18px;
}
.infinity-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.infinity-badge {
    display: inline-block;
    background: #00c6ff;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 2px 12px;
    margin-right: 8px;
    vertical-align: middle;
    letter-spacing: 0.03em;
}
.infinity-feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* スマホ対応 */
  max-width: 1080px;
  margin: 40px auto;
}

.infinity-feature-left {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.infinity-feature-right {
  flex: 1 1 500px;
}

.lottie-large {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.infinity-feature-content b {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.infinity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infinity-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* スマホ：縦並びに変更 */
@media (max-width: 768px) {
  .infinity-feature-row {
    flex-direction: column;
  }

  .infinity-feature-left,
  .infinity-feature-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .infinity-feature-content {
    padding: 0 16px;
  }
}

.infinity-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* デフォルトは2列 */
  gap: 24px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px; /* スマホで左右に余白 */
}
.infinity-card{
	padding:10px;
}
/* ▼ スマホ（〜767px）は1列表示 */
@media (max-width: 767px) {
  .infinity-cards {
    grid-template-columns: 1fr;
  }
}


.infinity-card-img {
  width: 100%;
  max-width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

/* ▼ スマホ（〜480px）では少し小さく */
@media (max-width: 480px) {
  .infinity-card-img {
    max-width: 60px;
    height: 60px;
  }
}

/* ▼ タブレット（〜768px）では中サイズ */
@media (max-width: 768px) {
  .infinity-card-img {
    max-width: 70px;
    height: 70px;
  }
}

.infinity-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px 0 rgba(0,198,255,0.18);
}
.infinity-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #00c6ff;
    margin-bottom: 8px;
}
.infinity-card ul {
    padding-left: 18px;
    margin: 0;
}
.infinity-card-img {
   width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.infinity-feature-img {
    width: 100%;
    max-width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #e0e0e0;
}
.infinity-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 40px auto;
  padding: 0 16px;
}

.infinity-feature-item {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.feature-img {
  margin-bottom: 16px;
}

.lottie-box {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.feature-text b {
  font-size: 1.2rem;
  color: #1a1a1a;
  display: block;
  margin-bottom: 12px;
}

.infinity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.95rem;
}

.infinity-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* スマホは1列 */
@media (max-width: 768px) {
  .infinity-feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) {
  .infinity-feature-item:nth-child(3),
  .infinity-feature-item:nth-child(4) {
    transform: translateX(100px); /* ← お好みで調整（例：20px〜40px） */
  }
}
.feature{
	  background: linear-gradient(to bottom, #f4f6f9, #e8edf3);
  border-top: 1px solid #d0d8e0;
  border-bottom: 1px solid #d0d8e0;
}
/*  */
.infinity-cards2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.infinity-card2 {
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,198,255,0.08);
  padding: 22px 18px 18px;
  transition: transform 0.2s;
  text-align: center;
}

/* Lottieアニメサイズ調整 */
.infinity-card2 dotlottie-wc {
  width: 200px !important;
  height: 200px !important;
  margin: 0 auto 16px;
}

/* カードタイトル */
.infinity-card2-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

/* リスト */
.infinity-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infinity-card li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* スマホ：2列→1列へ切り替え */
@media (max-width: 1024px) {
  .infinity-cards2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .infinity-cards2 {
    grid-template-columns: 1fr;
  }
}
/*  */
.infinity-feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1080px;
  margin: 40px auto;
  padding: 0 16px;
  flex-wrap: wrap; /* スマホ対応 */
}

.infinity-feature-text {
  flex: 1 1 50%;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1a1a1a;
}

.infinity-feature-text b {
  font-size: 1.4rem;
  color: #0e2a47;
}

.infinity-feature-lottie {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* スマホ時：縦並び（lotie → text） */
@media (max-width: 768px) {
  .infinity-feature-row {
    flex-direction: column;
    text-align: center;
  }

  .infinity-feature-text {
    order: 2;
    padding-top: 20px;
  }

  .infinity-feature-lottie {
    order: 1;
  }
}

/*  */
.infinity-flow-section {
  background: #f9fbfc;
  padding: 80px 20px;
}

.infinity-flow-heading {
  font-size: 2rem;
  text-align: center;
  color: #0e2a47;
  margin-bottom: 48px;
  position: relative;
}

.infinity-flow-heading .infinity-badge {
  background-color: #007aff;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-left: 10px;
}

/* グリッド表示 */
.infinity-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* STEPカード */
.infinity-flow-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infinity-flow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* Lottie */
.flow-lottie {
  width: 300px;
  height: 300px;
  margin: 0 auto 16px;
}

/* テキスト */
.infinity-flow-step strong {
  display: block;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.infinity-flow-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/*  */
.infinity-pricing-section {
  background: #f9fbfc;
  padding: 80px 20px;
  text-align: center;
}

.infinity-pricing-heading {
  font-size: 2rem;
  color: #0e2a47;
  margin-bottom: 48px;
  font-weight: 600;
}

.infinity-pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-column {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.pricing-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.featured {
  border: 2px solid #007aff;
  background: linear-gradient(to bottom, #f0f8ff, #ffffff);
}

.pricing-lottie {
  width: 120px !important;
  height: 120px !important;
  margin: 0 auto 20px;
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.pricing-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007aff;
  margin-bottom: 16px;
}

.pricing-summary {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pricing-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

.pricing-details li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 1.2em;
}

.pricing-details li::before {
  content: "✔";
  color: #007aff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.pricing-note {
  margin-top: 32px;
  font-size: 0.9rem;
  color: #999;
}
/*  */
.infinity-main-visual {
    width: 100%;
    max-width: 700px;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin: 0 auto 32px auto;
    display: block;
    background: #e0e0e0;
    box-shadow: 0 4px 24px 0 rgba(0,198,255,0.10);
}
@media (max-width: 900px) {
    .infinity-cards, .infinity-pricing, .infinity-flow {
        flex-direction: column;
        gap: 12px;
    }
    .infinity-container {
        padding: 24px 8px 18px 8px;
    }
    .infinity-main-visual {
        height: 120px;
    }
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCは3列 */
  gap: 30px;
}

.works-item {
  text-align: center;
  border: 1px solid #e3e3e3;
  padding: 20px;
  border-radius: 10px;
  background-color: #f5fbfd;
	display:flex;
	justify-content:center;
}

.works-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.works-title {
  font-size: 1.1em;
  font-weight: bold;
  margin: 10px 0;
}

.works-link a {
  display: inline-block;
  margin-top: 8px;
  color: #0073aa;
  text-decoration: underline;
}
.works-content{
	padding:10px;
	align-content:center;
}
/* ▼ スマホ（〜767px）では2列にする */
@media (max-width: 767px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .works-item {
    padding: 15px;
  }
}
.works-image img {
  width: 80px;        /* ← ここでサイズを指定 */
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* LP */
.lp-section{font-family: 'Segoe UI', 'Meiryo', sans-serif;
      background: #181c23;
      color: #f5f5f7;
      margin: 0;
      padding: 0;
      line-height: 1.7;
}
    .lpservice-hero {
      background: linear-gradient(120deg, #0f2027 0%, #2c5364 100%);
      padding: 60px 0 40px 0;
      text-align: center;
      position: relative;
    }
    .lpservice-hero-logo {
      width: 120px;
      border-radius: 50%;
      margin-bottom: 20px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    }
    .lpservice-hero-title {
      font-size: 2.6rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      color: #00ffe7;
      margin-bottom: 10px;
      text-shadow: 0 2px 12px #000;
    }
    .lpservice-hero-desc {
      font-size: 1.2rem;
      color: #e0e0e0;
      margin-bottom: 0;
    }
    .lpservice-section {
      max-width: 900px;
      margin: 40px auto;
      background: #23272f;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.18);
      padding: 40px 32px 32px 32px;
    }
    .lpservice-section-title {
      font-size: 2rem;
      font-weight: 700;
      color: #00ffe7;
      border-left: 6px solid #00ffe7;
      padding-left: 16px;
      margin-bottom: 24px;
      letter-spacing: 0.04em;
    }
    .lpservice-features,
    .lpservice-plans,
    .lpservice-faq,
    .lpservice-contact {
      margin-bottom: 32px;
    }
    .lpservice-features-list,
    .lpservice-plans-list,
    .lpservice-faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .lpservice-features-list li,
    .lpservice-plans-list li,
    .lpservice-faq-list li {
      margin-bottom: 18px;
      background: #1a1d23;
      border-left: 4px solid #00ffe7;
      padding: 16px 18px;
      border-radius: 8px;
      font-size: 1.08rem;
      box-shadow: 0 2px 8px rgba(0,255,231,0.04);
    }
    .lpservice-features-list li strong,
    .lpservice-plans-list li strong {
      color: #00ffe7;
      font-weight: 700;
    }
    .lpservice-case-studies {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 32px;
    }
    .lpservice-case-card {
      background: #1a1d23;
      border-radius: 10px;
      flex: 1 1 260px;
      min-width: 260px;
      max-width: 320px;
      padding: 18px 16px 16px 16px;
      box-shadow: 0 2px 12px rgba(0,255,231,0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .lpservice-case-card-img {
      width: 100%;
      max-width: 220px;
      border-radius: 8px;
      margin-bottom: 12px;
      object-fit: cover;
      background: #222;
    }
    .lpservice-case-title {
      font-weight: 700;
      color: #00ffe7;
      margin-bottom: 6px;
      font-size: 1.1rem;
    }
    .lpservice-case-desc {
      font-size: 0.98rem;
      color: #e0e0e0;
      text-align: center;
    }
    .lpservice-flow {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 32px;
    }
    .lpservice-flow-step {
      background: #1a1d23;
      border-left: 4px solid #00ffe7;
      border-radius: 8px;
      padding: 16px 18px;
      font-size: 1.08rem;
      position: relative;
    }
    .lpservice-flow-step::before {
      content: attr(data-step);
      position: absolute;
      left: -38px;
      top: 50%;
      transform: translateY(-50%);
      background: #00ffe7;
      color: #181c23;
      font-weight: bold;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 2px 8px rgba(0,255,231,0.12);
    }
    .lpservice-plans-list li {
      border-left: 4px solid #ffb300;
    }
    .lpservice-plans-list li strong {
      color: #ffb300;
    }
    .lpservice-faq-list li {
      border-left: 4px solid #3fa9f5;
    }
    .lpservice-faq-q {
      color: #3fa9f5;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .lpservice-faq-a {
      color: #e0e0e0;
      margin-left: 8px;
    }
    .lpservice-contact-section {
      background: linear-gradient(90deg, #00ffe7 0%, #3fa9f5 100%);
      color: #181c23;
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 2px 16px rgba(0,255,231,0.08);
    }
    .lpservice-contact-section h3 {
      color: #181c23;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .lpservice-contact-info {
      margin: 18px 0 0 0;
      font-size: 1.08rem;
      color: #181c23;
      line-height: 2;
    }
    .lpservice-contact-info strong {
      color: #23272f;
    }
    @media (max-width: 700px) {
      .lpservice-section {
        padding: 24px 8px 18px 8px;
      }
      .lpservice-case-studies {
        flex-direction: column;
        gap: 12px;
      }
      .lpservice-case-card {
        max-width: 100%;
      }
      .lpservice-flow-step::before {
        left: -24px;
        width: 24px;
        height: 24px;
        font-size: 0.95rem;
      }
    }
/* creative */
 :root {
      --creative-main: #0a2540;
      --creative-accent: #00b4d8;
      --creative-bg-gradient: linear-gradient(135deg, #0a2540 0%, #1e3c72 100%);
      --creative-card-bg: #fff;
      --creative-card-shadow: 0 4px 24px rgba(10,37,64,0.08);
      --creative-radius: 16px;
      --creative-font: 'Noto Sans JP', 'Segoe UI', Arial, sans-serif;
      --creative-bold: 700;
      --creative-normal: 400;
    }
.creative-section{
	  margin: 0;
      font-family: var(--creative-font);
      background: var(--creative-bg-gradient);
      color: #222;
      line-height: 1.8;
      letter-spacing: 0.02em;
}
.creative-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 48px 16px 64px 16px;
    }
    .creative-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .creative-title {
      font-size: 2.6rem;
      font-weight: var(--creative-bold);
      color: #fff;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
      text-shadow: 0 2px 16px rgba(0,0,0,0.18);
    }
    .creative-subtitle {
      font-size: 1.2rem;
      color: var(--creative-accent);
      margin-bottom: 8px;
      font-weight: var(--creative-bold);
      letter-spacing: 0.1em;
    }
    .creative-lead {
      color: #e0e6ed;
      font-size: 1.1rem;
      margin-bottom: 32px;
    }
    .creative-section {
      margin-bottom: 48px;
    }
    .creative-section-title {
      font-size: 2rem;
      color: var(--creative-main);
      font-weight: var(--creative-bold);
      margin-bottom: 20px;
      border-left: 6px solid var(--creative-accent);
      padding-left: 16px;
      background: #f7fafc;
      border-radius: 8px;
      display: inline-block;
    }
    .creative-card-list {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      margin-bottom: 32px;
    }
    .creative-card {
      background: var(--creative-card-bg);
      box-shadow: var(--creative-card-shadow);
      border-radius: var(--creative-radius);
      padding: 32px 24px;
      flex: 1 1 320px;
      min-width: 300px;
      max-width: 48%;
      transition: transform 0.2s, box-shadow 0.2s;
      border-left: 5px solid var(--creative-accent);
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .creative-card-image {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 16px;
      background: #e9ecef;
      display: block;
    }
    .creative-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 8px 32px rgba(0,180,216,0.12);
    }
    .creative-card-title {
      font-size: 1.15rem;
      font-weight: var(--creative-bold);
      color: var(--creative-main);
      margin-bottom: 12px;
      letter-spacing: 0.04em;
    }
    .creative-card ul {
      padding-left: 1.2em;
      margin: 0;
    }
    .creative-card ul li {
      margin-bottom: 8px;
      font-size: 1rem;
    }
    .creative-results-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--creative-card-shadow);
      margin-bottom: 32px;
    }
    .creative-results-table th, .creative-results-table td {
      padding: 14px 12px;
      border-bottom: 1px solid #e3e8ee;
      text-align: left;
      font-size: 1rem;
    }
    .creative-results-table th {
      background: #f1f8fa;
      color: var(--creative-main);
      font-weight: var(--creative-bold);
    }
    .creative-results-table tr:last-child td {
      border-bottom: none;
    }
    .creative-results-images {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 24px;
      justify-content: center;
    }
    .creative-results-imgbox {
      width: 180px;
      background: #f7fafc;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(10,37,64,0.06);
      padding: 10px;
      text-align: center;
    }
    .creative-results-imgbox img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 8px;
      background: #e9ecef;
    }
    .creative-results-imgbox span {
      font-size: 0.98rem;
      color: #555;
    }
    .creative-flow-list {
      counter-reset: creative-step;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .creative-flow-list li {
      position: relative;
      background: var(--creative-card-bg);
      border-radius: 12px;
      box-shadow: var(--creative-card-shadow);
      margin-bottom: 18px;
      padding: 20px 24px 20px 56px;
      font-size: 1.05rem;
      font-weight: var(--creative-normal);
      display: flex;
      align-items: center;
    }
    .creative-flow-img {
      width: 36px;
      height: 36px;
      object-fit: cover;
      border-radius: 50%;
      margin-right: 16px;
      background: #e9ecef;
      flex-shrink: 0;
    }
    .creative-flow-list li:before {
      counter-increment: creative-step;
      content: counter(creative-step);
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--creative-accent);
      color: #fff;
      font-weight: var(--creative-bold);
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 2px 8px rgba(0,180,216,0.08);
    }
    .creative-plan-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--creative-card-shadow);
      margin-bottom: 32px;
    }
    .creative-plan-table th, .creative-plan-table td {
      padding: 14px 12px;
      border-bottom: 1px solid #e3e8ee;
      text-align: left;
      font-size: 1rem;
    }
    .creative-plan-table th {
      background: #f1f8fa;
      color: var(--creative-main);
      font-weight: var(--creative-bold);
    }
    .creative-plan-table tr:last-child td {
      border-bottom: none;
    }
    .creative-plan-images {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
      justify-content: center;
    }
    .creative-plan-imgbox {
      width: 120px;
      text-align: center;
    }
    .creative-plan-imgbox img {
      width: 100%;
      height: 70px;
      object-fit: cover;
      border-radius: 8px;
      background: #e9ecef;
      margin-bottom: 6px;
    }
    .creative-plan-imgbox span {
      font-size: 0.95rem;
      color: #666;
    }
    .creative-faq {
      background: #fff;
      border-radius: 12px;
      box-shadow: var(--creative-card-shadow);
      padding: 32px 24px;
      margin-bottom: 32px;
    }
    .creative-faq-item {
      margin-bottom: 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .creative-faq-img {
      width: 36px;
      height: 36px;
      object-fit: cover;
      border-radius: 50%;
      background: #e9ecef;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .creative-faq-q {
      color: var(--creative-accent);
      font-weight: var(--creative-bold);
      margin-bottom: 4px;
      font-size: 1.05rem;
    }
    .creative-faq-a {
      color: #222;
      margin-left: 1.2em;
      font-size: 1rem;
    }
    .creative-contact {
      background: var(--creative-main);
      color: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0,37,64,0.12);
      padding: 36px 24px;
      text-align: center;
      margin-bottom: 32px;
    }
    .creative-contact strong {
      color: var(--creative-accent);
      font-size: 1.1rem;
    }
    .creative-contact-image {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 18px;
      background: #e9ecef;
      display: inline-block;
    }
    .creative-contact-list {
      margin: 24px 0 0 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
    }
    .creative-contact-list li {
      font-size: 1.05rem;
      font-weight: var(--creative-bold);
      letter-spacing: 0.04em;
    }
    .creative-contact-list a {
      color: var(--creative-accent);
      text-decoration: none;
      transition: color 0.2s;
    }
    .creative-contact-list a:hover {
      color: #fff;
      text-decoration: underline;
    }
    @media (max-width: 900px) {
      .creative-card-list {
        flex-direction: column;
        gap: 20px;
      }
      .creative-card {
        max-width: 100%;
      }
      .creative-results-images,
      .creative-plan-images {
        flex-direction: column;
        gap: 12px;
        align-items: center;
      }
    }
    @media (max-width: 600px) {
      .creative-container {
        padding: 24px 4px 32px 4px;
      }
      .creative-section-title {
        font-size: 1.3rem;
        padding-left: 10px;
      }
      .creative-title {
        font-size: 1.5rem;
      }
      .creative-card, .creative-faq, .creative-contact {
        padding: 18px 8px;
      }
      .creative-plan-table, .creative-results-table {
        font-size: 0.95rem;
      }
      .creative-results-imgbox,
      .creative-plan-imgbox {
        width: 100%;
        max-width: 220px;
      }
    }
/*ad  */
 /* ユニークなクラス名で装飾 */
    .adpage-infinity {
      font-family: 'Segoe UI', 'Meiryo', sans-serif;
      background: linear-gradient(135deg, #f7fafd 0%, #e3e8ee 100%);
      color: #222;
      margin: 0;
      padding: 0;
    }
    .adpage-infinity-header {
      background: linear-gradient(90deg, #0f2027 0%, #2c5364 100%);
      color: #fff;
      padding: 60px 0 40px 0;
      text-align: center;
      position: relative;
    }
    .adpage-infinity-header h1 {
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: 0.05em;
    }
    .adpage-infinity-header p {
      font-size: 1.2rem;
      margin-bottom: 0;
      opacity: 0.9;
    }
    .adpage-infinity-header img {
      position: absolute;
      right: 40px;
      top: 30px;
      width: 120px;
      opacity: 0.15;
      z-index: 0;
    }
    .adpage-infinity-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 20px 60px 20px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 32px rgba(44,83,100,0.10);
      position: relative;
      top: -40px;
      z-index: 1;
    }
    .adpage-infinity-section {
      margin-bottom: 56px;
    }
    .adpage-infinity-section h2 {
      font-size: 2rem;
      color: #0f2027;
      border-left: 6px solid #2c5364;
      padding-left: 16px;
      margin-bottom: 24px;
      font-weight: 700;
    }
    .adpage-infinity-section h3 {
      font-size: 1.3rem;
      color: #2c5364;
      margin-bottom: 16px;
      font-weight: 600;
    }
    .adpage-infinity-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      align-items: flex-start;
    }
    .adpage-infinity-flex .adpage-infinity-img {
      flex: 1 1 320px;
      min-width: 280px;
      max-width: 400px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(44,83,100,0.08);
    }
    .adpage-infinity-flex .adpage-infinity-content {
      flex: 2 1 400px;
      min-width: 320px;
    }
    .adpage-infinity-list {
      margin: 0 0 0 1.2em;
      padding: 0;
      list-style: disc;
    }
    .adpage-infinity-list li {
      margin-bottom: 12px;
      font-size: 1.05rem;
      line-height: 1.7;
    }
    .adpage-infinity-point {
      background: #e3e8ee;
      border-left: 5px solid #2c5364;
      padding: 18px 24px;
      border-radius: 8px;
      margin-bottom: 18px;
      font-size: 1.08rem;
    }
    .adpage-infinity-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 24px;
    }
    .adpage-infinity-card {
      background: #f7fafd;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(44,83,100,0.07);
      padding: 24px 20px;
      flex: 1 1 300px;
      min-width: 260px;
      max-width: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .adpage-infinity-card img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 16px;
      background: #e3e8ee;
    }
    .adpage-infinity-card strong {
      font-size: 1.1rem;
      color: #2c5364;
      margin-bottom: 8px;
      display: block;
    }
    .adpage-infinity-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0;
      background: #f7fafd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(44,83,100,0.07);
    }
    .adpage-infinity-table th, .adpage-infinity-table td {
      padding: 14px 18px;
      border-bottom: 1px solid #e3e8ee;
      text-align: left;
    }
    .adpage-infinity-table th {
      background: #e3e8ee;
      color: #2c5364;
      font-weight: 700;
    }
    .adpage-infinity-table tr:last-child td {
      border-bottom: none;
    }
    .adpage-infinity-faq {
      margin-top: 32px;
    }
    .adpage-infinity-faq-item {
      margin-bottom: 24px;
      background: #f7fafd;
      border-radius: 8px;
      padding: 18px 20px;
      box-shadow: 0 2px 8px rgba(44,83,100,0.05);
    }
    .adpage-infinity-faq-q {
      font-weight: 700;
      color: #2c5364;
      margin-bottom: 6px;
    }
    .adpage-infinity-faq-a {
      margin-left: 1.2em;
      color: #333;
    }
    .adpage-infinity-contact {
      background: linear-gradient(90deg, #2c5364 0%, #0f2027 100%);
      color: #fff;
      border-radius: 12px;
      padding: 36px 24px;
      text-align: center;
      margin-top: 48px;
      box-shadow: 0 4px 24px rgba(44,83,100,0.10);
    }
    .adpage-infinity-contact h3 {
      color: #fff;
      margin-bottom: 18px;
    }
    .adpage-infinity-contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      margin-top: 18px;
    }
    .adpage-infinity-contact-info div {
      min-width: 180px;
      font-size: 1.08rem;
      margin-bottom: 8px;
    }
    .adpage-infinity-contact .adpage-infinity-btn {
      display: inline-block;
      margin-top: 24px;
      background: #fff;
      color: #2c5364;
      font-weight: 700;
      padding: 14px 36px;
      border-radius: 30px;
      font-size: 1.1rem;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(44,83,100,0.10);
      transition: background 0.2s, color 0.2s;
    }
    .adpage-infinity-contact .adpage-infinity-btn:hover {
      background: #2c5364;
      color: #fff;
    }
    @media (max-width: 900px) {
      .adpage-infinity-flex {
        flex-direction: column;
      }
      .adpage-infinity-cards {
        flex-direction: column;
      }
      .adpage-infinity-header img {
        display: none;
      }
    }
/*  */
.works-item.hidden {
  display: none;
}

.works-more-wrap {
  text-align: center;
  margin-top: 24px;
}

.works-more-btn {
    padding: 10px 24px;
    /* background: #007aff; */
    color: #333;
    border: 1px solid #333;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 70%;
    height: 60px;
    margin-bottom: 10px;
}

.works-more-btn:hover {
  background: #333;
	color:#fff;
}
