/* ===================================
   リセットCSS・基本設定
=================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family: 'Noto Sans JP', 'Noto Sans JP Fallback', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

body.ai-bungo-lp {
  padding: 0 !important;
  margin: 0 !important;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ユーティリティクラス */
.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

/* ===================================
   ヘッダー
=================================== */
.header {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* WordPress管理バー表示時のヘッダー位置調整 */
body.admin-bar .header {
  top: var(--wp-admin--admin-bar--height, 32px);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo a {
  display: block;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-item a {
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header__nav-item a:hover {
  color: #1a3c5a;
}

.header__cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  background-clip: padding-box;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.header__cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.header__cta-btn:hover {
  color: #1e66c3;
  border-color: #1e66c3;
}

.header__cta-btn:hover::before {
  transform: scaleX(1);
}

.header__hamburger {
  display: none;
}

.header__mobile-nav {
  display: none;
}

/* ===================================
   FV（ファーストビュー）
=================================== */
.fv {
  position: relative;
  min-height: calc(100vh - 132px - var(--wp-admin--admin-bar--height, 0px)); /* logo-slider header(70px) + body(62px) - admin bar */
  overflow: hidden;
  background-color: #f3f9ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fv__bg-pattern {
  position: absolute;
  top: 70px;
  left: 0;
  width: 60vw;
  height: 50vw;
  background-image: url('../img/ai-bungo/blog_bg.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  opacity: 0.6;
  z-index: 1;
}

.fv__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.fv__content {
  flex: 1;
  max-width: 100%;
  position: relative;
}

.fv__balloon {
  margin-bottom: 20px;
}

.fv__balloon img {
  width: 280px;
  height: auto;
}

.fv__title {
  margin-bottom: 24px;
}

.fv__title-sub {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0px;
}

.fv__title-main {
  display: block;
  font-size: 4.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0px;
}

.fv__title-main em {
  font-style: normal;
  background: linear-gradient(90deg, #fe7903 0%, #ff5605 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv__title-accent {
  display: block;
  font-size: 4.4rem;
  font-weight: 600;
  color: #303133;
  letter-spacing: 0.02em;
  transform: skewX(-10deg);
}

.fv__description {
  font-size: 1.5rem;
  color: #0a0a0a;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 15px;
}

.fv__badges {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.fv__badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fv__badge-laurel {
  width: 22px;
  height: auto;
}

.fv__badge-laurel--right {
  transform: scaleX(-1);
}

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

.fv__badge-label {
  display: block;
  font-size: 1.6rem;
  color: #0a0a0a;
  font-weight: 500;
  margin-bottom: 4px;
}

.fv__badge-number {
  display: block;
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 20px;
}

.fv__badge-number small {
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.fv__badge-number .fv__badge-percent {
  font-size: 2.1rem;
}

.fv__badge-note {
  font-size: 1.2rem;
  color: #808080;
  vertical-align: super;
}

.fv__cta {
  display: flex;
  gap: 16px;
}

.fv__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.fv__cta-btn--outline {
  position: relative;
  background: #fff;
  color: #1e66c3;
  border: 2px solid #1e66c3;
  justify-content: center;
  min-width: 280px;
}

.fv__cta-btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a3d7a 0%, #1a5298 100%);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.fv__cta-btn--outline span:first-child {
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: -webkit-text-fill-color 0.3s ease;
}

.fv__cta-btn-arrow {
  width: 7px;
  height: 7px;
  border-top: 2px solid #1e66c3;
  border-right: 2px solid #4883cf;
  transform: rotate(45deg);
  position: absolute;
  right: 12px;
  transition: border-color 0.3s ease;
}

.fv__cta-btn--outline:hover {
  border-color: #0a3d7a;
}

.fv__cta-btn--outline:hover::before {
  transform: scaleX(1);
}

.fv__cta-btn--outline:hover span:first-child {
  -webkit-text-fill-color: #fff;
}

.fv__cta-btn--outline:hover .fv__cta-btn-arrow {
  border-top-color: #fff;
  border-right-color: #fff;
}

.fv__cta-btn--primary {
  background: linear-gradient(90deg, #ff5605 0%, #ffa929 100%);
  background-clip: padding-box;
  color: #fff;
  border: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.fv__cta-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.fv__cta-btn--primary:hover {
  color: #ff5605;
  border-color: #ff5605;
}

.fv__cta-btn--primary:hover::before {
  transform: scaleX(1);
}

.fv__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55vw;
  max-height: 800px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.fv__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
  object-position: right top;
}

.fv__image-back {
  z-index: 1;
}

.fv__image-mid {
  z-index: 2;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.6s ease-in-out, transform 0.8s ease-out;
}

.fv__image-mid--active {
  opacity: 1;
  transform: scale(1);
}

.fv__image-mid--leaving {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease-in-out, transform 0.8s ease-in;
}

.fv__image-front {
  z-index: 3;
  position: relative !important;
}

.fv__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.fv__scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #1e66c3;
  border-radius: 50%;
  animation: scrollDot 2.5s ease-in-out infinite;
}

.fv__scroll-line {
  display: block;
  width: 1px;
  height: 35px;
  background: linear-gradient(180deg, #1e66c3 0%, #4883cf 100%);
}

.fv__note {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-size: 1.2rem;
  color: #808080;
  z-index: 10;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(35px);
    opacity: 0;
  }
}

/* FV 入場アニメーション */
@keyframes fvFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fvFadeUpSkew {
  from {
    opacity: 0;
    transform: translateY(10px) skewX(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewX(-10deg);
  }
}
@keyframes fvSlideIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fv__balloon {
  opacity: 0;
  animation: fvFadeUp 0.8s ease forwards 0.1s;
}
.fv__title-sub {
  opacity: 0;
  animation: fvFadeUp 0.8s ease forwards 0.3s;
}
.fv__title-main {
  opacity: 0;
  animation: fvFadeUp 0.8s ease forwards 0.5s;
}
.fv__title-accent {
  opacity: 0;
  animation: fvFadeUpSkew 0.8s ease forwards 0.7s;
}
.fv__description {
  opacity: 0;
  animation: fvFadeUp 0.8s ease forwards 0.9s;
}
.fv__badges {
  opacity: 0;
  animation: fvFadeUp 0.8s ease forwards 1.1s;
}
.fv__cta {
  opacity: 0;
  animation: fvFadeUp 0.8s ease forwards 1.3s;
}
.fv__image {
  opacity: 0;
  animation: fvSlideIn 1s ease forwards 0.3s;
}

/* ===================================
   ロゴスライダー
=================================== */
.logo-slider__header {
  background-color: #ecefef;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider__title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 600;
  color: #303133;
}

.logo-slider__body {
  background-color: #fff;
  height: 62px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logo-slider__track {
  display: flex;
  width: fit-content;
  animation: logoScroll 30s linear infinite;
}

.logo-slider__list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
  flex-shrink: 0;
}

.logo-slider__item {
  height: 24px;
  width: auto;
  flex-shrink: 0;
  opacity: 1;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===================================
   よくあるお悩み
=================================== */
.problem {
  background: linear-gradient(to bottom, #fff 0%, #fff 65%, #f3f9ff 65%, #f3f9ff 100%);
  padding: 80px 20px;
}

.problem__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.problem__label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303133;
  margin-bottom: 0px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.problem__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem__title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #303133;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.problem__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem__title em {
  font-style: normal;
  font-size: 3.9rem;
  background: linear-gradient(90deg, #0b54b2 0%, #4883cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem__visual {
  position: relative;
  height: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.problem__visual.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem__person {
  position: absolute;
  bottom: 0;
  width: 160px;
  height: auto;
}

.problem__person--left {
  left: 20px;
}

.problem__person--right {
  right: 20px;
}

.problem__card {
  position: relative;
  background-color: #fff;
  border: 3px solid #d9d9d9;
  border-radius: 0;
  padding: 40px;
  box-shadow: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}
.problem__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem__card-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.problem__card-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #ecefef;
}

.problem__column {
  flex: 1;
  text-align: left;
  padding: 0 30px;
}

.problem__column-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.problem__column-title em {
  font-style: normal;
  font-size: 2.1rem;
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem__list {
  list-style: none;
}

.problem__list li {
  position: relative;
  padding-left: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 10px;
  line-height: 1.6;
}

.problem__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-color: #1e66c3;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
}

.problem__card-arrow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 20px solid #d9d9d9;
}

.problem__card-arrow::after {
  content: "";
  position: absolute;
  left: -39px;
  top: -23px;
  width: 0;
  height: 0;
  border-left: 39px solid transparent;
  border-right: 39px solid transparent;
  border-top: 19px solid #fff;
}

/* ===================================
   解決セクション
=================================== */
.solution {
  background-color: #f3f9ff;
  padding: 60px 20px 80px;
}

.solution__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.solution__title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #303133;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.solution__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.solution__title em {
  font-style: normal;
  background: linear-gradient(transparent 60%, #ffde46 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.solution__title.is-marker-visible em {
  background-size: 100% 100%;
}

.solution__subtitle {
  font-size: 2.1rem;
  font-weight: 600;
  color: #3f3f3f;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}
.solution__subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.solution__content {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.solution__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.solution__heading {
  font-size: 1.9rem;
  font-weight: 600;
  color: #303133;
  margin-bottom: 30px;
}

.solution__diagram {
  max-width: 600px;
  margin: 0 auto 30px;
}

.solution__diagram img {
  width: 100%;
  height: auto;
}

.solution__cost-text {
  font-size: 1.9rem;
  font-weight: 600;
  color: #303133;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.solution__cost-text.is-cost-visible {
  opacity: 1;
  transform: translateY(0);
  animation: costTextPulse 2.5s ease-in-out 1.4s infinite;
}
@keyframes costTextPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.solution__highlight-num {
  font-size: 3.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #055594 0%, #2ba8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 4px;
  vertical-align: -3px;
}
.solution__cost-text.is-cost-visible .solution__highlight-num {
  animation: costNumPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}
@keyframes costNumPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.solution__highlight {
  font-weight: 700;
  background: linear-gradient(90deg, #055594 0%, #2ba8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution__bottom {
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.45s, transform 0.8s ease 0.45s;
}
.solution__bottom.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.solution__note {
  font-size: 1.6rem;
  font-weight: 600;
  color: #303133;
  margin-bottom: 8px;
}

.solution__note em {
  font-style: normal;
  color: #fe7903;
  font-weight: 600;
}

.solution__cta-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #303133;
}

/* ===================================
   選ばれる理由（タブ切り替え式）
=================================== */
.features {
  background: linear-gradient(180deg, #d1dff1 0%, #edf2fa 100%);
  padding: 100px 20px;
}

.features__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  grid-template-columns: 450px 500px;
  gap: 0 90px;
  justify-content: center;
}

.features__label,
.features__title,
.features__desc {
  grid-column: 1 / -1;
}

/* --- ヘッダー（ナビ + 説明横並び） --- */
.features__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}
.features__header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 三角形タブナビ --- */
.features__nav {
  flex: 0 0 380px;
}

.features__nav-circle {
  position: relative;
  width: 440px;
  height: 380px;
}

.features__nav-item {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #008ebd 0%, #80cbc5 100%) border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.features__nav-item:hover {
  transform: scale(1.05);
}

.features__nav-item--active {
  background: linear-gradient(135deg, #034172 0%, #3a67bf 100%);
  border: none;
  animation: navActiveFloat 3s ease-in-out infinite;
}

@keyframes navActiveFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.features__nav-item--active .features__nav-number,
.features__nav-item--active .features__nav-label {
  color: #fff;
}

/* 01: 上中央 */
.features__nav-item[data-tab="1"] {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.features__nav-item[data-tab="1"]:hover {
  transform: translateX(-50%) scale(1.05);
}

/* 02: 左下 */
.features__nav-item[data-tab="2"] {
  bottom: 0;
  left: 0;
}

/* 03: 右下 */
.features__nav-item[data-tab="3"] {
  bottom: 0;
  right: 0;
}

.features__nav-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
}

/* アクティブなアイテムのアイコン揺れ */
.features__nav-item--active .features__nav-icon {
  animation: navIconWiggle 2.5s ease-in-out infinite;
}

@keyframes navIconWiggle {
  0%, 100% { rotate: 0deg; }
  15% { rotate: -8deg; }
  30% { rotate: 6deg; }
  45% { rotate: -4deg; }
  60% { rotate: 2deg; }
  75% { rotate: 0deg; }
}

/* 01: 右横 */
.features__nav-item[data-tab="1"] .features__nav-icon {
  top: -8px;
  right: -30px;
}

/* 02: 左上・左右反転 */
.features__nav-item[data-tab="2"] .features__nav-icon {
  top: -12px;
  left: -40px;
  right: auto;
  transform: scaleX(-1);
}

/* 03: 右上（さらに右） */
.features__nav-item[data-tab="3"] .features__nav-icon {
  top: -12px;
  right: -30px;
}

.features__nav-number {
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e66c3;
  margin-bottom: 4px;
}

.features__nav-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #034172;
  text-align: center;
  line-height: 1.4;
}

/* 中央テキスト */
.features__nav-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.features__nav-center p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e66c3;
  line-height: 1.6;
}

/* 三角形の接続線（グラデーション回転） */
.features__nav-circle::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  z-index: 0;
  transform: translateX(-50%);
  animation: navCircleRotate 8s linear infinite;
  background: conic-gradient(
    from 0deg,
    rgba(30, 102, 195, 0.5) 0%,
    rgba(72, 131, 207, 0.3) 25%,
    rgba(30, 102, 195, 0.05) 50%,
    rgba(72, 131, 207, 0.3) 75%,
    rgba(30, 102, 195, 0.5) 100%
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
}

/* サークルライン回転 */
@keyframes navCircleRotate {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

/* .features__nav-bottom は位置制御用（中身はabsoluteなので不要） */
.features__nav-bottom {
  display: contents;
}

/* --- セクションタイトル（上部中央） --- */
.features__label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e66c3;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.features__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features__title {
  font-size: 2.7rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.features__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 説明テキスト（右側） --- */
.features__heading {
  flex: 1;
  text-align: left;
}

.features__desc {
  font-size: 1.5rem;
  font-weight: 400;
  color: #303133;
  line-height: 1.8;
  padding-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.features__desc.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features__desc em {
  font-style: normal;
  font-weight: 700;
  color: #1e66c3;
}

/* --- タブパネル --- */
.features__panels {
  display: grid;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.8s, transform 1s ease 0.8s;
}

/* --- スワイプ矢印 --- */
.features__panels-arrow {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.features__panels-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.features__panels-arrow--prev {
  left: -18px;
}
.features__panels-arrow--next {
  right: -18px;
}
.features__panels-arrow-icon {
  width: 8px;
  height: 8px;
  border-top: 2px solid #1e66c3;
  border-right: 2px solid #4883cf;
}
.features__panels-arrow--next .features__panels-arrow-icon {
  transform: rotate(45deg);
  margin-left: -2px;
}
.features__panels-arrow--prev .features__panels-arrow-icon {
  transform: rotate(-135deg);
  margin-right: -2px;
}
.features__panels-arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 599px) {
  .features__panels-arrow {
    width: 30px;
    height: 30px;
  }
  .features__panels-arrow--prev {
    left: -6px;
  }
  .features__panels-arrow--next {
    right: -6px;
  }
}
.features__panels.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features__panel {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
}

.features__panel--active {
  visibility: visible;
  opacity: 1;
}

/* --- カードタブ（01/02/03 ナンバー） --- */
.features__card-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.features__card-tab {
  display: inline-block;
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 4px 16px;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.features__card-tab--active {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

/* --- カード（青背景パネル） --- */
.features__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1e66c3 0%, #3a7fd5 100%);
  border-radius: 16px;
  overflow: visible;
  max-width: 500px;
}

.features__card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 16px solid #1e66c3;
}

.features__card-left {
  flex: 1;
  padding: 24px 32px 25px;
}

.features__card-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.features__card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-top: 0;
}

.features__card-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  text-align: left;
}

.features__card-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px 25px;
}

.features__card-point {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  text-align: center;
}

.features__card-point-icon {
  display: block;
  margin: 16px auto 0;
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.features__card-point-label {
  display: inline-block;
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #034172 0%, #1e66c3 100%);
  padding: 4px 16px;
  border-radius: 3px;
}

.features__card-point-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #303133;
  line-height: 1.8;
}

/* ===================================
   CTAバナー
=================================== */
.cta-banner {
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  padding: 50px 20px;
}

.cta-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  animation: ctaPulse 2.5s ease-in-out 0.5s infinite;
}

.cta-banner__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  width: 420px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-banner__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: btnShine 5s ease-in-out 1s infinite;
  z-index: 2;
  pointer-events: none;
}

.cta-banner__btn--orange {
  background: linear-gradient(90deg, #ff5605 0%, #ffa929 100%);
  background-clip: padding-box;
  color: #fff;
  border: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-banner__btn--orange::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.cta-banner__btn--orange:hover {
  color: #ff5605;
  border-color: #ff5605;
}

.cta-banner__btn--orange:hover::before {
  transform: scaleX(1);
}

.cta-banner__btn--white {
  background: #fff;
  gap: 8px;
  border: 2px solid #1e66c3;
}

.cta-banner__btn--white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a3d7a 0%, #1a5298 100%);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.cta-banner__btn--white span:first-child {
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: -webkit-text-fill-color 0.3s ease;
}

.cta-banner__btn--white:hover {
  border-color: #0a3d7a;
}

.cta-banner__btn--white:hover::before {
  transform: scaleX(1);
}

.cta-banner__btn--white:hover span:first-child {
  -webkit-text-fill-color: #fff;
}

.cta-banner__btn-arrow {
  width: 7px;
  height: 7px;
  border-top: 2px solid #1e66c3;
  border-right: 2px solid #4883cf;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}

.cta-banner__btn--white:hover .cta-banner__btn-arrow {
  border-top-color: #fff;
  border-right-color: #fff;
}

/* ===================================
   制作フロー
=================================== */
.works {
  background-color: #fff;
  padding: 80px 20px;
  border-radius: 0 0 40px 40px;
  position: relative;
  z-index: 10;
}

.works::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 40px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.works__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.works__label {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #055594 0%, #2ba8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.works__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.works__title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #303133;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.1s, transform 1s ease 0.1s;
}
.works__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.works__title em {
  font-style: normal;
  font-size: 3.9rem;
  background: linear-gradient(90deg, #1e66c3 0%, #489ecf 50%, #1e66c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.works__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #303133;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.works__subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.works__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  position: relative;
}

.works__step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.works__steps.is-visible .works__step { opacity: 1; transform: translateY(0); }
.works__steps.is-visible .works__step:nth-child(1) { transition-delay: 0s; }
.works__steps.is-visible .works__step:nth-child(3) { transition-delay: 0.15s; }
.works__steps.is-visible .works__step:nth-child(5) { transition-delay: 0.3s; }
.works__steps.is-visible .works__step:nth-child(7) { transition-delay: 0.45s; }

.works__steps::before {
  content: "";
  position: absolute;
  top: 145px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 45px;
  background:  #edf2fa;
  z-index: 0;
}

.works__step {
  flex: 1;
  max-width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.works__step-label {
  display: block;
  font-size: 1.9rem;
  font-weight: 600;
  color: #1e66c3;
  margin-bottom: 8px;
}

.works__step-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.works__step-image {
  margin-bottom: 20px;
}

.works__step-image img {
  height: 100px;
  width: auto;
}

.works__step-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.6;
}

.works__arrow {
  display: flex;
  align-items: center;
  padding-top: 135px;
  position: relative;
  z-index: 1;
}

.works__arrow::before {
  content: "»";
  font-size: 4.8rem;
  color: #a9bbd3;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works__note {
  background-color: #f4f4f4;
  border-radius: 0px;
  padding: 15px 50px;
  display: inline-block;
}

.works__note p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303133;
}

/* ===================================
   他社比較
=================================== */
.comparison {
  position: relative;
  background: linear-gradient(180deg, #d1dff1 0%, #edf2fa 100%);
  padding: 80px 20px;
  padding-top: 160px;
  margin-top: -40px;
  overflow: hidden;
}

.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75vw;
  height: 62vw;
  background-image: url('../img/ai-bungo/blog_bg.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  opacity: 0.5;
  z-index: 0;
}

.comparison__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.comparison__label {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #055594 0%, #2ba8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.comparison__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.comparison__title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #303133;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.1s, transform 1s ease 0.1s;
}
.comparison__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.comparison__title em {
  font-style: normal;
  background: linear-gradient(transparent 60%, #ffde46 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.comparison__title.is-marker-visible em {
  background-size: 100% 100%;
}

.comparison__checklist {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  margin: 24px auto;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.comparison__checklist.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.comparison__checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #303133;
}

.comparison__checklist li::before {
  content: "✓";
  color: #1e66c3;
  font-weight: 700;
}

.comparison__note {
  font-size: 1.3rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 40px;
}

.comparison__chart {
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.comparison__chart.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.comparison__chart img {
  height: 650px;
  width: auto;
}

/* ===================================
   料金プラン
=================================== */
.price {
  background-color: #f3f9ff;
  padding: 80px 20px;
}

.price__header {
  text-align: center;
  margin-bottom: 40px;
}

.price__label {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #055594 0%, #2ba8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.price__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price__title {
  font-size: 2.7rem;
  font-weight: 600;
  color: #0a0a0a;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.price__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price__title em {
  font-style: normal;
  background: linear-gradient(transparent 60%, #ffde46 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.price__title.is-marker-visible em {
  background-size: 100% 100%;
}

.price__cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.price__cards.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price__card {
  flex: 1;
  max-width: 420px;
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.price__card-label {
  display: inline-block;
  background-color: #d1dff1;
  color: #0a0a0a;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 0px;
  margin-bottom: 20px;
}

.price__card-subtitle {
  font-size: 1.7rem;
  font-weight: 500;
  color: #0a0a0a;
  margin-top: 8px;
  margin-bottom: 25px;
}

.price__card-title {
  font-size: 3.9rem;
  font-weight: 400;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.price__card-text {
  position: relative;
  top: -5px;
}

.price__card-value {
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 6.9rem;
  font-weight: 400;
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price__card-value small {
  font-family: 'Noto Sans JP', 'Noto Sans JP Fallback', sans-serif;
  font-size: 2.7rem;
  font-weight: 500;
  -webkit-text-fill-color: inherit;
  position: relative;
  top: -3px;
}

.price__card-unit {
  font-size: 2.7rem;
  font-weight: 400;
  color: #0a0a0a;
  position: relative;
  top: -3px;
}

.price__card-yen {
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 値段キラーンエフェクト */
@keyframes priceShine {
  0% { background-position: 200% center; }
  100% { background-position: -50% center; }
}
.price__cards.is-visible .price__card-value,
.price__cards.is-visible .price__card-yen {
  background: linear-gradient(
    100deg,
    #1e66c3 0%, #4883cf 30%,
    #a8d4ff 44%, #ffffff 50%, #a8d4ff 56%,
    #4883cf 70%, #1e66c3 100%
  );
  background-size: 250% 100%;
  background-position: 200% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: priceShine 1.2s ease 0.6s forwards;
}

.price__card-desc {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.price__card-desc p {
  font-size: 1.3rem;
  color: #303133;
  line-height: 1.7;
}

.price__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  font-size: 1.7rem;
  font-weight: 600;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 9999px;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.price__card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.price__card-btn span {
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: -webkit-text-fill-color 0.3s ease;
}

.price__card-btn-arrow {
  width: 7px;
  height: 7px;
  border-top: 2px solid #1e66c3;
  border-right: 2px solid #4883cf;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: border-color 0.3s ease;
}

.price__card-btn:hover::before {
  transform: scaleX(1);
}

.price__card-btn:hover span {
  -webkit-text-fill-color: #fff;
}

.price__card-btn:hover .price__card-btn-arrow {
  border-top-color: #fff;
  border-right-color: #fff;
}

.price__card-features {
  list-style: none;
}

.price__card-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.4rem;
  color: #303133;
}

.price__card-features li span:last-child {
  min-width: 80px;
  text-align: center;
}

.price__card-features li:last-child {
  border-bottom: none;
}

.price__tag {
  background-color: #ecefef;
  padding: 0px 12px;
  border-radius: 4px;
}

.price__circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #1e66c3;
  border-radius: 50%;
}

/* ===================================
   導入事例
=================================== */
.case {
  background-color: #f3f9ff;
  padding: 80px 20px;
}

.case__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.case__label {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #055594 0%, #2ba8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  margin-bottom: 0px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.case__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case__title {
  font-size: 2.7rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.case__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case__title span {
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 5.9rem;
  font-weight: 600;
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 6px;
  position: relative;
  top: 4px;
}

.case__title small {
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 2.7rem;
  font-weight: 600;
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #303133;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.case__subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case__items {
  display: flex;
  justify-content: space-evenly;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}
.case__items.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case__item {
  text-align: center;
}

.case__dots {
  display: none;
}

.case__phone {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
}

.case__phone::after {
  content: '記事イメージを見る';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 65, 114, 0.6);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.case__phone:hover::after {
  opacity: 1;
}

.case__phone img {
  height: 400px;
  width: auto;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.case__phone:hover img {
  transform: scale(1.03);
}

.case__industry {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303133;
  margin-bottom: 8px;
}

.case__keyword {
  font-size: 1.3rem;
  font-weight: 400;
  color: #666;
}

/* ===================================
   CTA セクション2
=================================== */
.cta2 {
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  padding: 60px 60px;
  position: relative;
}

.cta2::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.cta2__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cta2__hand {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  max-height: 120%;
  display: flex;
  align-items: flex-end;
}

.cta2__hand img {
  max-height: 100%;
  width: auto;
  height: 280px;
  object-fit: contain;
  border-bottom-left-radius: 23px;
}

.cta2__card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta2__arrow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.cta2__arrow--left {
  left: -50px;
}

.cta2__arrow--right {
  right: -50px;
}

.cta2__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  border-right: 2px solid rgba(255, 255, 255, 0.4);
}

.cta2__arrow--left::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.cta2__arrow--right::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.cta2__card {
  background-color: #fff;
  border-radius: 23px;
  width: 100%;
  max-width: 1200px;
  padding: 30px 60px 30px 220px;
  text-align: center;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.cta2__card-body {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta2__card-body.is-slide-out {
  transform: translateX(-120%);
}

.cta2__card-body.is-slide-ready {
  transform: translateX(120%);
  transition: none;
}

.cta2__arrow {
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.cta2__arrow::before {
  transition: border-color 0.25s;
}
.cta2__arrow:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}
.cta2__arrow:hover::before {
  border-color: rgba(255, 255, 255, 0.8);
}

.cta2__card-label {
  font-size: 1.7rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 5px;
}

.cta2__card-title {
  font-size: 2.4rem;
  font-weight: 600;
  background: linear-gradient(90deg, #1e66c3 0%, #026eb3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.cta2__card-text {
  font-size: 1.7rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.cta2__card-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid #808080;
  border-radius: 50px;
  padding: 5px 15px;
}

.cta2__card-search-icon {
  font-size: 1.4rem;
}

.cta2__card-search-text {
  font-size: 1.3rem;
  color: #0a0a0a;
}

.cta2__bottom {
  margin-top: 30px;
  text-align: center;
}

.cta2__bottom-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  animation: ctaPulse 2.5s ease-in-out 0.5s infinite;
}

.cta2__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta2__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  width: 380px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta2__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: btnShine 5s ease-in-out 1s infinite;
  z-index: 2;
  pointer-events: none;
}

.cta2__btn--orange {
  background: linear-gradient(90deg, #ff5605 0%, #ffa929 100%);
  background-clip: padding-box;
  color: #fff;
  border: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.cta2__btn--orange::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.cta2__btn--orange:hover {
  color: #ff5605;
  border-color: #ff5605;
}

.cta2__btn--orange:hover::before {
  transform: scaleX(1);
}

.cta2__btn--white {
  background: #fff;
  gap: 8px;
  border: 2px solid #1e66c3;
}

.cta2__btn--white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a3d7a 0%, #1a5298 100%);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.cta2__btn--white:hover {
  border-color: #0a3d7a;
}

.cta2__btn--white:hover::before {
  transform: scaleX(1);
}

.cta2__btn--white span:first-child {
  background: linear-gradient(90deg, #1e66c3 0%, #4883cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: -webkit-text-fill-color 0.3s ease;
}

.cta2__btn--white:hover span:first-child {
  -webkit-text-fill-color: #fff;
}

.cta2__btn-arrow {
  width: 7px;
  height: 7px;
  border-top: 2px solid #1e66c3;
  border-right: 2px solid #4883cf;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}

.cta2__btn--white:hover .cta2__btn-arrow {
  border-top-color: #fff;
  border-right-color: #fff;
}

/* ===================================
   ご利用の流れ
=================================== */
.flow {
  padding: 120px 0;
  background-color: #f3f9ff;
}

.flow__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.flow__label {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #055594 0%, #2ba8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.flow__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.flow__title {
  font-size: 2.7rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.flow__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow__step {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 40px 40px;
  padding-right: 220px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.flow__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.flow__step-content {
  flex: 1;
}

.flow__step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.flow__step-number {
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #FF5605 0%, #ffa929 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow__step-number--blue {
  background: linear-gradient(135deg, #004f8d 0%, #1984b8 100%);
}

.flow__step-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
}

.flow__step-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  text-align: left;
}

.flow__step-image {
  width: 200px;
  position: absolute;
  right: 60px;
  bottom: 0px;
  z-index: 10;
}

.flow__step-image img {
  width: 100%;
  height: auto;
}

.flow__arrow {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.flow__arrow::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #002542;
}

/* ===================================
   よくあるご質問
=================================== */
.faq {
  padding: 100px 0;
  background-color: #fff;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq__label {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #055594 0%, #2ba8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.faq__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq__title {
  font-size: 2.7rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.faq__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq__list {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.faq__list.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.faq__question {
  display: flex;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__q {
  font-family: 'Arial Unicode MS', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #026eb3;
  margin-right: 16px;
  flex-shrink: 0;
}

.faq__question-text {
  font-size: 1.7rem;
  font-weight: 500;
  color: #1a1a1a;
  flex: 1;
}

.faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #d9d9d9;
  border-bottom: 2px solid #d9d9d9;
  transform: translate(-50%, -70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -30%) rotate(-135deg);
}

.faq__answer {
  padding: 0 0 24px 36px;
}

.faq__answer p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
}

/* ===================================
   キャンペーン
=================================== */
.campaign__header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: -20px;
}

.campaign__header-text {
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.campaign__header-text.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: campaignHeaderPulse 2.5s ease-in-out 1.4s infinite;
}
@keyframes campaignHeaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes btnShine {
  0% {
    left: -75%;
  }
  30% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

.campaign__benefits {
  background: linear-gradient(180deg, #0b54b2 0%, #4883cf 100%);
  padding: 30px 20px 0px;
  overflow: hidden;
}

.campaign__benefits-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.campaign__deadline {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fe7903;
  border: 2px solid #fe7903;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 50px;
}

.campaign__title-wrapper {
  text-align: center;
  margin-top: -100px;
  margin-bottom: 20px;
  position: relative;
  z-index: 11;
}

.campaign__title-ribbon {
  max-width: 100%;
  width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.campaign__benefits-title {
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

.campaign__benefits-title span {
  font-family: 'Roboto', 'Roboto Fallback', sans-serif;
  font-size: 4.5rem;
  color: #ffde46;
}

.campaign__white-frame {
  background-color: #fff;
  border-radius: 0;
  padding: 30px 40px;
}

.campaign__blue-frame {
  background-color: #026eb3;
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
}

.campaign__dot {
  position: absolute;
  width: 250px;
  height: auto;
  z-index: 10;
}

.campaign__dot--top-left {
  top: 10px;
  left: 10px;
}

.campaign__dot--bottom-right {
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}

.campaign__human {
  position: absolute;
  bottom: -30px;
  width: 150px;
  height: auto;
  z-index: 10;
}

.campaign__human--left {
  left: -80px;
}

.campaign__human--right {
  right: -80px;
}

.campaign__benefits-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.campaign__benefit-card {
  flex: 1;
  max-width: 350px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.campaign__benefit-label {
  display: inline-block;
  background: #046c9f;
  color: #ffef1f;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.campaign__benefit-desc {
  font-size: 1.6rem;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.6;
  margin-bottom: 10px;
}

.campaign__benefit-name {
  font-family: 'Noto Sans JP', 'Noto Sans JP Fallback', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #1e66c3 0%, #489ecf 50%, #1e66c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.campaign__benefit-image {
  margin-bottom: 12px;
}

.campaign__benefit-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.campaign__benefit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.9rem;
  font-weight: 600;
  color: #046c9f;
  position: relative;
  overflow: hidden;
}
.campaign__benefit-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: btnShine 5s ease-in-out 1s infinite;
  pointer-events: none;
}

.campaign__benefit-link span {
  font-size: 0.9rem;
}

.campaign__download {
  background-color: #fff;
  padding: 80px 20px;
}

.campaign__download-inner {
  max-width: 900px;
  margin: 0 auto;
}

.campaign__download-content {
  display: flex;
  gap: 40px;
  padding: 70px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.campaign__download-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.campaign__download-left {
  flex: 1;
}

.campaign__download-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.5;
}

.campaign__download-text {
  font-size: 1.8rem;
  color: #0a0a0a;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 10px;
  margin-bottom: 24px;
}

.campaign__download-points {
  background-color: #f5f7fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.campaign__download-points-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #236ac4;
  margin-bottom: 12px;
  text-align: center;
}

.campaign__download-points ul {
  list-style: none;
}

.campaign__download-points li {
  position: relative;
  padding-left: 20px;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
}

.campaign__download-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1e66c3;
  font-weight: 700;
}

.campaign__download-points li:last-child {
  margin-bottom: 0;
}

.campaign__download-image {
  width: 100%;
}

.campaign__download-image img {
  width: 100%;
  height: auto;
}

.campaign__download-right {
  flex: 1;
  max-width: 700px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  align-self: flex-start;
}

.campaign__form {
  background-color: #fff;
}

.campaign__form-note {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
}

.campaign__form-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.campaign__form-steps-label {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
}

.campaign__form-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #e0e0e0;
  color: #888;
}

.campaign__form-step--active {
  background-color: #236ac4;
  color: #fff;
}

.campaign__form-row {
  display: flex;
  gap: 12px;
}

.campaign__form-group--half {
  flex: 1;
}

.campaign__form-group {
  margin-bottom: 16px;
}

.campaign__form-step-content > .campaign__form-group:last-of-type {
  margin-bottom: 32px;
}

.campaign__form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-align: left;
}

.campaign__required {
  color: #ff5605;
  margin-left: 4px;
}

.campaign__form-group input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.4rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f0f3f8;
}

.campaign__form-group input::placeholder {
  color: #aaaaaa;
}

.campaign__form-group input:focus {
  outline: none;
  border-color: #1e66c3;
  background-color: #fff;
}

.campaign__form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.4rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f0f3f8;
  color: #1a1a1a;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.campaign__form-group select:focus {
  outline: none;
  border-color: #1e66c3;
  background-color: #fff;
}

.campaign__form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.4rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f0f3f8;
  font-family: inherit;
  resize: vertical;
}

.campaign__form-group textarea::placeholder {
  color: #aaaaaa;
}

.campaign__form-group textarea:focus {
  outline: none;
  border-color: #1e66c3;
  background-color: #fff;
}

.campaign__form-step-content {
  display: none;
}

.campaign__form-step-content--active {
  display: block;
}

.campaign__form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.campaign__form-check input {
  width: 18px;
  height: 18px;
}

.campaign__form-check label {
  font-size: 1.3rem;
  color: #555;
}

.campaign__form-privacy {
  margin-bottom: 24px;
  text-align: left;
}

.campaign__form-privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: #555;
  cursor: pointer;
}

.campaign__form-privacy-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.campaign__form-privacy-label a {
  color: #236ac4;
  text-decoration: underline;
}

.campaign__form-privacy-label a:hover {
  text-decoration: none;
}

.campaign__form-helper {
  font-size: 1.2rem;
  color: #888;
  margin-top: 6px;
}

.campaign__form-btn {
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ff5605 0%, #ffa929 100%);
  background-clip: padding-box;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.campaign__form-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.campaign__form-btn:hover {
  color: #ff5605;
  border-color: #ff5605;
}

.campaign__form-btn:hover::before {
  transform: scaleX(1);
}

.campaign__form-btns {
  display: flex;
  gap: 10px;
}

.campaign__form-btn--back {
  background: #ccc;
  flex: 0 0 auto;
  width: auto;
  padding: 10px 24px;
}

.campaign__form-btn--back::before {
  background: #999;
}

.campaign__form-btn--back:hover {
  color: #fff;
  border-color: transparent;
}

.campaign__form-btns .campaign__form-btn:not(.campaign__form-btn--back) {
  flex: 1;
}

/* ===================================
   フッター
=================================== */
.footer {
  background-color: #1a2a3a;
  padding: 60px 20px 30px;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__company {
  flex-shrink: 0;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img {
  height: 50px;
  width: auto;
}

.footer__company-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.footer__address {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.footer__nav {
  display: flex;
  gap: 80px;
}

.footer__nav-list {
  list-style: none;
}

.footer__nav-list li {
  margin-bottom: 14px;
}

.footer__nav-list li:last-child {
  margin-bottom: 0;
}

.footer__nav-list a {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__nav-list a:hover {
  color: #fff;
}

.footer__copyright {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 30px;
}

/* ===================================
   レスポンシブ（タブレット以下）
=================================== */
@media (max-width: 1024px) {
  .header__nav-list {
    gap: 18px;
  }

  .header__nav-item a {
    font-size: 1.3rem;
  }

  .header__cta-btn {
    font-size: 1.3rem;
    padding: 10px 18px;
  }
}

@media (max-width: 768px) {
  .sp-only {
    display: initial;
  }

  .pc-only {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__inner {
    height: 60px;
  }

  .header__logo img {
    height: 35px;
  }

  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }

  .header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
  }

  .header__hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .header__mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
  }

  .header__mobile-nav.is-open {
    transform: translateX(0);
  }

  .header__mobile-nav-logo {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .header__mobile-nav-logo img {
    height: 30px;
    width: auto;
  }

  .header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header__mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .header__mobile-nav-list {
    list-style: none;
    padding: 20px;
  }

  .header__mobile-nav-list li {
    border-bottom: 1px solid #eee;
  }

  .header__mobile-nav-list li:last-child {
    border-bottom: none;
  }

  .header__mobile-nav-list a {
    display: block;
    padding: 15px 10px;
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
  }

  .header__mobile-cta {
    display: block;
    background: linear-gradient(90deg, #ff5605 0%, #ffa929 100%);
    color: #fff !important;
    text-align: center;
    border-radius: 50px;
    margin-top: 10px;
    padding: 15px 20px !important;
    font-weight: 600;
  }

  /* FV レスポンシブ */
  .fv {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 60px;
    min-height: auto;
  }

  .fv__bg-pattern {
    width: 200px;
    height: 150px;
    top: 60px;
  }

  .fv__image {
    order: 1;
    margin-top: -40px;
  }

  .fv__inner {
    flex-direction: column;
    padding: 0px 20px 120px;
    order: 2;
  }

  .fv__content {
    max-width: 100%;
    text-align: center;
    order: 1;
    margin-top: -40px;
  }

  .fv__balloon img {
    width: 220px;
  }

  .fv__title-sub {
    font-size: 1.6rem;
  }

  .fv__title-main {
    font-size: 2.8rem;
  }

  .fv__title-accent {
    font-size: 2.8rem;
  }

  .fv__description {
    font-size: 1.4rem;
  }

  .fv__badges {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .fv__badge {
    padding: 12px 8px;
  }

  .fv__badge-label {
    font-size: 1.2rem;
  }

  .fv__badge-number {
    font-size: 2.4rem;
  }

  .fv__badge-number small {
    font-size: 1.2rem;
  }

  .fv__cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fv__cta-btn {
    font-size: 1.6rem;
    padding: 16px 36px;
    width: 100%;
    max-width: 300px;
  }

  .fv__image {
    position: relative;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .fv__image img {
    width: 100%;
    height: auto;
  }

  .fv__image-front {
    position: relative !important;
  }

  .fv__note {
    font-size: 0.8rem;
  }

  .fv__scroll {
    bottom: 55px;
  }

  /* よくあるお悩み レスポンシブ */
  .problem {
    padding: 60px 20px;
  }

  .problem__title {
    font-size: 2.4rem;
    margin-bottom: 98px;
    position: relative;
    z-index: 2;
  }

  .problem__person {
    width: 100px;
    bottom: 0;
  }

  .problem__person--left {
    left: 10px;
  }

  .problem__person--right {
    right: 10px;
    z-index: 1;
  }

  .problem__card {
    padding: 30px 20px;
  }

  .problem__card-inner {
    flex-direction: column;
    gap: 30px;
  }

  .problem__column {
    padding: 0;
  }

  .problem__card-inner::after {
    top: calc(50% - 15px);
    left: 0;
    transform: none;
    width: 100%;
    height: 2px;
  }

  .problem__column-title {
    font-size: 1.6rem;
  }

  .problem__list li {
    font-size: 1.4rem;
  }

  /* 解決セクション レスポンシブ */
  .solution {
    padding: 40px 20px 60px;
  }

  .solution__title {
    font-size: 2.4rem;
  }

  .solution__title em::after {
    height: 8px;
  }

  .solution__subtitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .solution__heading {
    font-size: 1.6rem;
  }

  .solution__cost-text {
    font-size: 1.8rem;
  }

  .solution__note {
    font-size: 1.4rem;
  }

  .solution__note em::before {
    content: "＼";
    color: #303133;
  }

  .solution__note em::after {
    content: "／";
    color: #303133;
  }

  .solution__cta-text {
    font-size: 1.6rem;
  }

  /* 選ばれる理由 レスポンシブ */
  .features {
    padding: 60px 20px;
  }

  .features__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .features__header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }

  .features__card::before {
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: none;
    border-bottom: 16px solid #1e66c3;
  }

  .features__heading {
    order: -1;
  }

  .features__nav {
    flex: none;
    display: flex;
    justify-content: center;
  }

  .features__nav-circle {
    width: 300px;
    height: 270px;
  }

  .features__nav-item {
    width: 115px;
    height: 115px;
  }

  .features__nav-icon {
    width: 56px;
    height: 56px;
  }

  .features__nav-item[data-tab="1"] .features__nav-icon {
    top: -5px;
    right: -20px;
  }

  .features__nav-item[data-tab="2"] .features__nav-icon {
    top: -8px;
    left: -16px;
  }

  .features__nav-item[data-tab="3"] .features__nav-icon {
    top: -8px;
    right: -20px;
  }

  .features__nav-number {
    font-size: 1.3rem;
  }

  .features__nav-label {
    font-size: 1.1rem;
  }

  .features__nav-circle::before {
    width: 190px;
    height: 190px;
    top: 40px;
  }

  .features__heading {
    text-align: center;
  }

  .features__title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .features__desc {
    font-size: 1.4rem;
    padding-bottom: 50px;
  }

  .features__card {
    flex-direction: column;
  }

  .features__card-tab {
    font-size: 1.2rem;
    padding: 3px 12px;
  }

  .features__card-left {
    padding: 20px 24px 24px;
  }

  .features__card-right {
    flex: none;
    padding: 0 24px 24px;
  }

  .features__card-point-icon {
    width: 72px;
    height: 72px;
    margin-top: 12px;
  }

  .features__card-title {
    font-size: 1.6rem;
  }

  /* CTAバナー レスポンシブ */
  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner__text {
    font-size: 1.4rem;
  }

  .cta-banner__btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__btn {
    font-size: 1.6rem;
    padding: 16px 20px;
    width: 100%;
    max-width: 320px;
  }

  /* 制作フロー レスポンシブ */
  .works {
    padding: 60px 20px;
  }

  .works__title {
    font-size: 2.4rem;
  }

  .works__subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  .works__subtitle br {
    display: none;
  }

  .works__steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .works__steps::before {
    display: none;
  }

  .works::after {
    display: none;
  }

  .works__step {
    width: 100%;
    max-width: 100%;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .works__step::after {
    content: "";
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-top: 14px solid #a9bbd3;
    z-index: 2;
  }

  .works__step:last-child::after {
    display: none;
  }

  .works__arrow {
    display: none;
  }

  .works__step-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .works__step-image img {
    height: 80px;
  }

  .works__note {
    padding: 16px 20px;
  }

  .works__note p {
    font-size: 1.3rem;
  }

  /* 他社比較 レスポンシブ */
  .comparison {
    padding: 120px 20px 60px;
  }

  .comparison__title {
    font-size: 2.2rem;
  }

  .comparison__chart img {
    width: 100%;
    height: auto;
  }

  /* 料金プラン レスポンシブ */
  .price {
    padding: 60px 20px;
  }

  .price__title {
    font-size: 2.2rem;
  }

  .price__cards {
    flex-direction: column;
    align-items: center;
  }

  .price__card {
    max-width: 100%;
    width: 100%;
  }

  .price__card-unit {
    font-size: 2.4rem;
  }

  .price__initial {
    padding: 24px 30px;
  }

  .price__initial-value {
    font-size: 4.5rem;
  }

  .price__initial-value span {
    font-size: 2.4rem;
  }

  .price__plans {
    flex-direction: column;
    align-items: center;
  }

  .price__plan {
    max-width: 100%;
    width: 100%;
  }

  .price__plan-name {
    font-size: 1.8rem;
  }

  .price__plan-price span {
    font-size: 3rem;
  }

  /* 導入事例 レスポンシブ */
  .case {
    padding: 60px 0;
  }

  .case__title {
    font-size: 2.2rem;
  }

  .case__title span {
    font-size: 4rem;
  }

  .case__title small {
    font-size: 2.4rem;
  }

  .case__items {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 20px;
  }

  .case__items::-webkit-scrollbar {
    display: none;
  }

  .case__item {
    flex: 0 0 80%;
    min-width: 80%;
    scroll-snap-align: center;
    padding: 0 10px;
  }

  .case__phone img {
    height: 320px;
  }

  .case__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .case__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s;
  }

  .case__dot.is-active {
    background: #034172;
  }

  /* CTA2 レスポンシブ */
  .cta2 {
    padding: 40px 20px;
  }

  .cta2__hand {
    display: none;
  }

  .cta2__arrow {
    display: none;
  }

  .cta2__card {
    padding: 30px 20px;
  }

  .cta2__card-title {
    font-size: 2.1rem;
  }

  .cta2__card-text {
    font-size: 1.4rem;
  }

  .cta2__card-search {
    padding: 8px 16px;
  }

  .cta2__card-search-text {
    font-size: 1.1rem;
  }

  .cta2__btns {
    flex-direction: column;
    align-items: center;
  }

  .cta2__btn {
    font-size: 1.6rem;
    padding: 16px 20px;
    width: 100%;
    max-width: 320px;
  }

  /* ご利用の流れ レスポンシブ */
  .flow {
    padding: 60px 0;
  }

  .flow__title {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .flow__step {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .flow__step-content {
    order: 1;
  }

  .flow__step-image {
    display: none;
  }

  .flow__step-number {
    font-size: 1.9rem;
  }

  .flow__step-title {
    font-size: 1.6rem;
  }

  .flow__step-text {
    font-size: 1.4rem;
  }

  .flow__step-text br {
    display: none;
  }

  /* FAQ レスポンシブ */
  .faq {
    padding: 60px 0;
  }

  .faq__title {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .faq__question {
    padding: 20px 0;
  }

  .faq__question-text {
    font-size: 1.5rem;
  }

  .faq__answer {
    padding: 0 0 20px 32px;
  }

  .faq__answer p {
    font-size: 1.4rem;
  }

  /* キャンペーン レスポンシブ */
  .campaign__header-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .campaign__deadline {
    font-size: 1.4rem;
  }

  .campaign__benefits {
    padding: 20px 20px 0px;
  }

  .campaign__title-ribbon {
    width: auto;
    max-width: 130%;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .campaign__benefits-title {
    font-size: 2rem;
  }

  .campaign__benefits-title span {
    font-size: 3rem;
  }

  .campaign__white-frame {
    padding: 20px;
  }

  .campaign__blue-frame {
    padding: 50px 20px 20px;
  }

  .campaign__human {
    display: none;
  }

  .campaign__dot {
    display: none;
  }

  .campaign__benefits-cards {
    flex-direction: column;
    align-items: center;
  }

  .campaign__benefit-card {
    max-width: 100%;
    width: 100%;
  }

  .campaign__download {
    padding: 60px 20px;
  }

  .campaign__download-content {
    flex-direction: column;
    padding: 30px 0 0 0;
  }

  .campaign__download-title {
    font-size: 2rem;
  }

  .campaign__download-text br {
    display: none;
  }

  .campaign__download-right {
    max-width: 100%;
  }

  .campaign__download-image {
    width: 100%;
    margin: 0 auto;
  }

  /* フッター レスポンシブ */
  .footer {
    padding: 40px 20px 20px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .footer__logo img {
    height: 40px;
  }

  .footer__nav {
    flex-direction: column;
    gap: 30px;
  }

  .footer__nav-list li {
    margin-bottom: 12px;
  }

  .footer__nav-list a {
    font-size: 1.2rem;
  }

  .footer__copyright {
    font-size: 1.1rem;
    margin-top: 20px;
  }
}


/* ===================================
   事例プレビューモーダル
=================================== */
.case__item[data-url] {
  cursor: pointer;
}

.case-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.case-modal.is-open {
  display: block;
}

.case-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  animation: caseModalFadeIn 0.3s ease;
}

.case-modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  height: 85vh;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: caseModalSlideIn 0.3s ease;
}

.case-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.case-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.case-modal__loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: #999;
}

.case-modal__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@keyframes caseModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes caseModalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .case-modal__container {
    width: 95%;
    height: 80vh;
    border-radius: 8px;
  }

  .case-modal__close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 2rem;
  }
}

/* ===================================
   フォームページ（資料請求・無料相談）
=================================== */
.header--simple {
  justify-content: flex-start;
}

.header--simple .header__inner {
  justify-content: flex-start;
}

.header--simple .header__nav,
.header--simple .header__hamburger {
  display: none;
}

.header--simple .header__cta {
  margin-left: auto;
  display: block;
}

.form-page {
  padding-top: 50px;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: flex-start;
  background-color: #f3f9ff;
}

.form-page__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

.form-page__label {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #055594 0%, #2ba8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.form-page__title {
  font-size: 2.7rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.form-page .campaign__download-content {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 20px 0;
  opacity: 1;
  transform: none;
}

.form-page .campaign__download-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 600;
}

.form-page__desc {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.form-page .campaign__download-text {
  text-align: center;
}

.form-page .campaign__download-points {
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.footer--simple {
  padding: 20px;
  text-align: center;
}

.footer--simple .footer__inner {
  flex-direction: column;
  align-items: center;
  border-bottom: none;
  padding-bottom: 0;
}
.footer--simple .footer__copyright {
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===================================
   サンクスページ
=================================== */
.thanks-page {
  padding: 120px 0 80px;
  background-color: #f3f9ff;
}

.thanks-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.thanks-page__box {
  text-align: center;
  margin-bottom: 48px;
}

.thanks-page__lead {
  font-size: 1.4rem;
  color: #666;
  margin: 0 0 8px;
}

.thanks-page__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 20px 0 20px;
}

.thanks-page__text {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* 無料相談会案内 + TimeRex */
.thanks-page__booking {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 37, 66, 0.08);
  overflow: hidden;
  margin-bottom: 40px;
}

.thanks-page__booking-header {
  background: linear-gradient(135deg, #055594 0%, #2ba8e6 100%);
  padding: 20px 32px;
  text-align: center;
}

.thanks-page__booking-title {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.thanks-page__booking-body {
  padding: 32px;
}

.thanks-page__booking-text {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.9;
  margin: 0 0 28px;
}

.thanks-page__booking-widget {
  text-align: center;
}

.thanks-page__booking-btn {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, #055594 0%, #2ba8e6 100%);
  background-clip: padding-box;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.thanks-page__booking-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.thanks-page__booking-btn:hover {
  color: #055594;
  border-color: #055594;
}

.thanks-page__booking-btn:hover::before {
  transform: scaleX(1);
}

.thanks-page__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
}

.thanks-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.thanks-page__btn--primary {
  background: linear-gradient(135deg, #055594 0%, #2ba8e6 100%);
  background-clip: padding-box;
  color: #fff;
  border: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.thanks-page__btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.thanks-page__btn--primary:hover {
  color: #055594;
  border-color: #055594;
}

.thanks-page__btn--primary:hover::before {
  transform: scaleX(1);
}

.thanks-page__btn--outline {
  border: 2px solid #055594;
  color: #055594;
  background: #fff;
}

.thanks-page__btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #055594;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.thanks-page__btn--outline:hover {
  color: #fff;
}

.thanks-page__btn--outline:hover::before {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .thanks-page {
    padding: 80px 0 60px;
  }

  .thanks-page__inner {
    padding: 0 16px;
  }

  .thanks-page__title {
    font-size: 2rem;
  }

  .thanks-page__lead {
    font-size: 1.3rem;
  }

  .thanks-page__text {
    font-size: 1.4rem;
  }

  .thanks-page__booking-header {
    padding: 16px 20px;
  }

  .thanks-page__booking-title {
    font-size: 1.6rem;
  }

  .thanks-page__booking-body {
    padding: 20px 16px;
  }

  .thanks-page__booking-text {
    font-size: 1.3rem;
  }

  .thanks-page__booking-btn {
    font-size: 1.5rem;
    padding: 16px 32px;
    width: 100%;
  }

  .thanks-page__buttons {
    flex-direction: column;
    align-items: center;
  }

  .thanks-page__btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form-page {
    padding-top: 60px;
    align-items: flex-start;
  }

  .form-page__inner {
    padding: 20px 15px;
  }

  .form-page .campaign__download-content {
    flex-direction: column;
    padding: 30px 0;
  }

  .form-page .campaign__download-right {
    order: -1;
  }

  .form-page__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .form-page .campaign__download-title {
    font-size: 2rem;
  }

  .form-page .campaign__download-text br {
    display: none;
  }
}
