@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ========================================
   ISP Design System — CSS Variables
   ======================================== */
:root {
  --isp-color-main: #dd9933;
  --isp-color-main-dark: #b87a1e;
  --isp-color-main-light: #f5e6cc;
  --isp-color-text: #191919;
  --isp-color-text-light: #555;
  --isp-color-bg: #f7f7f7;
  --isp-color-white: #ffffff;
  --isp-color-border: #e0e0e0;
  --isp-radius: 8px;
  --isp-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --isp-shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --isp-shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
  --isp-transition: 0.3s ease;
}

/* ========================================
   SERVICE カード
   ======================================== */
.isp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
}

a.isp-card {
  background: var(--isp-color-white);
  border: 1px solid var(--isp-color-border);
  border-radius: var(--isp-radius);
  overflow: hidden;
  transition: box-shadow var(--isp-transition), transform var(--isp-transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
a.isp-card:hover {
  box-shadow: var(--isp-shadow-lg);
  transform: translateY(-4px);
}

.isp-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.isp-card__img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.06), transparent);
  pointer-events: none;
}
.isp-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.isp-card__body {
  padding: 1.5em;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.isp-card__subtitle {
  font-size: 0.75rem;
  color: var(--isp-color-main);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
}
.isp-card .isp-card__title,
.isp-card h4.isp-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.6em !important;
  padding: 0 !important;
  line-height: 1.4;
  border: none !important;
  background: none !important;
  color: var(--isp-color-text);
}
.isp-card .isp-card__title::before,
.isp-card .isp-card__title::after,
.isp-card h4.isp-card__title::before,
.isp-card h4.isp-card__title::after {
  display: none !important;
}
.isp-card .isp-card__subtitle {
  margin-bottom: 0.2em;
}
.isp-card__text {
  font-size: 0.9rem;
  color: var(--isp-color-text-light);
  margin-bottom: 1em;
}

.isp-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  margin-bottom: 1em;
}
.isp-card__tag {
  font-size: 0.75rem;
  background: var(--isp-color-bg);
  color: var(--isp-color-text-light);
  padding: 0.25em 0.7em;
  border-radius: 3px;
}

.isp-card__arrow {
  display: flex;
  justify-content: flex-end;
}
.isp-card__arrow span {
  font-size: 0.85rem;
  color: var(--isp-color-main);
  font-weight: 500;
  transition: transform var(--isp-transition);
}
a.isp-card:hover .isp-card__arrow span {
  transform: translateX(4px);
}

/* ========================================
   REASON カード
   ======================================== */
.isp-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}
a.isp-reason {
  background: var(--isp-color-white);
  border: 1px solid var(--isp-color-border);
  border-radius: var(--isp-radius);
  overflow: hidden;
  transition: box-shadow var(--isp-transition), transform var(--isp-transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
a.isp-reason:hover {
  box-shadow: var(--isp-shadow-lg);
  transform: translateY(-4px);
}
.isp-reason__img-wrap {
  position: relative;
  overflow: hidden;
}
.isp-reason__img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.06), transparent);
  pointer-events: none;
}
.isp-reason__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
}
.isp-reason__body {
  padding: 1.5em;
  text-align: center;
}
.isp-reason__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--isp-color-main);
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
}
.isp-reason .isp-reason__title,
.isp-reason h4.isp-reason__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: var(--isp-color-text);
}
.isp-reason .isp-reason__title::before,
.isp-reason .isp-reason__title::after,
.isp-reason h4.isp-reason__title::before,
.isp-reason h4.isp-reason__title::after {
  display: none !important;
}

/* ========================================
   CTA — 全ページフッター前
   ======================================== */
.isp-cta {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--isp-color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--isp-shadow-md);
}
.isp-cta__header {
  background: linear-gradient(135deg, var(--isp-color-main), var(--isp-color-main-dark));
  padding: 1.5em 2em;
  text-align: center;
  color: #fff;
}
.isp-cta__header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3em;
}
.isp-cta__header p {
  font-size: 0.9rem;
  opacity: 0.9;
}
.isp-cta__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.isp-cta__col {
  padding: 2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8em;
}
.isp-cta__col + .isp-cta__col {
  border-left: 1px solid var(--isp-color-border);
}
.isp-cta__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.isp-cta__icon svg {
  width: 28px;
  height: 28px;
}
.isp-cta__col--phone .isp-cta__icon {
  background: #e8f5e9;
}
.isp-cta__col--phone .isp-cta__icon svg {
  stroke: #2e7d32;
  fill: none;
}
.isp-cta__col--form .isp-cta__icon {
  background: var(--isp-color-main-light);
}
.isp-cta__col--form .isp-cta__icon svg {
  stroke: var(--isp-color-main-dark);
  fill: none;
}
.isp-cta__label {
  font-size: 0.8rem;
  color: var(--isp-color-text-light);
  font-weight: 500;
}
.isp-cta__phone-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--isp-color-text);
  text-decoration: none;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.isp-cta__phone-note {
  font-size: 0.8rem;
  color: var(--isp-color-text-light);
}
.isp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--isp-color-main);
  color: #fff;
  text-decoration: none;
  padding: 0.9em 2.5em;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  transition: background var(--isp-transition), box-shadow var(--isp-transition);
}
.isp-cta__btn:hover {
  background: var(--isp-color-main-dark);
  box-shadow: var(--isp-shadow-md);
}
.isp-cta__btn-note {
  font-size: 0.8rem;
  color: var(--isp-color-text-light);
}
.isp-cta__service-link {
  text-align: center;
  margin-top: 1.2em;
  padding-top: 1.2em;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.isp-cta__service-link a {
  display: inline-block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 28px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  transition: all 0.3s;
  text-decoration: none;
}
.isp-cta__service-link a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

/* CTA wrapper for footer placement - full width */
.isp-cta-section {
  margin-top: 3em !important;
  padding: 3em 1.5em;
  background: #f0f0f0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ========================================
   はじめにページ — タイトル非表示 & マージン調整
   ======================================== */
#body_wrap.page-id-252 .c-pageTitle {
  display: none !important;
}
#body_wrap.page-id-252 .l-mainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#body_wrap.page-id-252 .l-mainContent__inner {
  padding-top: 0 !important;
}
#body_wrap.page-id-252 .post_content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#body_wrap.page-id-252 .post_content > .swell-block-fullWide:first-child {
  margin-top: 0 !important;
}

/* ========================================
   はじめにページ — ヒーロー
   ======================================== */
.isp-intro-hero {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.isp-intro-hero__lead {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 1.5em;
  color: var(--isp-color-text);
}
.isp-intro-hero__lead strong {
  color: var(--isp-color-main);
  font-size: 1.3rem;
}
.isp-intro-hero__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--isp-color-text-light);
  margin-bottom: 1em;
}
.isp-intro-hero__text strong {
  color: var(--isp-color-text);
}
.isp-intro-hero__text--left {
  text-align: left;
}

/* ========================================
   はじめにページ — 3つのお約束
   ======================================== */
.isp-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  max-width: 1100px;
  margin: 0 auto;
}
.isp-promise-card {
  background: var(--isp-color-white);
  border-radius: var(--isp-radius);
  padding: 2em 1.8em;
  text-align: center;
  box-shadow: var(--isp-shadow-sm);
  transition: box-shadow var(--isp-transition), transform var(--isp-transition);
}
.isp-promise-card:hover {
  box-shadow: var(--isp-shadow-md);
  transform: translateY(-3px);
}
.isp-promise-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.8em;
  background: var(--isp-color-main-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--isp-color-main-dark);
}
.isp-promise-card__icon svg {
  width: 28px;
  height: 28px;
}
.isp-promise-card__num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--isp-color-main);
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
  line-height: 1;
  opacity: 0.7;
}
.isp-promise-card__title,
h4.isp-promise-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.8em !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: var(--isp-color-text);
  line-height: 1.5;
}
.isp-promise-card__title::before,
.isp-promise-card__title::after,
h4.isp-promise-card__title::before,
h4.isp-promise-card__title::after {
  display: none !important;
}
.isp-promise-card__text {
  font-size: 0.88rem;
  color: var(--isp-color-text-light);
  line-height: 1.8;
  text-align: left;
}

/* ========================================
   はじめにページ — ステップ
   ======================================== */
