/* ============================================================
   BIZ 共通スタイル（ao / so 共通セクション）
============================================================ */

/* ---- 実績数値：レイアウト ---- */
.biz-stats__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.biz-stats__laurel {
  width: 24px;
  height: 83px;
  object-fit: contain;
}

.biz-stats__laurel--r {
  transform: scaleX(-1);
}

.biz-stats__number-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

/* ---- 実績数値：数字 ---- */
.biz-stats__heading {
  font-weight: 700;
  font-size: 20px;
  color: #2a2d2a;
  margin: 0;
  text-align: center;
  letter-spacing: 0.07em;
  line-height: 1.4;
  font-feature-settings: "palt" 1;
}

.biz-stats__number {
  font-weight: 700;
  font-size: 46px;
  color: #b77f00;
  line-height: 1;
  letter-spacing: 0.02em;
}

.biz-stats__heading-sm {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
}

.biz-stats__heading-accent {
  font-weight: 700;
  font-size: 32px;
  color: #0095bd;
}

.biz-stats__figures {
  display: flex;
  align-items: center;
  gap: 40px;
}

.biz-stats__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.biz-stats__label {
  font-weight: 700;
  font-size: 13px;
  color: #b77f00;
  letter-spacing: 0.06em;
  font-feature-settings: "palt" 1;
}

.biz-stats__unit {
  font-weight: 700;
  font-size: 12px;
  color: #b77f00;
  letter-spacing: 0.06em;
  font-feature-settings: "palt" 1;
}

/* ============================================================
   About ヘッダー
============================================================ */

.biz-about__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.biz-about__headline {
  font-weight: 700;
  font-size: 36px;
  color: #2a2d2a;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.biz-about__subline {
  font-weight: 400;
  font-size: 16px;
  color: #2a2d2a;
  line-height: 1.75;
  letter-spacing: 0.07em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ============================================================
   Service ヘッダー
============================================================ */

.biz-service__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.biz-service__headline {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #2a2d2a;
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ---- サービス: インナー・本文 ---- */
.biz-service__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.biz-service__body {
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.75;
  margin: 0;
  letter-spacing: 0.06em;
  text-align: center;
  font-feature-settings: "palt" 1;
}

/* ---- カードグリッド ---- */
.biz-service__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.biz-service__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  background: #f1f7f9;
  border: 1px solid rgba(5, 129, 168, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}

a.biz-service__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.biz-service__card-img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  overflow: hidden;
}

.biz-service__card-img img {
  width: 240px;
  height: auto;
  display: block;
  margin: auto;
}

.biz-service__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.biz-service__card-catch {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: 0.02em;
}

.biz-service__card-title {
  font-weight: 700;
  font-size: 20px;
  color: #2a2d2a;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0;
}

.biz-service__card-body {
  font-size: 14px;
  color: rgba(42, 45, 42, 0.7);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  font-feature-settings: "palt" 1;
}

.biz-service__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: none;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" 1;
  transition: var(--transition-opacity);
  margin-top: 8px;
  align-self: center;
}

.biz-service__card-link:hover {
  opacity: 0.85;
}

/* ---- セクション共通パディング ---- */
.ao-case,
.so-case {
  background: #fff;
  padding: 100px 0 80px;
}

.ao-seminar,
.so-seminar {
  background: #fff;
  padding: 100px 0 80px;
}

.ao-faq,
.so-faq {
  padding: 100px 0;
  background: #fff;
}

.ao-trial,
.so-trial {
  padding: 40px 0;
  background: #fff;
}

.ao-cta,
.so-cta {
  padding: 80px 0 100px;
  background: #fff;
}

.ao-reason,
.so-reason {
  padding: 0 20px 80px;
  background-color: #0781a8;
}

/* ============================================================
   導入事例（Case）スライダー
============================================================ */

/* ---- ヘッダー ---- */
.biz-case__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.biz-case__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.biz-case__headline {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #2a2d2a;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.biz-case__subline {
  font-size: 16px;
  color: #2a2d2a;
  margin: 0;
  line-height: 1.75;
  letter-spacing: 0.06em;
}

/* ---- 矢印 ---- */
.biz-case__arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.biz-case__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(42, 45, 42, 0.2);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: var(--transition-opacity);
}

.biz-case__arrow:hover {
  opacity: 0.6;
}

.biz-case__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

/* ---- スライダー ---- */
.biz-case__swiper-wrap {
  padding: 0 20px;
  overflow: hidden;
}

.biz-case__swiper {
  overflow: visible;
}

.biz-case__swiper .swiper-wrapper {
  align-items: stretch;
}

.biz-case__swiper .swiper-slide {
  width: 315px;
}

/* ---- カード ---- */
.biz-case__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: auto;
  /*background: #f1f7f9;*/
  /*border: 1px solid rgba(5, 129, 168, 0.1);*/
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition-opacity);
}

.biz-case__card:hover {
  opacity: 0.85;
}

/* サムネイル */
.biz-case__card-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.biz-case__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ロゴ */
.biz-case__card-logo {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #fff;
  border-radius: 5px;
  width: 100px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.biz-case__card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
}

/* テキストエリア */
.biz-case__card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.biz-case__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.biz-case__card-company {
  font-size: 12px;
  color: #2a2d2a;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.biz-case__card-title {
  font-weight: 700;
  font-size: 16px;
  color: #2a2d2a;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

/* メタ情報（業種・従業員数） */
.biz-case__card-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: auto;
}

.biz-case__card-meta-labels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biz-case__card-meta-labels span {
  font-size: 13px;
  color: rgba(42, 45, 42, 0.5);
  letter-spacing: 0.05em;
  line-height: 1.5;
  white-space: nowrap;
}

.biz-case__card-meta-divider {
  width: 1px;
  background: rgba(42, 45, 42, 0.2);
  flex-shrink: 0;
  align-self: stretch;
}

.biz-case__card-meta-values {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biz-case__card-meta-values span {
  font-size: 13px;
  color: #2a2d2a;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* ---- もっとみるボタン ---- */
.biz-case__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}

.biz-case__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 50px;
  padding: 0 24px;
  background: var(--color-primary);
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  transition: var(--transition-opacity);
}

.biz-case__more-btn:hover {
  opacity: 0.85;
}

/* ============================================================
   セミナー情報
============================================================ */

.biz-seminar__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.biz-seminar__headline {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #2a2d2a;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.biz-seminar__subline {
  font-size: 16px;
  color: #2a2d2a;
  margin: 0;
  line-height: 1.75;
  letter-spacing: 0.06em;
}

/* ---- グリッド ---- */
.biz-seminar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* ---- フィーチャードカード ---- */
.biz-seminar__featured {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: 100%;
  box-sizing: border-box;
  background: #f1f7f9;
  border: 1px solid rgba(5, 129, 168, 0.1);
  border-radius: 10px;
  padding: 20px 20px 40px;
  text-decoration: none;
  transition: var(--transition-opacity);
}

.biz-seminar__featured:hover {
  opacity: 0.85;
}

.biz-seminar__featured-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.biz-seminar__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.biz-seminar__featured-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- 右カラム ---- */
.biz-seminar__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- 小カード ---- */
.biz-seminar__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f1f7f9;
  border: 1px solid rgba(5, 129, 168, 0.1);
  border-radius: 10px;
  padding: 20px 40px 20px 20px;
  text-decoration: none;
  transition: var(--transition-opacity);
}

.biz-seminar__item:hover {
  opacity: 0.85;
}

.biz-seminar__item-img {
  width: 230px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.biz-seminar__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.biz-seminar__item-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* ---- テキスト ---- */
.biz-seminar__format {
  font-size: 15px;
  color: #0e86ad;
  margin: 0;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
}

.biz-seminar__item .biz-seminar__format {
  font-size: 12px;
}

.biz-seminar__title {
  font-weight: 700;
  font-size: 20px;
  color: #2a2d2a;
  margin: 0;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
}

.biz-seminar__title--sm {
  font-size: 14px;
}

/* 日時バッジ */
.biz-seminar__date-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: #eef0ee;
  border: 1px solid #e2e3e2;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 12px;
  color: #2a2d2a;
  line-height: 1.75;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-feature-settings: "palt" 1;
}