.isp-steps {
  max-width: 700px;
  margin: 0 auto;
}
.isp-step {
  background: var(--isp-color-white);
  border: 1px solid var(--isp-color-border);
  border-radius: var(--isp-radius);
  padding: 2em;
}
.isp-step__header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 0.8em;
}
.isp-step__num {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--isp-color-main);
  padding: 0.3em 1em;
  border-radius: 20px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.isp-step__icon {
  width: 40px;
  height: 40px;
  background: var(--isp-color-main-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--isp-color-main-dark);
}
.isp-step__icon svg {
  width: 22px;
  height: 22px;
}
.isp-step__title,
h4.isp-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5em !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: var(--isp-color-text);
}
.isp-step__title::before,
.isp-step__title::after,
h4.isp-step__title::before,
h4.isp-step__title::after {
  display: none !important;
}
.isp-step__text {
  font-size: 0.9rem;
  color: var(--isp-color-text-light);
  line-height: 1.8;
  margin: 0;
}
.isp-step__connector {
  display: flex;
  justify-content: center;
  padding: 0.5em 0;
  color: var(--isp-color-main);
}
.isp-step__connector svg {
  opacity: 0.6;
}

/* ========================================
   はじめにページ — 初回相談無料
   ======================================== */
.isp-free-consul {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.isp-free-consul__badge {
  display: inline-block;
  background: var(--isp-color-main);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4em 1.5em;
  border-radius: 20px;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}
.isp-free-consul__title,
h3.isp-free-consul__title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 0 0 1em !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: var(--isp-color-text);
}
.isp-free-consul__title::before,
.isp-free-consul__title::after,
h3.isp-free-consul__title::before,
h3.isp-free-consul__title::after {
  display: none !important;
}
.isp-free-consul__text {
  font-size: 1rem;
  color: var(--isp-color-text-light);
  line-height: 2;
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 959px) {
  .isp-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .isp-reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .isp-reason-grid > :last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  .isp-promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .isp-promise-grid > :last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 599px) {
  .isp-card-grid {
    grid-template-columns: 1fr;
  }
  .isp-reason-grid {
    grid-template-columns: 1fr;
  }
  .isp-reason-grid > :last-child {
    max-width: 100%;
  }
  .isp-cta__body {
    grid-template-columns: 1fr;
  }
  .isp-cta__col + .isp-cta__col {
    border-left: none;
    border-top: 1px solid var(--isp-color-border);
  }
  .isp-cta__phone-number {
    font-size: 1.5rem;
  }
  .isp-cta-section {
    padding: 2em 1em;
  }
  .isp-promise-grid {
    grid-template-columns: 1fr;
  }
  .isp-promise-grid > :last-child {
    max-width: 100%;
  }
  .isp-intro-hero__lead {
    font-size: 1.05rem;
  }
  .isp-free-consul__title,
  h3.isp-free-consul__title {
    font-size: 1.1rem;
  }
}

/* ========================================
   サービス一覧ページ — タイトル非表示
   ======================================== */
#body_wrap.page-id-272 .c-pageTitle {
  display: none !important;
}
#body_wrap.page-id-272 .l-mainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#body_wrap.page-id-272 .l-mainContent__inner {
  padding-top: 0 !important;
}
#body_wrap.page-id-272 .post_content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#body_wrap.page-id-272 .post_content > .swell-block-fullWide:first-child {
  margin-top: 0 !important;
}
#body_wrap.page-id-272 .post_content > .swell-block-fullWide:first-child.swell-block-fullWide {
  padding-top: 0.5em !important;
  padding-bottom: 2em !important;
}

/* ========================================
   サービス一覧 — コンセプト4カラム
   ======================================== */
.isp-concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
}
.isp-concept-card {
  text-align: center;
  padding: 2.2em 1.8em;
  border-radius: var(--isp-radius);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.isp-concept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity var(--isp-transition);
}
.isp-concept-card:hover::before {
  opacity: 1;
}
.isp-concept-card--design { background: #2196F3; }
.isp-concept-card--develop { background: #0288D1; }
.isp-concept-card--data { background: #4CAF50; }
.isp-concept-card--challenge { background: var(--isp-color-main); }

.isp-concept-card__en {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4em;
  letter-spacing: 0.05em;
}
.isp-concept-card__ja {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1em;
  opacity: 1;
  padding-bottom: 0.8em;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.isp-concept-card__text {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.85;
  text-align: left;
}

/* ========================================
   サービス一覧 — 詳細カード
   ======================================== */
.isp-service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
}
.isp-service-detail {
  background: var(--isp-color-white);
  border: 1px solid var(--isp-color-border);
  border-radius: var(--isp-radius);
  overflow: hidden;
  transition: box-shadow var(--isp-transition), transform var(--isp-transition);
  display: flex;
  flex-direction: column;
}
.isp-service-detail:hover {
  box-shadow: var(--isp-shadow-lg);
  transform: translateY(-3px);
}
.isp-service-detail__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.isp-service-detail__body {
  padding: 1.8em;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.isp-service-detail__subtitle {
  font-size: 0.75rem;
  color: var(--isp-color-main);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}
.isp-service-detail__title,
h4.isp-service-detail__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.8em !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: var(--isp-color-text);
  line-height: 1.4;
}
.isp-service-detail__title::before,
.isp-service-detail__title::after,
h4.isp-service-detail__title::before,
h4.isp-service-detail__title::after {
  display: none !important;
}
.isp-service-detail__text {
  font-size: 0.88rem;
  color: var(--isp-color-text-light);
  line-height: 1.8;
  margin-bottom: 1em;
  flex: 1;
}
.isp-service-detail__recommend {
  background: #faf6ee;
  border-radius: 6px;
  padding: 0.8em 1em;
  margin-bottom: 1em;
  min-height: 9.5em;
}
.isp-service-detail__recommend-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--isp-color-main-dark);
  margin-bottom: 0.3em;
}
.isp-service-detail__recommend-list {
  font-size: 0.78rem;
  color: var(--isp-color-text-light);
  line-height: 1.7;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}
.isp-service-detail__recommend-list li {
  padding-left: 1em;
  position: relative;
}
.isp-service-detail__recommend-list li::before {
  content: "✓";
  color: var(--isp-color-main);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 0.7em;
  top: 0.35em;
}
.isp-service-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--isp-color-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--isp-transition);
  margin-top: auto;
}
.isp-service-detail__link:hover {
  transform: translateX(4px);
}

/* ========================================
   サービス一覧 — 料金レンジ
   ======================================== */
.isp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  max-width: 1100px;
  margin: 0 auto;
}
.isp-price-item {
  background: var(--isp-color-white);
  border: 1px solid var(--isp-color-border);
  border-radius: var(--isp-radius);
  padding: 1.5em;
  text-align: center;
}
.isp-price-item__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--isp-color-text);
  margin-bottom: 0.5em;
}
.isp-price-item__range {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--isp-color-main);
  margin-bottom: 0.3em;
}
.isp-price-item__note {
  font-size: 0.75rem;
  color: var(--isp-color-text-light);
}

/* ========================================
   各事業ページ — タイトル非表示（共通）
   ======================================== */