/* 終了バッジ */
.biz-seminar__ended-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #c7c7c7;
  border-radius: 10px 0 5px 0;
  padding: 6px 16px;
  font-size: 14px;
  color: #2a2d2a;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

/* ---- もっとみるボタン ---- */
.biz-seminar__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.biz-seminar__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 50px;
  padding: 0 24px;
  background: var(--color-primary);
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  transition: var(--transition-opacity);
}

.biz-seminar__more-btn:hover {
  opacity: 0.85;
}

/* ============================================================
   FAQ
============================================================ */

.biz-faq__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.biz-faq__header {
  flex: 0 0 260px;
  padding-top: 10px;
}

.biz-faq__headline {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #2a2d2a;
  margin: 0 0 20px;
  font-feature-settings: "palt" 1;
}

.biz-faq__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0;
}

.biz-faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ---- アコーディオン ---- */
.biz-faq__item {
  border-top: 1px solid #e0e0e0;
}

.biz-faq__item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.biz-faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}

.biz-faq__q::-webkit-details-marker {
  display: none;
}

.biz-faq__q-label {
  flex-shrink: 0;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-primary);
  letter-spacing: 0;
  line-height: 1;
}

.biz-faq__q-text {
  flex: 1;
  font-weight: 500;
  font-size: 16px;
  color: #2a2d2a;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.biz-faq__toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  position: relative;
  transition: opacity 0.2s;
}

.biz-faq__toggle::before,
.biz-faq__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.biz-faq__toggle::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.biz-faq__toggle::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.biz-faq__item[open] .biz-faq__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.biz-faq__item[open] .biz-faq__toggle {
  opacity: 0.75;
}

.biz-faq__a {
  padding: 0 30px 24px 30px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ============================================================
   選ばれる理由（Reason）
   ※ background / backdrop-filter は ao.css / so.css で上書き
============================================================ */

.biz-reason__inner {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  padding: 80px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.biz-reason__head {
  padding: 0 10px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.biz-reason__head-title {
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-feature-settings: "palt" 1;
}

.biz-reason__head-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.biz-reason__item {
  display: flex;
}

.biz-reason__item--rev {
  flex-direction: row-reverse;
}

.biz-reason__item-img {
  flex: 0 0 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
}

.biz-reason__item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.biz-reason__card {
  flex: 0 0 50%;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 60px 60px 60px 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.biz-reason__card-label {
  font-size: 12px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.07em;
  line-height: 1.7;
  opacity: 0.9;
}

.biz-reason__card-title {
  font-weight: 700;
  font-size: 38px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-feature-settings: "palt" 1;
}

.biz-reason__card-body {
  font-size: 16px;
  color: #fff;
  margin: 0;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-feature-settings: "palt" 1;
}

/* ============================================================
   トライアルCTA（Trial）
   ※ background は ao.css / so.css で指定
============================================================ */

.biz-trial__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 10px;
  overflow: hidden;
  padding: 80px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-opacity);
}

a.biz-trial__card:hover {
  opacity: 0.85;
}

.biz-trial__card::before {
  content: '';
  position: absolute;
  right: -550px;
  top: -20px;
  transform: translateY(-50%) rotate(15deg);
  width: 1200px;
  height: 1200px;
  background: url(../img/cta/cta_bg.svg) center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}

.biz-trial__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 478px;
}

.biz-trial__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  height: 70px;
  padding: 0 30px;
  background: #fff;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  color: #2a2d2a;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition-opacity);
  font-feature-settings: "palt" 1;
}

.biz-trial__btn:hover {
  opacity: 0.85;
}

.biz-trial__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.biz-trial__body {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ============================================================
   CTA
   ※ background は ao.css / so.css で指定
============================================================ */

.biz-cta__download,
.biz-cta__col {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.biz-cta__download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px;
  margin-bottom: 16px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-opacity);
}

a.biz-cta__download:hover {
  opacity: 0.85;
}

.biz-cta__download-body {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 452px;
}

.biz-cta__download-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.biz-cta__download-heading {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0;
}

.biz-cta__download-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  margin: 0;
}

.biz-cta__download-img {
  flex-shrink: 0;
  position: absolute;
  bottom: -25px;
  right: 120px;
  width: 480px;
  transform-origin: center center;
  transform: rotate(-5deg);
}

.biz-cta__download-img img {
  width: 100%;
  height: auto;
  display: block;
}

.biz-cta__bottom {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.biz-cta__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 50px 60px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-opacity);
}

a.biz-cta__col:hover {
  opacity: 0.85;
}

.biz-cta__bottom .biz-cta__col:last-child::after {
  content: '';
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  background: url('../img/cta/cta_bg.svg') no-repeat center;
  background-size: contain;
  transform: rotate(-30deg);
  pointer-events: none;
  z-index: 0;
}

.biz-cta__col-heading {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0;
}

.biz-cta__col-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  text-align: left;
  margin: 0;
}

.biz-cta__col .biz-cta__btn {
  margin-top: 20px;
}

.biz-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  height: 60px;
  padding: 0 28px;
  background: #fff;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  color: #041e39;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
  transition: var(--transition-opacity);
}

.biz-cta__btn:hover {
  opacity: 0.85;
}

.biz-cta__btn svg {
  color: #041e39;
}

/* ============================================================
   FV フォトスライダー（共通）
============================================================ */

.biz-fv__card {
  position: relative;
  height: 600px;
  border-radius: 10px;
  display: flex;
  align-items: stretch;
}

.biz-fv__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  z-index: 2;
}

.biz-fv__collage {
  flex: 0 0 510px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  z-index: 1;
}

.biz-fv__col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 0 0 240px;
}

.biz-fv__col--r {
  align-self: flex-end;
}

.biz-fv__photo {
  width: 240px;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.biz-fv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.biz-fv__photo--partial-top {
  height: 160px;
  border-radius: 0 0 10px 10px;
}

.biz-fv__photo--partial-btm {
  height: 160px;
  border-radius: 10px 10px 0 0;
}

.biz-fv__overlay {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  z-index: 3;
}

.biz-fv__overlay img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-fv__overlay--screen {
  width: 200px;
  height: auto;
  right: -100px;
  top: 40px;
}

.biz-fv__overlay--mobile {
  width: 105px;
  height: auto;
  right: 460px;
  bottom: 60px;
}

.biz-fv__btn--white {
  background: #fff;
  color: #006d8a;
}

/* ---- 左コンテンツ ---- */
.biz-fv__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ---- 見出し ---- */
.biz-fv__headline {
  font-weight: 700;
  font-size: 58px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.biz-fv__headline-sm {
  font-size: 30px;
}

/* ---- 箇条書き ---- */
.biz-fv__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.biz-fv__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
}

.biz-fv__bullets svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ---- CTAボタン ---- */
.biz-fv__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.biz-fv__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 70px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  font-feature-settings: "palt" 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition-opacity);
}

.biz-fv__btn:hover {
  opacity: 0.85;
}