#body_wrap.page-id-32 .c-pageTitle,
#body_wrap.page-id-296 .c-pageTitle,
#body_wrap.page-id-300 .c-pageTitle,
#body_wrap.page-id-310 .c-pageTitle,
#body_wrap.page-id-320 .c-pageTitle,
#body_wrap.page-id-322 .c-pageTitle,
#body_wrap.page-id-771 .c-pageTitle,
#body_wrap.page-id-772 .c-pageTitle {
  display: none !important;
}
#body_wrap.page-id-32 .l-mainContent,
#body_wrap.page-id-296 .l-mainContent,
#body_wrap.page-id-300 .l-mainContent,
#body_wrap.page-id-310 .l-mainContent,
#body_wrap.page-id-320 .l-mainContent,
#body_wrap.page-id-322 .l-mainContent,
#body_wrap.page-id-771 .l-mainContent,
#body_wrap.page-id-772 .l-mainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* プロダクト詳細ページ：コンテンツ幅をサイト幅（1200px）に合わせる */
#body_wrap.page-id-772 {
  --article_size: var(--container_size, 1200px) !important;
}
#body_wrap.page-id-772 {
  scroll-behavior: smooth !important;
}
#body_wrap.page-id-32 .l-mainContent__inner,
#body_wrap.page-id-296 .l-mainContent__inner,
#body_wrap.page-id-300 .l-mainContent__inner,
#body_wrap.page-id-310 .l-mainContent__inner,
#body_wrap.page-id-320 .l-mainContent__inner,
#body_wrap.page-id-322 .l-mainContent__inner,
#body_wrap.page-id-771 .l-mainContent__inner,
#body_wrap.page-id-772 .l-mainContent__inner {
  padding-top: 0 !important;
}
#body_wrap.page-id-32 .post_content,
#body_wrap.page-id-296 .post_content,
#body_wrap.page-id-300 .post_content,
#body_wrap.page-id-310 .post_content,
#body_wrap.page-id-320 .post_content,
#body_wrap.page-id-322 .post_content,
#body_wrap.page-id-771 .post_content,
#body_wrap.page-id-772 .post_content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#body_wrap.page-id-32 .post_content > .swell-block-fullWide:first-child,
#body_wrap.page-id-296 .post_content > .swell-block-fullWide:first-child,
#body_wrap.page-id-300 .post_content > .swell-block-fullWide:first-child,
#body_wrap.page-id-310 .post_content > .swell-block-fullWide:first-child,
#body_wrap.page-id-320 .post_content > .swell-block-fullWide:first-child,
#body_wrap.page-id-322 .post_content > .swell-block-fullWide:first-child {
  margin-top: 0 !important;
}

/* ========================================
   各事業ページ — 特徴3カラム
   ======================================== */
.isp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  max-width: 1100px;
  margin: 0 auto;
}
.isp-feature-card {
  background: var(--isp-color-white);
  border-radius: var(--isp-radius);
  padding: 2em 1.5em;
  text-align: center;
  box-shadow: var(--isp-shadow-sm);
  transition: box-shadow var(--isp-transition), transform var(--isp-transition);
}
.isp-feature-card:hover {
  box-shadow: var(--isp-shadow-md);
  transform: translateY(-3px);
}
.isp-feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.8em;
  background: var(--isp-color-main-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--isp-color-main-dark);
}
.isp-feature-card__icon svg {
  width: 28px;
  height: 28px;
}
.isp-feature-card__title,
h4.isp-feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.6em !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: var(--isp-color-text);
  line-height: 1.5;
}
.isp-feature-card__title::before,
.isp-feature-card__title::after,
h4.isp-feature-card__title::before,
h4.isp-feature-card__title::after {
  display: none !important;
}
.isp-feature-card__text {
  font-size: 0.85rem;
  color: var(--isp-color-text-light);
  line-height: 1.8;
  text-align: left;
}

/* ========================================
   各事業ページ — サービス内容リスト
   ======================================== */
.isp-service-list {
  max-width: 900px;
  margin: 0 auto;
}
.isp-service-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
.isp-service-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  padding: 1em;
  background: var(--isp-color-white);
  border: 1px solid var(--isp-color-border);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--isp-color-text);
}
.isp-service-list__item::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--isp-color-main);
  border-radius: 50%;
  margin-top: 0.4em;
}

/* ========================================
   各事業ページ — こんな方におすすめ
   ======================================== */
.isp-recommend-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--isp-color-white);
  border-radius: var(--isp-radius);
  padding: 2em;
  border-left: none;
  box-shadow: var(--isp-shadow-sm);
}
.isp-recommend-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6em;
}
.isp-recommend-box__list li {
  font-size: 0.92rem;
  color: var(--isp-color-text);
  padding-left: 1.5em;
  position: relative;
  line-height: 1.6;
}
.isp-recommend-box__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--isp-color-main);
  font-weight: 700;
}

/* ========================================
   各事業ページ — 料金レンジ（単体）
   ======================================== */
.isp-price-single {
  max-width: 700px;
  margin: 0 auto;
  background: var(--isp-color-white);
  border: 2px solid var(--isp-color-main-light);
  border-radius: var(--isp-radius);
  padding: 2em;
  text-align: center;
}
.isp-price-single__range {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--isp-color-main);
  margin-bottom: 0.5em;
}
.isp-price-single__note {
  font-size: 0.85rem;
  color: var(--isp-color-text-light);
  line-height: 1.8;
}

/* ========================================
   料金プランカード（3カラム）
   ======================================== */
.isp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.isp-pricing-card {
  background: var(--isp-color-white);
  border-radius: var(--isp-radius);
  overflow: hidden;
  box-shadow: var(--isp-shadow-sm);
  transition: box-shadow var(--isp-transition), transform var(--isp-transition);
  position: relative;
}
.isp-pricing-card:hover {
  box-shadow: var(--isp-shadow-md);
  transform: translateY(-4px);
}
.isp-pricing-card.-featured {
  border: 3px solid var(--isp-color-main);
  transform: scale(1.04);
  z-index: 1;
}
.isp-pricing-card.-featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.isp-pricing-card__badge {
  background: var(--isp-color-main);
  color: #fff;
  text-align: center;
  padding: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}
.isp-pricing-card__header {
  padding: 1.8em 1.5em 1em;
  text-align: center;
}
.isp-pricing-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--isp-color-text);
  margin-bottom: 0.4em;
}
.isp-pricing-card__price {
  font-size: 0.9rem;
  color: var(--isp-color-text-light);
}
.isp-pricing-card__price strong {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--isp-color-text);
}
.isp-pricing-card__body {
  padding: 0 1.5em 1.5em;
}
.isp-pricing-card__features {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.isp-pricing-card__features li {
  padding: 0.5em 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5em;
  list-style: none !important;
}
.isp-pricing-card__features li::before {
  content: '\2713';
  color: var(--isp-color-main);
  font-weight: 700;
  flex-shrink: 0;
}
.isp-pricing-card__features li.-disabled {
  color: #ccc;
}
.isp-pricing-card__features li.-disabled::before {
  content: '\2212';
  color: #ccc;
}
.isp-pricing-card__cta {
  padding: 0 1.5em 1.8em;
  text-align: center;
}
.isp-pricing-card__cta a {
  display: block;
  padding: 0.8em 1em;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s;
}
.isp-pricing-card__cta a.-primary {
  background: linear-gradient(135deg, var(--isp-color-main), var(--isp-color-main-dark));
  color: #fff;
  box-shadow: 0 4px 12px rgba(221,153,51,0.3);
}
.isp-pricing-card__cta a.-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(221,153,51,0.4);
}
.isp-pricing-card__cta a.-secondary {
  background: var(--isp-color-white);
  color: var(--isp-color-text);
  border: 2px solid var(--isp-color-border);
}
.isp-pricing-card__cta a.-secondary:hover {
  border-color: var(--isp-color-main);
  color: var(--isp-color-main-dark);
}
.isp-pricing-note {
  text-align: center;
  margin-top: 1.2em;
  font-size: 0.8rem;
  color: var(--isp-color-text-light);
}
.isp-pricing-lp-link {
  text-align: center;
  margin-top: 1.5em;
}
.isp-pricing-lp-link a {
  display: inline-block;
  padding: 0.8em 2em;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--isp-color-main-dark);
  border: 2px solid var(--isp-color-main);
  border-radius: 50px;
  transition: all 0.3s;
}
.isp-pricing-lp-link a:hover {
  background: var(--isp-color-main);
  color: #fff;
}
@media (max-width: 768px) {
  .isp-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .isp-pricing-card.-featured {
    transform: none;
  }
  .isp-pricing-card.-featured:hover {
    transform: translateY(-4px);
  }
}

/* ========================================
   商品紹介ヒーローブロック
   ======================================== */
.isp-product-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.isp-product-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(221,153,51,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.isp-product-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.isp-product-hero__badge {
  display: inline-block;
  background: rgba(221,153,51,0.2);
  color: var(--isp-color-main);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(221,153,51,0.3);
}
.isp-product-hero__title {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
}
.isp-product-hero__title em {
  font-style: normal;
  color: var(--isp-color-main);
}
.isp-product-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}
.isp-product-hero__stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 32px;
}
.isp-product-hero__stat {
  text-align: center;
}
.isp-product-hero__stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--isp-color-main);
}
.isp-product-hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.isp-product-hero__lead {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .isp-product-hero {
    padding: 60px 20px;
  }
  .isp-product-hero__title {
    font-size: 26px;
  }
  .isp-product-hero__stats {
    flex-direction: column;
    gap: 16px;
  }
  .isp-product-hero__stat-num {
    font-size: 28px;
  }
}