.biz-fv__btn--gradient {
  background: linear-gradient(to right, #006d8a, #004659);
  color: #fff;
}

/* ============================================================
   Tablet  (max-width: 1199px)
============================================================ */
@media (max-width: 1199px) {

  /* FV */
  .biz-fv__card {
    overflow: hidden;
  }

  .biz-fv__headline {
    font-size: 40px;
  }

  .biz-fv__headline-sm {
    font-size: 22px;
  }

  .biz-fv__collage {
    flex: 0 0 320px;
    gap: 16px;
  }

  .biz-fv__col {
    flex: 0 0 148px;
    gap: 16px;
  }

  .biz-fv__photo {
    width: 148px;
    height: 240px;
  }

  .biz-fv__photo--partial-top {
    height: 100px;
  }

  .biz-fv__photo--partial-btm {
    height: 100px;
  }

  .biz-fv__overlay--screen {
    width: 150px;
    right: 0;
  }

  .biz-fv__overlay--mobile {
    width: 90px;
    right: 210px;
  }

  .biz-fv__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .biz-fv__btn {
    width: 240px;
    justify-content: center;
    box-sizing: border-box;
  }

  /* 文字サイズ調整 */
  .biz-about__headline {
    font-size: 30px;
  }

  .biz-about__subline,
  .biz-service__body {
    font-size: 15px;
  }

  .biz-service__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .biz-service__headline,
  .biz-case__headline,
  .biz-seminar__headline,
  .biz-faq__headline {
    font-size: 34px;
  }

  .biz-cta__download-heading,
  .biz-cta__col-heading {
    font-size: 34px;
  }

  .biz-reason__head-title {
    font-size: 30px;
  }

  .biz-reason__item {
    flex-direction: column;
  }

  .biz-reason__item--rev {
    flex-direction: column;
  }

  .biz-reason__item-img {
    flex: none;
    width: 100%;
    order: 1;
  }

  .biz-reason__card {
    order: 0;
  }

  .biz-reason__card-title {
    font-size: 28px;
  }

  .biz-stats__heading {
    font-size: 18px;
  }

  .biz-stats__number {
    font-size: 36px;
  }

  .biz-stats__heading-accent {
    font-size: 26px;
  }

  .biz-stats__label {
    font-size: 12px;
  }

  .biz-stats__figures {
    gap: 24px;
  }

  .biz-trial__title {
    font-size: 28px;
  }

  .biz-seminar__headline {
    font-size: 34px;
  }

  .biz-seminar__format {
    font-size: 14px;
  }

  .biz-seminar__title {
    font-size: 18px;
  }

  .biz-faq__inner {
    flex-direction: column;
    gap: 40px;
  }

  .biz-faq__header {
    flex: none;
  }

  .biz-cta__download {
    padding: 40px;
  }

  .biz-cta__col {
    padding: 40px;
  }

  .biz-cta__download-heading,
  .biz-cta__col-heading {
    font-size: 30px;
  }

  .biz-cta__download-img {
    width: 280px;
    right: 20px;
  }

}

/* ============================================================
   Mobile  (max-width: 767px)
============================================================ */
@media (max-width: 767px) {

  .biz-fv__bullets li {
    font-size: 15px;
  }

  .biz-case__arrows {
    align-self: flex-end;
  }

  /* Service */
  .biz-service__headline {
    font-size: 22px;
  }

  .biz-service__cards {
    grid-template-columns: 1fr;
  }

  /* FV */
  .biz-fv__headline {
    font-size: 36px;
  }

  .biz-fv__headline-sm {
    font-size: 20px;
  }

  .biz-fv__cta {
    flex-direction: column;
    gap: 10px;
  }

  .biz-fv__btn {
    width: 100%;
    justify-content: center;
    height: 58px;
    box-sizing: border-box;
  }

  .biz-fv__card {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .biz-fv__content {
    padding: 48px 12px 48px;
    gap: 32px;
  }

  .biz-fv__collage {
    flex: none;
    width: 100%;
    height: auto;
    gap: 12px;
    overflow: hidden;
  }

  .biz-fv__col {
    flex: 1;
    gap: 12px;
  }

  .biz-fv__col--r {
    align-self: auto;
  }

  .biz-fv__photo {
    width: 100%;
    height: 200px;
  }

  .biz-fv__photo--partial-top,
  .biz-fv__photo--partial-btm {
    height: 100px;
    border-radius: 10px;
  }

  .biz-fv__overlay {
    display: none;
  }

  /* 実績数値 */
  .biz-stats__heading-accent {
    font-size: 24px;
  }

  .biz-stats__number {
    font-size: 28px;
  }

  .biz-stats__figures {
    flex-wrap: wrap;
    gap: 24px 16px;
    justify-content: center;
  }

  .biz-stats__laurel {
    display: none;
  }

  .biz-stats__figure {
    width: calc(50% - 8px);
    align-items: center;
  }

  /* Section paddings */
  .ao-case,
  .so-case {
    padding: 60px 0;
  }

  .ao-seminar,
  .so-seminar {
    padding: 60px 0;
  }

  .ao-faq,
  .so-faq {
    padding: 60px 0;
  }

  .ao-trial,
  .so-trial {
    padding: 40px 0;
  }

  .ao-cta,
  .so-cta {
    padding: 60px 0 80px;
  }

  .ao-reason,
  .so-reason {
    padding: 0 12px 60px;
  }

  .biz-about__subline {
    font-size: 14px;
  }

  .biz-service__inner {
    gap: 40px;
  }

  .biz-service__body {
    font-size: 14px;
  }

  .biz-service__card {
    padding: 30px;
  }

  .biz-service__card-img img {
    width: 200px;
  }

  .biz-service__card-title {
    font-size: 18px;
  }

  /* Case */
  .biz-case__headline {
    font-size: 22px;
  }

  .biz-case__subline {
    font-size: 14px;
  }

  .biz-case__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .biz-case__swiper-wrap {
    padding: 0;
    padding-left: 20px;
    overflow: hidden;
    max-width: 100vw;
  }

  /* About */
  .biz-about__headline {
    font-size: 24px;
  }

  /* Seminar */
  .biz-seminar__headline {
    font-size: 26px;
  }

  .biz-seminar__subline {
    font-size: 13px;
  }

  .biz-seminar__title {
    font-size: 15px;
  }

  .biz-seminar__header {
    margin-bottom: 32px;
  }

  .biz-seminar__grid {
    grid-template-columns: 1fr;
  }

  .biz-seminar__featured {
    gap: 20px;
    padding: 20px;
  }

  .biz-seminar__featured-img {
    height: auto;
  }

  .biz-seminar__featured-body {
    gap: 8px;
  }

  .biz-seminar__date-badge {
    padding: 5px 8px;
    font-size: 11px;
  }

  .biz-seminar__item {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .biz-seminar__item-img {
    width: 100%;
    height: 160px;
  }

  /* FAQ */
  .biz-faq__headline {
    font-size: 26px;
  }

  .biz-faq__inner {
    flex-direction: column;
    gap: 32px;
  }

  .biz-faq__header {
    flex: none;
    width: 100%;
  }

  .biz-faq__q-text {
    font-size: 14px;
  }

  .biz-faq__a {
    font-size: 13px;
  }

  .biz-faq__toggle {
    width: 20px;
    height: 20px;
  }

  .biz-faq__q {
    gap: 12px;
    padding: 18px 0;
  }

  .biz-faq__q-label {
    font-size: 16px;
  }

  /* Reason */
  .biz-reason__inner {
    padding: 60px 20px;
  }

  .biz-reason__item {
    flex-direction: column;
  }

  .biz-reason__item-img {
    flex: none;
    width: 100%;
    padding: 20px 0;
    order: 1;
  }

  .biz-reason__card {
    order: 0;
  }

  .biz-reason__card {
    flex: none;
    width: 100%;
    padding: 32px 20px;
    gap: 12px;
  }

  .biz-reason__head-title {
    font-size: 22px;
  }

  .biz-reason__card-title {
    font-size: 20px;
  }

  .biz-reason__card-body {
    font-size: 14px;
  }

  /* Trial */
  .biz-trial__card {
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
  }

  .biz-trial__card::before {
    display: none;
  }

  .biz-trial__title {
    font-size: 22px;
    text-align: center;
  }

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

  .biz-trial__btn {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* CTA */
  .biz-cta__download {
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .biz-cta__download-body {
    width: 100%;
    box-sizing: border-box;
  }

  .biz-cta__download-img {
    display: none;
  }

  .biz-cta__download-heading,
  .biz-cta__col-heading {
    font-size: 26px;
  }

  .biz-cta__bottom {
    flex-direction: column;
  }

  .biz-cta__col {
    padding: 40px 20px;
  }

  .biz-cta__btn {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

}