/* ========================================
   プロダクト一覧ページ — カード
   ======================================== */
.isp-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}
.isp-product-card {
  display: block;
  background: var(--isp-color-white);
  border-radius: var(--isp-radius);
  padding: 2em 1.8em;
  box-shadow: var(--isp-shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
a.isp-product-card:hover {
  box-shadow: var(--isp-shadow-md);
  transform: translateY(-4px);
}
.isp-product-card.-coming {
  opacity: 0.7;
}
.isp-product-card__status {
  position: absolute;
  top: 1em;
  right: 1em;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.isp-product-card.-available .isp-product-card__status {
  background: #e8f5e9;
  color: #2e7d32;
}
.isp-product-card.-coming .isp-product-card__status {
  background: #f0f0f0;
  color: #999;
}
.isp-product-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1em;
  background: var(--isp-color-main-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--isp-color-main-dark);
}
.isp-product-card.-coming .isp-product-card__icon {
  background: #f0f0f0;
  color: #bbb;
}
.isp-product-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--isp-color-text);
  margin-bottom: 0.5em;
}
.isp-product-card__desc {
  font-size: 0.85rem;
  color: var(--isp-color-text-light);
  line-height: 1.8;
  margin-bottom: 1em;
}
.isp-product-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--isp-color-main-dark);
  margin-bottom: 0.8em;
}
.isp-product-card__price strong {
  font-size: 1.6rem;
}
.isp-product-card.-coming .isp-product-card__price {
  color: #999;
}
.isp-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1em;
}
.isp-product-card__tags span {
  background: var(--isp-color-main-light);
  color: var(--isp-color-main-dark);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}
.isp-product-card.-coming .isp-product-card__tags span {
  background: #f0f0f0;
  color: #999;
}
.isp-product-card__cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--isp-color-main-dark);
}
@media (max-width: 768px) {
  .isp-products-grid {
    grid-template-columns: 1fr;
  }
}

/* AI診断ハイライトボックス */
.isp-ai-highlight {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: var(--isp-radius);
  padding: 2.5em 2em;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto 2em;
}
.isp-ai-highlight__title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.8em;
  text-align: center;
}
.isp-ai-highlight__title span {
  color: var(--isp-color-main);
}
.isp-ai-highlight__desc {
  font-size: 0.9rem;
  line-height: 2;
  text-align: center;
  opacity: 0.85;
  margin-bottom: 1.5em;
}
.isp-ai-highlight__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
.isp-ai-highlight__feature {
  text-align: center;
  padding: 1em;
  background: rgba(255,255,255,0.08);
  border-radius: var(--isp-radius);
}
.isp-ai-highlight__feature-icon {
  font-size: 2em;
  margin-bottom: 0.3em;
}
.isp-ai-highlight__feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3em;
}
.isp-ai-highlight__feature-text {
  font-size: 0.75rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .isp-ai-highlight__features {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   会社概要ページ — タイトル非表示
   ======================================== */
#body_wrap.page-id-258 .c-pageTitle {
  display: none !important;
}
#body_wrap.page-id-258 .l-mainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#body_wrap.page-id-258 .l-mainContent__inner {
  padding-top: 0 !important;
}
#body_wrap.page-id-258 .post_content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#body_wrap.page-id-258 .post_content > .swell-block-fullWide:first-child {
  margin-top: 0 !important;
}

/* 会社概要 — 定義リスト */
.isp-company-table {
  max-width: 700px !important;
  margin: 0 auto !important;
  width: 100%;
  border-collapse: collapse;
}
.isp-company-table th,
.isp-company-table td {
  padding: 1em 1.2em;
  border-bottom: 1px solid var(--isp-color-border);
  font-size: 0.95rem;
  line-height: 1.8;
  vertical-align: top;
}
.isp-company-table th {
  width: 160px;
  font-weight: 700;
  color: var(--isp-color-text);
  background: #fafafa;
  white-space: nowrap;
}
.isp-company-table td {
  color: var(--isp-color-text-light);
}

/* 会社概要 — 企業理念 */
.isp-philosophy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--isp-color-white);
  border: 2px solid var(--isp-color-main-light);
  border-radius: var(--isp-radius);
  padding: 2.5em 2em;
}
.isp-philosophy__main {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--isp-color-main-dark);
  margin-bottom: 0.8em;
}
.isp-philosophy__sub {
  font-size: 1rem;
  color: var(--isp-color-text);
  line-height: 1.8;
}

/* 会社概要 — 代表プロフィール */
.isp-profile {
  display: flex;
  gap: 2.5em;
  max-width: 900px;
  margin: 0 auto;
  align-items: flex-start;
}
.isp-profile__photo {
  width: 200px;
  min-width: 200px;
  border-radius: var(--isp-radius);
  overflow: hidden;
}
.isp-profile__photo img {
  width: 100%;
  display: block;
}
.isp-profile__body {
  flex: 1;
}
.isp-profile__text {
  font-size: 0.92rem;
  color: var(--isp-color-text-light);
  line-height: 2;
  margin-bottom: 1em;
}
.isp-profile__sign {
  text-align: right;
  font-size: 0.95rem;
  color: var(--isp-color-text);
  font-weight: 500;
  margin-top: 1.5em;
}

/* 会社概要 — 資格バッジ */
.isp-badges {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 1.5em auto 0;
}
.isp-badges img {
  height: 100px;
  width: auto;
}

/* 会社概要 — アクセス */
.isp-access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  max-width: 900px;
  margin: 0 auto 2em;
}
.isp-access-card {
  background: var(--isp-color-white);
  border: 1px solid var(--isp-color-border);
  border-radius: var(--isp-radius);
  padding: 1.5em;
  display: flex;
  gap: 1em;
  align-items: flex-start;
}
.isp-access-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--isp-color-main-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--isp-color-main-dark);
}
.isp-access-card__icon svg {
  width: 22px;
  height: 22px;
}
.isp-access-card__body {
  flex: 1;
}
.isp-access-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--isp-color-text);
  margin-bottom: 0.3em;
}
.isp-access-card__text {
  font-size: 0.85rem;
  color: var(--isp-color-text-light);
  line-height: 1.7;
}
.isp-map-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--isp-radius);
  overflow: hidden;
}
.isp-map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* お問合せページ — タイトル非表示 */
#body_wrap.page-id-382 .c-pageTitle {
  display: none !important;
}
#body_wrap.page-id-382 .l-mainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#body_wrap.page-id-382 .l-mainContent__inner {
  padding-top: 0 !important;
}
#body_wrap.page-id-382 .post_content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#body_wrap.page-id-382 .post_content > .swell-block-fullWide:first-child {
  margin-top: 0 !important;
}

/* お問合せ — フォームスタイル */
.isp-contact-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 2em;
}
.isp-contact-step {
  flex: 1;
  text-align: center;
  padding: 0.8em 1em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--isp-color-text-light);
  background: #eee;
  position: relative;
}
.isp-contact-step.is-active {
  background: var(--isp-color-main);
  color: #fff;
}
.isp-contact-step:first-child {
  border-radius: 6px 0 0 6px;
}
.isp-contact-step:last-child {
  border-radius: 0 6px 6px 0;
}

@media (max-width: 599px) {
  .isp-profile {
    flex-direction: column;
    align-items: center;
  }
  .isp-profile__photo {
    width: 160px;
    min-width: 160px;
  }
  .isp-access-grid {
    grid-template-columns: 1fr;
  }
  .isp-company-table th {
    width: 110px;
    white-space: normal;
  }
  .isp-company-table th,
  .isp-company-table td {
    padding: 0.8em;
    font-size: 0.85rem;
  }
}

/* ========================================
   各事業ページ — ヒーローバナー
   ======================================== */
/* ヒーローバナー — 左画像 + 右テキスト */
.isp-hero-banner {
  display: flex;
  align-items: center;
  gap: 2.5em;
  max-width: 1100px;
  margin: 0 auto 2.5em;
}
.isp-hero-banner__img-wrap {
  flex: 0 0 45%;
  max-width: 45%;
}
.isp-hero-banner__img {
  width: 100%;
  height: auto;
  display: block;
}
.isp-hero-banner__overlay {
  display: none;
}
.isp-hero-banner__content {
  flex: 1;
  text-align: left;
  color: var(--isp-color-text);
  padding: 1em 0;
}
.isp-hero-banner__en {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--isp-color-main-dark);
  margin-bottom: 0.6em;
}
.isp-hero-banner__title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.5em !important;
  line-height: 1.4 !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.isp-hero-banner__title::before,
.isp-hero-banner__title::after {
  display: none !important;
}
.isp-hero-banner__lead {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--isp-color-text-light);
  margin: 0;
}

/* ========================================
   各事業ページ — FLOW ステップアイコン
   ======================================== */
.isp-flow-step {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
  background: var(--isp-color-white);
  border: 1px solid var(--isp-color-border);
  border-radius: var(--isp-radius);
  padding: 1.8em;
  margin-bottom: 1em;
}
.isp-flow-step__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--isp-color-main-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--isp-color-main-dark);
}
.isp-flow-step__icon svg {
  width: 26px;
  height: 26px;
}
.isp-flow-step__body {
  flex: 1;
}
.isp-flow-step__num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--isp-color-main);
  letter-spacing: 0.1em;
  margin-bottom: 0.2em;
}
.isp-flow-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--isp-color-text);
  margin-bottom: 0.5em;
}
.isp-flow-step__text {
  font-size: 0.88rem;
  color: var(--isp-color-text-light);
  line-height: 1.8;
}
.isp-flow-connector {
  display: flex;
  justify-content: center;
  padding: 0.3em 0;
  color: var(--isp-color-main);
  opacity: 0.5;
}

/* ========================================
   レスポンシブ追加
   ======================================== */
@media (max-width: 959px) {
  .isp-concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .isp-service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .isp-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .isp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .isp-feature-grid > :last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 599px) {
  .isp-concept-grid {
    grid-template-columns: 1fr;
  }
  .isp-service-detail-grid {
    grid-template-columns: 1fr;
  }
  .isp-price-grid {
    grid-template-columns: 1fr;
  }
  .isp-feature-grid {
    grid-template-columns: 1fr;
  }
  .isp-feature-grid > :last-child {
    max-width: 100%;
  }
  .isp-service-list__grid {
    grid-template-columns: 1fr;
  }
  .isp-hero-banner {
    flex-direction: column;
    gap: 1.5em;
  }
  .isp-hero-banner__img-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .isp-hero-banner__content {
    text-align: center;
    padding: 0 1em;
  }
  .isp-hero-banner__lead {
    text-align: left;
  }
  .isp-hero-banner__lead br {
    display: none;
  }
  .isp-hero-banner__title {
    font-size: 1.3rem;
  }
  .isp-hero-banner__lead {
    font-size: 0.9rem;
  }
  .isp-flow-step {
    flex-direction: column;
    gap: 0.8em;
  }
}

/* ========================================
   業務事例 — メタ情報
   ======================================== */
.isp-case-meta {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--isp-color-text-light);
}
.isp-case-meta__item strong {
  color: var(--isp-color-text);
}
.isp-case-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4em;
}
.isp-case-tag {
  display: inline-block;
  font-size: 0.8rem;
  background: var(--isp-color-bg);
  color: var(--isp-color-text-light);
  padding: 0.2em 0.8em;
  border-radius: 20px;
  border: 1px solid var(--isp-color-border);
}

/* 業務事例 — 概要 */
.isp-case-overview {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--isp-color-text-light);
  line-height: 2;
}

/* 業務事例 — 成果・課題・実施内容カード */
.isp-case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  max-width: 1100px;
  margin: 0 auto;
}
.isp-case-card {
  background: var(--isp-color-white);
  border-radius: var(--isp-radius);
  padding: 1.8em;
  box-shadow: var(--isp-shadow-sm);
}
.isp-case-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8em;
}
.isp-case-card__icon svg {
  width: 24px;
  height: 24px;
}
.isp-case-card--results .isp-case-card__icon {
  background: #e8f5e9;
  color: #2e7d32;
}
.isp-case-card--results .isp-case-card__icon svg { stroke: #2e7d32; }
.isp-case-card--problems .isp-case-card__icon {
  background: #fff3e0;
  color: #e65100;
}
.isp-case-card--problems .isp-case-card__icon svg { stroke: #e65100; }
.isp-case-card--actions .isp-case-card__icon {
  background: #e3f2fd;
  color: #1565c0;
}
.isp-case-card--actions .isp-case-card__icon svg { stroke: #1565c0; }

.isp-case-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--isp-color-text);
  margin-bottom: 0.8em;
}
.isp-case-card__list {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}
.isp-case-card__list li {
  font-size: 0.88rem;
  color: var(--isp-color-text-light);
  line-height: 1.7;
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.4em;
}
.isp-case-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--isp-color-main);
  font-weight: 700;
}

/* 業務事例 — ギャラリー */
.isp-case-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1em;
  max-width: 1100px;
  margin: 0 auto;
}
.isp-case-gallery__item {
  border-radius: var(--isp-radius);
  overflow: hidden;
  border: 1px solid var(--isp-color-border);
}
.isp-case-gallery__item img {
  width: 100%;
  display: block;
}

/* 業務事例 — h1のSWELLスタイル無効化 */
.isp-hero-banner h1.isp-hero-banner__title {
  border: none !important;
  padding: 0 !important;
  background: none !important;
  margin: 0 0 0.6em !important;
}
.isp-hero-banner h1.isp-hero-banner__title::before,
.isp-hero-banner h1.isp-hero-banner__title::after {
  display: none !important;
}

@media (max-width: 599px) {
  .isp-case-cards {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   お問合せ — 確認画面テーブル
   ======================================== */
.isp-confirm-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2em;
  border-collapse: collapse;
}
.isp-confirm-table th,
.isp-confirm-table td {
  padding: 1em 1.2em;
  border-bottom: 1px solid var(--isp-color-border);
  font-size: 0.95rem;
  line-height: 1.8;
  vertical-align: top;
}
.isp-confirm-table th {
  width: 160px;
  font-weight: 700;
  color: var(--isp-color-text);
  background: #fafafa;
  white-space: nowrap;
}
.isp-confirm-table td {
  color: var(--isp-color-text-light);
}
/* ===== CF7 入力フォーム ===== */
#cf7-area {
  max-width: 900px;
  margin: 0 auto;
}
#cf7-area .form-heading {
  text-align: center;
  font-size: 1.05em;
  font-weight: 600;
  margin-bottom: 2em;
  color: #333;
  border-left: 4px solid var(--isp-color-main);
  padding-left: 0.8em;
  text-align: left;
}
.cf7-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5em;
}
.cf7-q {
  width: 180px;
  flex-shrink: 0;
  padding-top: 0.6em;
  font-weight: 600;
  color: #333;
}
.cf7-q label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}
.cf7-req {
  display: inline-block;
  font-size: 0.65em;
  font-weight: 600;
  color: var(--isp-color-main, #dd9933) !important;
  background: var(--isp-color-main-light, #f5e6cc) !important;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.cf7-a {
  flex: 1;
}
.cf7-a input[type="text"],
.cf7-a input[type="email"],
.cf7-a input[type="tel"],
.cf7-a input[type="url"],
.cf7-a textarea {
  width: 100%;
  padding: 0.7em 0.8em;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 1em;
  background: #fafafa;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cf7-a input[type="text"]:focus,
.cf7-a input[type="email"]:focus,
.cf7-a input[type="tel"]:focus,
.cf7-a input[type="url"]:focus,
.cf7-a textarea:focus {
  border-color: var(--isp-color-main);
  box-shadow: 0 0 0 2px rgba(221, 153, 51, 0.15);
  background: #fff;
  outline: none;
}
.cf7-a textarea {
  min-height: 150px;
  resize: vertical;
}

/* チェックボックス カスタムデザイン */
.cf7-a .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em 1em;
}
.cf7-a .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.cf7-a .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.8em;
  cursor: pointer;
  padding: 0.4em 0;
  font-size: 0.95em;
  line-height: 22px;
  user-select: none;
  color: #555;
  transition: color 0.2s;
  white-space: nowrap;
}
.cf7-a .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  display: inline-block;
  vertical-align: middle;
  line-height: 22px;
}
.cf7-a .wpcf7-checkbox .wpcf7-list-item label:hover {
  color: #333;
}
/* カスタムチェックボックス — appearance完全無効化 */
#cf7-area .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"],
#cf7-area .wpcf7-acceptance input[type="checkbox"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  min-height: 22px;
  border: 2px solid #ccc !important;
  border-radius: 6px !important;
  background: #fff !important;
  background-image: none !important;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
  margin: 0 0.5em 0 0 !important;
  padding: 0 !important;
  outline: none;
  box-shadow: none !important;
  color: transparent !important;
  vertical-align: middle;
}
#cf7-area .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:hover,
#cf7-area .wpcf7-acceptance input[type="checkbox"]:hover {
  border-color: #999 !important;
}
#cf7-area .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked,
#cf7-area .wpcf7-acceptance input[type="checkbox"]:checked {
  background-color: var(--isp-color-main) !important;
  border-color: var(--isp-color-main) !important;
}
#cf7-area .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked::after,
#cf7-area .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
/* ブラウザデフォルトの::beforeチェックマーク無効化 */
#cf7-area .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]::before,
#cf7-area .wpcf7-acceptance input[type="checkbox"]::before {
  display: none !important;
  content: none !important;
}
/* チェック時のラベルテキスト */
#cf7-area .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked ~ .wpcf7-list-item-label {
  color: #333;
  font-weight: 600;
}

/* プライバシーポリシー同意 */
.cf7-accept-check {
  text-align: center;
  margin: 2em 0 1em;
}
.cf7-accept-check .wpcf7-list-item {
  margin: 0;
}
.cf7-accept-check .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  font-size: 0.95em;
  color: #555;
  user-select: none;
}

/* 送信ボタン */
.cf7-submit {
  text-align: center;
  margin-top: 1.5em;
}
.cf7-submit .wpcf7-submit {
  background: var(--isp-color-main);
  color: #fff;
  border: none;
  padding: 1em 3em;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  min-width: 280px;
}
.cf7-submit .wpcf7-submit:hover {
  background: var(--isp-color-main-dark);
  transform: translateY(-1px);
}

/* スマホ対応 */
@media (max-width: 599px) {
  .cf7-item {
    flex-direction: column;
  }
  .cf7-q {
    width: 100%;
    margin-bottom: 0.4em;
    padding-top: 0;
  }
  .cf7-a .wpcf7-checkbox {
    grid-template-columns: 1fr;
    gap: 0.3em;
  }
  .cf7-submit .wpcf7-submit {
    width: 100%;
    min-width: auto;
  }
}

.cf7-submit-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  max-width: 700px;
  margin: 0 auto;
}
.isp-btn-back {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--isp-color-text-light);
  text-decoration: none;
  padding: 0.8em 1.5em;
  border: 1px solid var(--isp-color-border);
  border-radius: 6px;
  transition: background var(--isp-transition);
}
.isp-btn-back:hover {
  background: #f0f0f0;
}

/* お問合せ — 確認・サンクスページタイトル非表示 */
#body_wrap.page-id-727 .c-pageTitle,
#body_wrap.page-id-728 .c-pageTitle {
  display: none !important;
}
#body_wrap.page-id-727 .l-mainContent,
#body_wrap.page-id-728 .l-mainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#body_wrap.page-id-727 .l-mainContent__inner,
#body_wrap.page-id-728 .l-mainContent__inner {
  padding-top: 0 !important;
}
#body_wrap.page-id-727 .post_content,
#body_wrap.page-id-728 .post_content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* お問合せ — サンクスページ */
.isp-thanks {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.isp-thanks__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1em;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.isp-thanks__icon svg {
  width: 32px;
  height: 32px;
  stroke: #2e7d32;
}
.isp-thanks__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--isp-color-text);
  margin-bottom: 1em;
}
.isp-thanks__text {
  font-size: 0.92rem;
  color: var(--isp-color-text-light);
  line-height: 2;
  margin-bottom: 1em;
}
.isp-thanks__btn {
  display: inline-block;
  background: var(--isp-color-main);
  color: #fff;
  text-decoration: none;
  padding: 0.8em 2.5em;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 1em;
  transition: background var(--isp-transition);
}
.isp-thanks__btn:hover {
  background: var(--isp-color-main-dark);
}

/* ===== CF7 確認画面 ===== */
#cf7-confirm-area {
  max-width: 700px;
  margin: 0 auto;
}
#cf7-confirm-area .form-heading {
  text-align: center;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 2em;
  color: #333;
}
.cf7-confirm-item {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  padding: 1em 0;
}
.cf7-confirm-item:first-of-type {
  border-top: 1px solid #e0e0e0;
}
.cf7-confirm-label {
  width: 200px;
  flex-shrink: 0;
  font-weight: 600;
  color: #555;
  padding-right: 1em;
}
.cf7-confirm-value {
  flex: 1;
  color: #333;
  word-break: break-word;
}
.cf7-confirm-message {
  white-space: pre-wrap;
}
.cf7-confirm-buttons {
  margin-top: 2.5em;
  text-align: center;
}
/* CF7がp要素で囲む+br挿入を無効化して横並びに */
.cf7-confirm-buttons p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  margin: 0;
}
.cf7-confirm-buttons p br {
  display: none;
}
.cf7-confirm-buttons .wpcf7-submit {
  background: var(--isp-color-main);
  color: #fff;
  border: none;
  padding: 0.8em 3em;
  font-size: 1em;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  min-width: 200px;
}
.cf7-confirm-buttons .wpcf7-submit:hover {
  background: var(--isp-color-main-dark);
  transform: translateY(-1px);
}
.cf7-confirm-buttons .wpcf7-previous {
  background: #888;
  color: #fff;
  border: none;
  padding: 0.8em 3em;
  font-size: 1em;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  min-width: 200px;
}
.cf7-confirm-buttons .wpcf7-previous:hover {
  background: #666;
  transform: translateY(-1px);
}
@media (max-width: 599px) {
  .cf7-confirm-item {
    flex-direction: column;
  }
  .cf7-confirm-label {
    width: 100%;
    margin-bottom: 0.3em;
  }
  .cf7-confirm-buttons p {
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
  }
  .cf7-confirm-buttons .wpcf7-submit,
  .cf7-confirm-buttons .wpcf7-previous {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== 業務事例カード（サービスページ用） ===== */
.isp-case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  margin-top: 1.5em;
}
a.isp-case-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  padding: 0 !important;
  margin: 0 !important;
}
a.isp-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.isp-case-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.isp-case-card__thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.06), transparent);
  pointer-events: none;
}
.isp-case-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.isp-case-card:hover .isp-case-card__thumb img {
  transform: scale(1.05);
}
.isp-case-card__body {
  padding: 0.7em 0.8em 0.8em;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.isp-case-card__industry {
  display: inline-block;
  font-size: 0.7em;
  color: var(--isp-color-main-dark);
  background: var(--isp-color-light);
  padding: 0.15em 0.5em;
  border-radius: 3px;
  margin-bottom: 0.3em;
  align-self: flex-start;
}
.isp-case-card__title {
  font-size: 0.85em !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  margin: 0 0 0.4em !important;
  color: #333 !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.isp-case-card__title::before,
.isp-case-card__title::after {
  display: none !important;
}
.isp-case-card__overview {
  font-size: 0.82em;
  color: #777;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.isp-case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  margin-top: 0.8em;
}
.isp-case-card__tag {
  font-size: 0.7em;
  color: #888;
  background: #f0f0f0;
  padding: 0.15em 0.5em;
  border-radius: 3px;
}
@media (max-width: 959px) {
  .isp-case-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .isp-case-cards {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

/* ===== 資料ダウンロードページ ===== */
/* ページタイトル非表示 */
#body_wrap.page-id-731 .c-pageTitle,
#body_wrap.page-id-732 .c-pageTitle {
  display: none !important;
}
#body_wrap.page-id-731 .l-mainContent,
#body_wrap.page-id-732 .l-mainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#body_wrap.page-id-731 .l-mainContent__inner,
#body_wrap.page-id-732 .l-mainContent__inner {
  padding-top: 0 !important;
}
#body_wrap.page-id-731 .post_content,
#body_wrap.page-id-732 .post_content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ヒーロー（資料紹介エリア） */
.isp-dl-hero {
  display: flex;
  align-items: center;
  gap: 2em;
  max-width: 700px;
  margin: 0 auto 2.5em;
  padding: 2em;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.isp-dl-hero__image {
  flex-shrink: 0;
  color: var(--isp-color-main);
}
.isp-dl-hero__image svg {
  width: 80px;
  height: 80px;
}
.isp-dl-hero__title {
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 0.5em;
  color: #333;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.isp-dl-hero__title::before,
.isp-dl-hero__title::after {
  display: none !important;
}
.isp-dl-hero__desc {
  font-size: 0.9em;
  color: #666;
  line-height: 1.7;
  margin: 0 0 0.8em;
}
.isp-dl-hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 1em;
}
.isp-dl-hero__list li {
  font-size: 0.82em;
  color: #888;
  padding-left: 1.2em;
  position: relative;
}
.isp-dl-hero__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--isp-color-main);
  font-weight: 700;
}

/* DLフォーム */
#cf7-dl-area {
  max-width: 500px;
  margin: 0 auto;
}
.isp-dl-form__lead {
  text-align: center;
  font-size: 0.95em;
  color: #555;
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.isp-dl-form__field {
  margin-bottom: 1.2em;
}
.isp-dl-form__field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3em;
  font-size: 0.95em;
  color: #333;
}
.isp-dl-form__field input[type="text"],
.isp-dl-form__field input[type="email"] {
  width: 100%;
  padding: 0.7em 0.8em;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 1em;
  background: #fafafa;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.isp-dl-form__field input:focus {
  border-color: var(--isp-color-main);
  box-shadow: 0 0 0 2px rgba(221,153,51,0.15);
  background: #fff;
  outline: none;
}
.isp-dl-form__accept {
  text-align: center;
  margin: 1.5em 0 1em;
  font-size: 0.9em;
}
.isp-dl-form__accept input[type="checkbox"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #ccc !important;
  border-radius: 4px !important;
  background: #fff !important;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  margin: 0 0.3em 0 0 !important;
}
.isp-dl-form__accept input[type="checkbox"]:checked {
  background: var(--isp-color-main) !important;
  border-color: var(--isp-color-main) !important;
}
.isp-dl-form__accept input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.isp-dl-form__accept input[type="checkbox"]::before {
  display: none !important;
  content: none !important;
}
.isp-dl-form__submit {
  text-align: center;
  margin-top: 1.5em;
}
.isp-dl-form__submit .wpcf7-submit {
  background: var(--isp-color-main);
  color: #fff;
  border: none;
  padding: 1em 3em;
  font-size: 1.05em;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  min-width: 280px;
}
.isp-dl-form__submit .wpcf7-submit:hover {
  background: var(--isp-color-main-dark);
  transform: translateY(-1px);
}

/* スマホ対応 */
@media (max-width: 599px) {
  .isp-dl-hero {
    flex-direction: column;
    text-align: center;
    padding: 1.5em;
  }
  .isp-dl-hero__list {
    justify-content: center;
  }
  .isp-dl-form__submit .wpcf7-submit {
    width: 100%;
    min-width: auto;
  }
}

/* ===== 業務事例 ヒーローセクション（上下配置） ===== */
.isp-case-hero {
  max-width: 900px;
  margin: 0 auto;
}
.isp-case-hero__head {
  text-align: center;
  margin-bottom: 2em;
}
.isp-case-hero__kbn {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  color: var(--isp-color-main-dark);
  background: var(--isp-color-light);
  padding: 0.25em 1em;
  border-radius: 4px;
  margin-bottom: 0.8em;
}
.isp-case-hero__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  margin: 0 0 0.5em;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.isp-case-hero__title::before,
.isp-case-hero__title::after {
  display: none !important;
}
.isp-case-hero__sub {
  font-size: 0.9em;
  color: #888;
  margin: 0;
}
.isp-case-hero__client-link {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.isp-case-hero__client-link:hover {
  color: #dd9933;
  text-decoration: underline;
}
/* お客様情報ボックス（事例ページ下部） */
.isp-case-client-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
  padding: 28px 36px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}
.isp-case-client-box__label {
  font-size: 0.75em;
  color: #999;
  letter-spacing: 1px;
  margin: 0 0 4px;
}
.isp-case-client-box__name {
  font-size: 1.15em;
  font-weight: 700;
  color: #333;
  margin: 0;
}
.isp-case-client-box__industry {
  font-size: 0.85em;
  color: #888;
  margin: 4px 0 0;
}
.isp-case-client-box__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #dd9933;
  color: #fff !important;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.isp-case-client-box__btn:hover {
  background: #b87a1e;
  transform: translateY(-1px);
}
.isp-case-client-box__btn svg {
  flex-shrink: 0;
}
@media (max-width: 599px) {
  .isp-case-client-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .isp-case-client-box__btn {
    width: 100%;
    justify-content: center;
  }
}
.isp-case-hero__thumb {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.isp-case-hero__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 599px) {
  .isp-case-hero__title {
    font-size: 1.2rem;
  }
}

/* ===== 業務事例一覧ページ ===== */
/* ページタイトル完全除去（高さ含む） */
#body_wrap.id_270 .c-pageTitle {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
/* 上部余白を徹底除去 */
#body_wrap.id_270 .l-mainContent,
#body_wrap.id_270 .l-mainContent__inner,
#body_wrap.id_270 .l-mainContent__inner > .post_content,
#body_wrap.id_270 .post_content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#body_wrap.id_270 .l-mainContent__inner > .post_content {
  margin: 0 !important;
}
#body_wrap.id_270 .c-breadcrumb {
  margin-bottom: 0 !important;
}

/* カードデザイン改善 */
#body_wrap.id_270 .p-postList.-type-card .p-postList__item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
#body_wrap.id_270 .p-postList.-type-card .p-postList__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
/* カード内のパディング完全除去（画像フル表示） */
#body_wrap.id_270 .p-postList.-type-card .p-postList__link,
#body_wrap.id_270 .-type-card .p-postList__link {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: none !important;
}
/* サムネイル — 全余白除去 */
#body_wrap.id_270 .p-postList__thumb,
#body_wrap.id_270 .p-postList__thumb.c-postThumb,
#body_wrap.id_270 .c-postThumb,
#body_wrap.id_270 .c-postThumb__figure {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden;
  position: relative;
  width: 100% !important;
  box-shadow: none !important;
}
/* 画像下端のインセットシャドウ */
#body_wrap.id_270 .c-postThumb__figure::after {
  content: "" !important;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
  pointer-events: none;
  z-index: 1;
}
#body_wrap.id_270 .c-postThumb__img {
  transition: transform 0.4s;
  border-radius: 0 !important;
  width: 100% !important;
}
#body_wrap.id_270 .p-postList__item:hover .c-postThumb__img {
  transform: scale(1.05);
}
/* カテゴリーバッジ（小さめ） */
#body_wrap.id_270 .c-postThumb__cat {
  background-color: var(--isp-color-main) !important;
  background-image: none !important;
  font-size: 0.65em !important;
  padding: 0.2em 0.6em !important;
  border-radius: 0 0 0 4px;
  letter-spacing: 0;
}
/* 本文エリア — flexで日付を下に吸着 */
#body_wrap.id_270 .p-postList__body {
  padding: 0.8em 0.8em 1em !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}
#body_wrap.id_270 .p-postList__title {
  font-size: 0.9em !important;
  line-height: 1.6 !important;
  font-weight: 700 !important;
  color: #333 !important;
  margin: 0 0 0.4em !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
#body_wrap.id_270 .p-postList__title::before,
#body_wrap.id_270 .p-postList__title::after {
  display: none !important;
}
/* 日付 — カード下部に吸着・文字大きめ */
#body_wrap.id_270 .p-postList__meta {
  margin-top: auto !important;
  padding-top: 0.5em;
}
#body_wrap.id_270 .p-postList__times,
#body_wrap.id_270 .c-postTimes {
  font-size: 0.9rem !important;
  color: #999 !important;
}

/* MOREボタン非表示 + リスト下余白 */
#body_wrap.id_270 .is-style-more_btn {
  display: none !important;
}
#body_wrap.id_270 .p-postListWrap {
  margin-bottom: 4em;
}

/* ===== REASON リード文（タイトル下の概要） ===== */
.isp-reason-lead {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2em;
  text-align: left;
}
.isp-reason-lead p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
  margin: 0 0 0.8em;
}
.isp-reason-lead p:last-child {
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .isp-reason-lead {
    padding: 0 1em;
  }
}

/* ===== REASON 数字ハイライト ===== */
.isp-stats-grid {
  display: flex;
  justify-content: center;
  gap: 3em;
  text-align: center;
}
.isp-stat__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--isp-color-main);
  line-height: 1.2;
}
.isp-stat__unit {
  font-size: 1.2rem;
  font-weight: 600;
}
.isp-stat__label {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.3em;
  letter-spacing: 0.05em;
}

/* ===== REASON 左右交互レイアウト ===== */
.isp-reason-split {
  display: flex;
  align-items: center;
  gap: 3em;
  max-width: 900px;
  margin: 0 auto;
}
.isp-reason-split.-reverse {
  flex-direction: row-reverse;
}
.isp-reason-split__img {
  flex: 0 0 40%;
  max-width: 40%;
}
.isp-reason-split__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.isp-reason-split__text {
  flex: 1;
}
.isp-reason-split__en {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--isp-color-main-dark);
  margin-bottom: 0.4em;
}
.isp-reason-split__title {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.8em !important;
  color: #333 !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.isp-reason-split__title::before,
.isp-reason-split__title::after {
  display: none !important;
}
.isp-reason-split__text p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 0.8em;
}
.isp-reason-split__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .isp-stats-grid {
    gap: 1.5em;
  }
  .isp-stat__number {
    font-size: 2.2rem;
  }
  .isp-reason-split,
  .isp-reason-split.-reverse {
    flex-direction: column;
    gap: 1.5em;
  }
  .isp-reason-split__img {
    flex: none;
    max-width: 70%;
    margin: 0 auto;
  }
  .isp-reason-split__text {
    text-align: center;
  }
}

/* ========================================
   Area & Related Links Section
   ======================================== */
.isp-area-section {
  max-width: 900px;
  margin: 3em auto 0;
  padding: 2em;
  background: var(--isp-color-white);
  border: 1px solid var(--isp-color-border);
  border-radius: var(--isp-radius);
}
.isp-area-section__title {
  text-align: center;
  font-size: 1.3em !important;
  font-weight: 700;
  margin: 0 0 1em !important;
  padding: 0 !important;
  color: var(--isp-color-text);
}
.isp-area-section__text {
  font-size: 0.95em;
  line-height: 1.8;
  color: var(--isp-color-text-light);
  margin-bottom: 1.2em;
}
.isp-related-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
}
.isp-related-links__label {
  font-weight: 600;
  font-size: 0.9em;
  color: var(--isp-color-text);
}
.isp-related-links__item {
  display: inline-block;
  padding: 0.3em 0.9em;
  background: var(--isp-color-main-light);
  color: var(--isp-color-main-dark) !important;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s;
}
.isp-related-links__item:hover {
  background: var(--isp-color-main);
  color: var(--isp-color-white) !important;
}
@media (max-width: 599px) {
  .isp-area-section {
    padding: 1.5em 1em;
    margin: 2em auto 0;
  }
}

/* ========================================
   FAQ Section
   ======================================== */
.isp-faq-section {
  max-width: 900px;
  margin: 3em auto 4em !important;
  padding: 2.5em 2em;
  background: var(--isp-color-bg);
  border-radius: var(--isp-radius);
}
.isp-faq-section__title {
  text-align: center;
  font-size: 1.4em !important;
  font-weight: 700;
  margin: 0 0 1.5em !important;
  padding: 0 !important;
  color: var(--isp-color-text);
}
.isp-faq-item {
  background: var(--isp-color-white);
  border-radius: var(--isp-radius);
  margin-bottom: 1em;
  box-shadow: var(--isp-shadow-sm);
  overflow: hidden;
}
.isp-faq-item:last-child {
  margin-bottom: 0;
}
.isp-faq-item__q,
.isp-faq-item__a {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  padding: 1.2em 1.5em;
  line-height: 1.7;
}
.isp-faq-item__q {
  font-weight: 600;
  color: var(--isp-color-text);
  border-bottom: 1px solid var(--isp-color-border);
}
.isp-faq-item__a {
  color: var(--isp-color-text-light);
}
.isp-faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  background: var(--isp-color-main);
  color: var(--isp-color-white);
  font-weight: 700;
  font-size: 0.9em;
  line-height: 1;
}
.isp-faq-item__icon--a {
  background: #4a90a4;
}
@media (max-width: 599px) {
  .isp-faq-section {
    padding: 1.5em 1em;
    margin: 2em auto 0;
  }
  .isp-faq-item__q,
  .isp-faq-item__a {
    padding: 1em;
    gap: 0.6em;
    font-size: 0.95em;
  }
}

/* ========================================
   Blog Post Fixes
   ======================================== */
/* Hide duplicate date in post title area */
.single-post .c-postTitle__date {
  display: none !important;
}
/* Hide empty related posts section */
.l-articleBottom__section:has(> p:only-of-type) {
  display: none !important;
}
/* Fallback: hide "関連する記事はまだ見つかりませんでした" text */
.l-articleBottom__section > p:only-child {
  display: none !important;
}
.l-articleBottom__section > .c-secTitle:first-child:last-of-type + p {
  display: none !important;
}

/* ========================================
   Service Banner Link (Blog CTA)
   ======================================== */
.isp-service-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
  max-width: 900px;
  margin: 2em auto;
  padding: 1.5em 2em;
  background: linear-gradient(135deg, var(--isp-color-main-light) 0%, #fff8f0 100%);
  border-left: 4px solid var(--isp-color-main);
  border-radius: var(--isp-radius);
  box-shadow: var(--isp-shadow-sm);
  text-decoration: none !important;
  color: var(--isp-color-text) !important;
  transition: box-shadow 0.2s, transform 0.2s;
}
.isp-service-banner:hover {
  box-shadow: var(--isp-shadow-md);
  transform: translateY(-2px);
}
.isp-service-banner__inner {
  flex: 1;
}
.isp-service-banner__label {
  font-size: 0.75em;
  font-weight: 600;
  color: var(--isp-color-main-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0.4em;
}
.isp-service-banner__title {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--isp-color-text);
  margin-bottom: 0.3em;
}
.isp-service-banner__desc {
  font-size: 0.9em;
  color: var(--isp-color-text-light);
  line-height: 1.5;
}
.isp-service-banner__arrow {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.9em;
  color: var(--isp-color-main-dark);
  white-space: nowrap;
}
@media (max-width: 599px) {
  .isp-service-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8em;
    padding: 1.2em 1.5em;
  }
  .isp-service-banner__arrow {
    align-self: flex-end;
  }
}

/* ===== LP専用フォーム ===== */
/* URL・ラジオの幅を他フィールドと揃える */
.cf7-a input[type="url"] {
  background: #fdf8f0 !important;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}
.cf7-a .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}
.cf7-a .wpcf7-form-control-wrap input,
.cf7-a .wpcf7-form-control-wrap textarea {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ラジオボタン カスタムスタイル */
.cf7-a .wpcf7-radio {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
}
.cf7-a .wpcf7-radio .wpcf7-list-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 14px 20px !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  background: #fff !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
.cf7-a .wpcf7-radio .wpcf7-list-item:hover {
  border-color: #dd9933 !important;
  background: #fdf8f0 !important;
}
/* 選択中のカード枠 */
.cf7-a .wpcf7-radio .wpcf7-list-item:has(input:checked) {
  border-color: #dd9933 !important;
  background: #fdf8f0 !important;
  box-shadow: 0 0 0 1px #dd9933 !important;
}
/* ラジオボタン本体 */
.cf7-a .wpcf7-radio input[type="radio"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  border: 2px solid #ccc !important;
  border-radius: 50% !important;
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  position: relative !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
.cf7-a .wpcf7-radio input[type="radio"]:checked {
  border-color: #dd9933 !important;
  background: #dd9933 !important;
}
.cf7-a .wpcf7-radio input[type="radio"]:checked::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #fff !important;
}
/* ラベルテキスト */
.cf7-a .wpcf7-radio .wpcf7-list-item-label {
  font-size: 15px !important;
  cursor: pointer !important;
}
