/* ------------------------------ */
/* 省力化補助金とは？セクション */
/* ------------------------------ */
.about-subsidy {
  padding: 80px 0;
  background-color: #fff;
}

.about-subsidy__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-subsidy__content {
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-subsidy__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-subsidy__title {
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.about-subsidy__category {
  font-size: 20px;
  color: #2196f3;
  margin: 0;
  font-weight: 600;
}

.about-subsidy__paragraph {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: #333;
  margin: 20px 0 0 0;
}

.about-subsidy__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-subsidy__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ------------------------------ */
/* セクション共通 */
/* ------------------------------ */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

/* ------------------------------ */
/* お悩みセクション */
/* ------------------------------ */
.problem {
  position: relative;
}

.problem__top {
  position: relative;
  background-color: #e8e8e8;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
  padding: 80px 0 150px;
}

.problem__top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(232, 232, 232, 0.8), rgba(232, 232, 232, 0.8)),
    url(../img/problem_bg.svg) no-repeat center;
  background-size: cover;
  z-index: 1;
}

.problem__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.problem__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  color: #333;
  margin: 0 0 60px 0;
}

.problem__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto 60px;
}

.problem__card {
  background-color: #cccccc;
  padding: 5px 5px 20px 5px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.problem__card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.problem__card-image img {
  width: 100%;
  object-fit: cover;
}

.problem__card-text {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #333;
  margin-top: 20px;
}

.problem__text-bold {
  font-size: 24px;
  font-weight: 700;
}

.problem__description {
  text-align: center;
  font-size: clamp(16px, 1.5vw, 20px);
  color: #333;
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
}

.problem__bottom {
  position: relative;
  overflow: visible;
  z-index: 3;
  width: 100%;
}

.problem__bottom svg {
  width: 100%;
  min-width: 800px;
  height: auto;
  display: block;
  margin-top: -150px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.problem__bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.problem__bottom-text {
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.8;
  color: #fff;
  margin: 0;
  font-weight: 400;
  white-space: nowrap;
}

.problem__bottom-text strong {
  font-weight: 700;
  background: #fff;
  color: #000;
  padding: 0 5px;
}

/* ------------------------------ */
/* メリットセクション */
/* ------------------------------ */
.merit {
  background-color: #fff;
  padding: 80px 0;
}

.merit__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.merit__header {
  text-align: center;
  margin-bottom: 80px;
}

.merit__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

.merit__category {
  font-size: 20px;
  color: #124cb2;
  margin: 0;
  font-weight: 500;
}

.merit__items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.merit__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  border: 2px solid #b4d55d;
  width: 90%;
}

.merit__item--reverse {
  direction: rtl;
}

.merit__item--reverse > * {
  direction: ltr;
}

.merit__item--mlauto {
  margin-left: auto;
}

.merit__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
}

.merit__badge {
  width: 100px;
  height: 100px;
  background-color: #b4d55d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.merit__item-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.merit__badge-label {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
}

.merit__badge-number {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.merit__item-title {
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 700;
  color: #6ea308;
  margin: 0;
  line-height: 1.4;
  margin-top: 20px;
}

.merit__item-description {
  font-size: clamp(16px, 1.5vw,20px);
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.merit__item-description strong {
  font-weight: 700;
  background: #6ea308;
  color: #fff;
  padding: 0 5px;
}

.merit__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.merit__image img {
  max-width: 100%;
  object-fit: contain;
}

.merit__cta {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.merit__cta-btn {
  background: linear-gradient(90deg, #81c784 0%, #fff9c4 100%);
  border: none;
  border-radius: 12px;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.merit__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.merit__cta-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.merit__cta-text {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.merit__cta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ------------------------------ */
/* 理由セクション */
/* ------------------------------ */
.reason {
  background-color: #b4d55d;
  padding: 80px 0;
}

.reason__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.reason__header {
  text-align: center;
  margin-bottom: 80px;
}

.reason__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px 0;
}

.reason__category {
  font-size: 20px;
  color: #124cb2;
  margin: 0;
  font-weight: 500;
}

.reason__items {
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.reason__item {
  background-color: #fff;
  padding: 20px clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  width: 100%;
  max-width: 1140px;
  box-sizing: border-box;
}

.reason__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.reason__badge {
  width: 60px;
  height: 60px;
  background-color: #b4d55d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 20px;
}

.reason__badge-number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.reason__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reason__item-title {
  font-size: clamp(18px, 1.8vw, 32px);
  font-weight: 700;
  color: #b4d55d;
  margin: 0;
  line-height: 1.4;
}

.reason__item-description {
  font-size: clamp(12px, 1.3vw, 16px);
  line-height: 1.8;
  color: #4d4d4d;
  margin: 0;
}

.reason__footnote {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.reason__image {
  width: clamp(250px, 40vw, 420px);
  max-width: calc(100% - clamp(24px, 5vw, 48px));
  aspect-ratio: 6 / 4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 1;
}

.reason__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason__cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 40px;
  flex-wrap: wrap;
}

.reason__cta-btn {
  background: linear-gradient(90deg, #81c784 0%, #fff9c4 100%);
  border: none;
  border-radius: 12px;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reason__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.reason__cta-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.reason__cta-text {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.reason__cta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ------------------------------ */
/* 活用事例セクション */
/* ------------------------------ */
.cases {
  background-color: #edf0f9;
  padding: 80px 0;
}

.cases__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.cases__header {
  text-align: center;
  margin-bottom: 60px;
}

.cases__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px 0;
}

.cases__category {
  font-size: 20px;
  color: #124cb2;
  margin: 0;
  font-weight: 500;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* タブレット: 2列表示 */
@media (max-width: 1200px) {
  .cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.cases__card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  min-width: 0;
}

.cases__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cases__image {
  width: 100%;
  height: 240px;
  background-color: #fff;
  overflow: hidden;
}

.cases__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases__info {
  padding: 24px;
}

.cases__tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cases__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.cases__tag--industry {
  background-color: #124cb2;
}

.cases__tag--green {
  background-color: #22b573;
}

.cases__tag--orange {
  background-color: #fbb03b;
}

.cases__company-type {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.cases__meta {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.cases__meta-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  color: #000000;
  background-color: #edf0f9;
}

.cases__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.cases__card-description {
  font-size: clamp(13px, 1.2vw, 14px);
  line-height: 1.7;
  color: #333;
  margin: 0 0 20px 0;
}

.cases__btn {
  display: block;
  padding: 10px 32px;
  background-color: #124cb2;
  color: #fff;
  border: none;
  border-radius: 50vh;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: auto;
  margin-right: auto;
}

.cases__btn:hover {
  background-color: #1976d2;
}

/* ------------------------------ */
/* 支援までの流れセクション */
/* ------------------------------ */
.flow {
  background-color: #fff;
  padding: 80px 0;
}

.flow__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.flow__header {
  text-align: center;
  margin-bottom: 80px;
}

.flow__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

.flow__category {
  font-size: 20px;
  color: #124cb2;
  margin: 0;
  font-weight: 500;
}

.flow__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.flow__step {
  width: 100%;
  max-width: 800px;
  position: relative;
}

.flow__step-content {
  background-color: #edf0f9;
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.flow__badge {
  width: 80px;
  height: 80px;
  background-color: #b4d55d;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 2px;
  position: relative;
}

.flow__badge-label {
  font-size: 10px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
}

.flow__badge-number {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.flow__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow__text {
  flex: 1;
}

.flow__step-title {
  font-size: clamp(20px, 1.5vw, 32px);
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.flow__step-description {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.flow__connector {
  width: 4px;
  height: 40px;
  background-color: #b4d55d;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ------------------------------ */
/* 料金プランセクション */
/* ------------------------------ */
.pricing {
  background-color: #e8eef4;
  padding: 80px 0;
}

.pricing__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.pricing__header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing__title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

.pricing__category {
  font-size: 20px;
  color: #2196f3;
  margin: 0 0 32px 0;
  font-weight: 500;
}

.pricing__main-heading {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0 0 24px 0;
  line-height: 1.4;
}

.pricing__intro {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__content-box {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.pricing__content-header {
  background-color: #1976d2;
  padding: 24px 40px;
  border-radius: 16px 16px 0 0;
}

.pricing__content-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.pricing__content-subtitle {
  padding: 24px 40px 32px;
  font-size: 16px;
  color: #666;
  margin: 0;
}

.pricing__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 40px 48px;
}

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

.pricing__step-badge {
  width: 48px;
  height: 48px;
  background-color: #2196f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pricing__step-badge span {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.pricing__step-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.pricing__step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing__step-description {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ------------------------------ */
/* こんな企業に選ばれていますセクション */
/* ------------------------------ */
.target-companies {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.target-companies__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.target-companies__header {
  text-align: center;
  margin-bottom: 60px;
}

.target-companies__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

.target-companies__category {
  font-size: 20px;
  color: #124cb2;
  margin: 0;
  font-weight: 500;
}

.target-companies__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.target-companies__illustration {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-companies__illustration img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.target-companies__bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.target-companies__bubble {
  position: absolute;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 200px;
}

.target-companies__bubble::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.target-companies__bubble p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.target-companies__bubble--top-left {
  top: 10%;
  left: 0;
}

.target-companies__bubble--top-left::before {
  bottom: -10px;
  left: 30px;
  border-width: 10px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
}

.target-companies__bubble--top-right {
  top: 5%;
  right: 0;
}

.target-companies__bubble--top-right::before {
  bottom: -10px;
  right: 30px;
  border-width: 10px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
}

.target-companies__bubble--middle-right {
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
}

.target-companies__bubble--middle-right::before {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px 10px 10px 0;
  border-color: transparent #fff transparent transparent;
}

.target-companies__bubble--bottom-right {
  bottom: 20%;
  right: 0;
}

.target-companies__bubble--bottom-right::before {
  top: -10px;
  right: 30px;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
}

.target-companies__bubble--bottom-center {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.target-companies__bubble--bottom-center::before {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
}

.target-companies__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.target-companies__description {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.target-companies__cta-btn {
  background: linear-gradient(90deg, #81c784 0%, #fff9c4 100%);
  border: none;
  border-radius: 12px;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.target-companies__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.target-companies__cta-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.target-companies__cta-text {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.target-companies__cta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ------------------------------ */
/* こんな企業に選ばれていますの下のボタン */
/* ------------------------------ */
.button-wrapper {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #edf0f9;
}

/* ------------------------------ */
/* よくある質問セクション */
/* ------------------------------ */
.faq {
  background-color: #b4d55d;
  padding: 80px 0;
}

.faq__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.faq__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

.faq__category {
  font-size: 20px;
  color: #124cb2;
  margin: 0;
  font-weight: 400;
}

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

.faq__item {
  background-color: transparent;
  border: none;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background-color: #fff;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

.faq__q-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #8cb50d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq__question-text {
  flex: 1;
  font-weight: 500;
  color: #333;
}

.faq__toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  color: #8cb50d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.3s;
  border: 1px solid #8cb50d;
}

.faq__toggle-icon {
  font-size: 0;
}

.faq__item[open] .faq__toggle-icon::after {
  content: "−";
  font-size: 24px;
}

.faq__item:not([open]) .faq__toggle-icon::after {
  content: "+";
  font-size: 24px;
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background-color: #edf0f9;
  margin-top: 0;
}

.faq__a-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #8cb50d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid #8cb50d;
}

.faq__answer-text {
  flex: 1;
  font-size: clamp(16px, 1.5vw, 18px);
  color: #333;
  line-height: 1.6;
  padding-top: 2px;
}

/* ------------------------------ */
/* 最終CTAセクション */
/* ------------------------------ */
.final-cta {
  background-color: #edf0f9;
  padding: 80px 0;
}

.final-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.final-cta__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.final-cta__line1,
.final-cta__line2 {
  font-size: clamp(20px, 2.5vw, 40px);
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.final-cta__buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-cta__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 48px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}

.final-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.final-cta__btn--consult {
  background: linear-gradient(90deg, #81c784 0%, #fff9c4 100%);
  color: #333;
}

.final-cta__btn--cases {
  background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%);
  color: #fff;
}

.final-cta__btn-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.final-cta__btn-label {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.final-cta__btn-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.final-cta__btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ------------------------------ */
/* 省力化補助金比較セクション */
/* ------------------------------ */
.comparison {
  background-color: #edf0f9;
  padding: 80px 0;
}

.comparison__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.comparison__header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison__title {
  font-size: clamp(20px, 3.5vw, 48px);
  font-weight: 700;
  color: #333;
  margin: 0 0 24px 0;
  line-height: 1.4;
}

.comparison__title-highlight {
  display: inline-block;
  padding: 4px 8px;
  color: #fff;
  font-weight: 700;
}

.comparison__title-highlight--green {
  background-color: #6ea308;
}

.comparison__title-highlight--blue {
  background-color: #124cb2;
}

.comparison__intro {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.comparison__table-wrapper {
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comparison__table-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.comparison__cta {
  display: flex;
  justify-content: center;
}

.comparison__cta-btn {
  background: linear-gradient(90deg, #2196f3 0%, #1976d2 100%);
  border: none;
  border-radius: 12px;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.comparison__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.comparison__cta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ------------------------------ */
/* スライダーセクション */
/* ------------------------------ */
.slider {
  background-color: #fff;
}

.slider__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.slider__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.slider__item {
  text-align: center;
}

.slider__item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ------------------------------ */
/* アバウトセクション */
/* ------------------------------ */
.about {
  background-color: #f8f8f8;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about__content {
  text-align: center;
}

.about__content img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------ */
/* フッター */
/* ------------------------------ */
.footer {
  padding: 40px 0 0px;
  width: 100%;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer__logo {
  flex-shrink: 0;
}

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

.footer__nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-list li a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__nav-list li a:hover {
  opacity: 0.8;
}

.footer__copylight-wrapper {
  padding: 10px 0;
  background: #8bc34a;
}

.footer__copyright {
  font-size: 14px;
  color: #fff;
  margin: 0;
  text-align: center;
}

/* ------------------------------ */
/* レスポンシブ対応 */
/* ------------------------------ */
@media (max-width: 1200px) {
  .about-subsidy__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

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

  .about-subsidy__image img {
    max-width: 70%;
  }

  .merit__item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .merit__item--reverse {
    direction: ltr;
  }

  .merit__image {
    width: 80%;
    aspect-ratio: 6 / 4;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .merit__image img {
    object-fit: cover;
  }

  .comparison__table-wrapper {
    padding: 32px 24px;
  }

  .reason__item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reason__content {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 40px;
  }

  section {
    padding: 60px 0;
  }

  .reason__cta {
    padding: 40px 20px;
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .about-subsidy {
    padding: 60px 0;
  }

  .about-subsidy__inner {
    padding: 0 20px;
  }

  .about-subsidy__content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .about-subsidy__text {
    gap: 16px;
  }

  .about-subsidy__category {
    font-size: 16px;
  }

  .problem__title {
    margin-bottom: 40px;
  }

  .problem__list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .problem__card {
    padding: 24px 20px;
  }

  .problem__card-image {
    min-height: 150px;
    margin-bottom: 16px;
  }

  .problem__bottom {
    padding: 60px 0;
  }

  .problem__bottom svg {
    margin-top: -200px;
  }

  .problem__bottom-content {
    padding: 0 20px;
    top: 10%;
    max-width: 100%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
  }

  .problem__bottom-text {
    line-height: 1.6;
    white-space: nowrap;
    max-width: 100%;
  }

  .merit {
    padding: 60px 0;
  }

  .merit__inner {
    padding: 0 20px;
  }

  .merit__header {
    margin-bottom: 60px;
  }

  .merit__category {
    font-size: 16px;
  }

  .merit__items {
    gap: 60px;
  }

  .merit__item {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .merit__item-title-wrapper {
    display: block;
  }

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

  .merit__item--reverse {
    direction: ltr;
  }

  .merit__item--mlauto {
    margin-left: 0;
  }

  .merit__content {
    gap: 24px;
    padding: 20px;
  }

  .merit__badge {
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
  }

  .merit__badge-number {
    font-size: 40px;
  }

  .merit__cta {
    margin-top: 60px;
  }

  .merit__cta-btn {
    width: 100%;
    padding: 20px 32px;
    justify-content: center;
  }

  .comparison {
    padding: 60px 0;
  }

  .comparison__inner {
    padding: 0 20px;
  }

  .comparison__header {
    margin-bottom: 40px;
  }

  .comparison__title {
    line-height: 1.3;
  }

  .comparison__title-highlight {
    padding: 2px 12px;
  }

  .comparison__table-wrapper {
    padding: 0;
  }

  .comparison__cta {
    margin-top: 40px;
  }

  .comparison__cta-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
  }

  .reason {
    padding: 60px 0;
  }

  .reason__inner {
    padding: 0 20px;
  }

  .reason__header {
    margin-bottom: 60px;
  }

  .reason__category {
    font-size: 16px;
  }

  .reason__items {
    gap: 48px;
  }

  .reason__item {
    padding: 0 20px 20px;
    flex-direction: column;
    gap: 24px;
  }

  .reason__content {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    order: 1;
    align-items: center;
  }

  .reason__image {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    order: 2;
  }

  .reason__badge {
    width: 60px;
    height: 60px;
  }

  .reason__badge-number {
    font-size: 36px;
  }

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

  .reason__footnote {
    font-size: 13px;
  }

  .reason__cta {
    margin-top: 60px;
  }

  .reason__cta-btn {
    width: 100%;
    padding: 20px 32px;
    justify-content: center;
  }

  .cases {
    padding: 60px 0;
  }

  .cases__inner {
    padding: 0 20px;
  }

  .cases__header {
    margin-bottom: 40px;
  }

  .cases__category {
    font-size: 16px;
  }

  .cases__grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 10px;
  }

  .cases__grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .cases__card {
    flex: 0 0 420px;
    min-width: 420px;
    max-width: 420px;
    scroll-snap-align: start;
  }

  .target-companies {
    padding: 60px 0;
  }

  .target-companies__inner {
    padding: 0 20px;
  }

  .target-companies__header {
    margin-bottom: 40px;
  }

  .target-companies__category {
    font-size: 16px;
  }

  .target-companies__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .target-companies__illustration {
    min-height: 300px;
  }

  .target-companies__bubbles {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .target-companies__bubble {
    position: relative;
    max-width: 100%;
    margin: 0;
  }

  .target-companies__bubble--top-left,
  .target-companies__bubble--top-right,
  .target-companies__bubble--middle-right,
  .target-companies__bubble--bottom-right,
  .target-companies__bubble--bottom-center {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .target-companies__bubble::before {
    display: none;
  }

  .target-companies__description {
    line-height: 1.7;
    text-align: left;
  }

  .target-companies__cta-btn {
    width: 100%;
    justify-content: center;
  }

  .problem__list,
  .merit__list,
  .reason__list {
    grid-template-columns: 1fr;
  }

  .flow {
    padding: 60px 0;
  }

  .flow__inner {
    padding: 0 20px;
  }

  .flow__header {
    margin-bottom: 60px;
  }

  .flow__category {
    font-size: 16px;
  }

  .flow__step-content {
    padding: 24px 20px;
    gap: 20px;
    flex-direction: column;
  }

  .flow__badge {
    width: 60px;
    height: 60px;
  }

  .flow__badge-number {
    font-size: 24px;
  }

  .flow__badge-label {
    font-size: 9px;
  }

  .flow__connector {
    height: 32px;
  }

  .pricing {
    padding: 60px 0;
  }

  .pricing__inner {
    padding: 0 20px;
  }

  .pricing__header {
    margin-bottom: 40px;
  }

  .pricing__category {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .pricing__main-heading {
    margin-bottom: 20px;
  }

  .pricing__intro {
    line-height: 1.7;
  }

  .pricing__content-header {
    padding: 20px 24px;
  }

  .pricing__content-subtitle {
    padding: 20px 24px 24px;
  }

  .pricing__steps {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px 40px;
  }

  .pricing__step-badge {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .pricing__step-badge span {
    font-size: 20px;
  }

  .pricing__step-title {
    margin-bottom: 12px;
  }

  .pricing__step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .slider__container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .faq {
    padding: 60px 0;
  }

  .faq__inner {
    padding: 0 20px;
  }

  .faq__header {
    margin-bottom: 40px;
  }

  .faq__category {
    font-size: 16px;
  }

  .faq__question {
    padding: 16px 20px;
    gap: 12px;
  }

  .faq__q-icon,
  .faq__a-icon,
  .faq__toggle-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .faq__item[open] .faq__toggle-icon::after,
  .faq__item:not([open]) .faq__toggle-icon::after {
    font-size: 20px;
  }

  .faq__answer {
    padding: 16px 20px;
    gap: 12px;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta__inner {
    padding: 0 20px;
    gap: 40px;
  }

  .final-cta__buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

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

  .footer__inner {
    padding: 0 20px;
  }

  .footer__content {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .footer__nav-list {
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
  }

  .footer__copyright {
    font-size: 12px;
  }
}

/* モバイル: .cases__card を画面幅内に収める（中身の配置は変更しない） */
@media screen and (max-width: 768px) {
  .cases__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .cases__card {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cases__image img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* ------------------------------ */
/* 投資完了までを見据えた「一律サポート」セクション */
/* ------------------------------ */
.support-info {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.support-info__container {
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(20px, 4vw, 40px);
  margin-top: clamp(40px, 10vw, 100px);
  box-sizing: border-box;
}

.support-info__header {
  margin-bottom: 40px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
}

.support-info__title {
  background-color: #b4d55d;
  padding: clamp(8px, 1vw, 12px) clamp(16px, 3vw, 24px);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  width: 100%;
  box-sizing: border-box;
}

.support-info__text {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  color: #333;
  text-align: left;
  margin-top: clamp(8px, 1.2vw, 10px);
}

.support-info__text:last-child {
  margin-bottom: 0;
}

/* ------------------------------ */
/* フォームセクション */
/* ------------------------------ */
.form {
  background-color: #fff;
  padding: 80px 0;
}

.form__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.form__header {
  text-align: center;
  margin-bottom: 60px;
}

.form__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin: 0 0 8px 0;
}

.form__category {
  font-size: 20px;
  color: #124cb2;
  margin: 0;
  font-weight: 400;
}

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

.form__field {
  margin-bottom: 32px;
}

.form__label {
  display: block;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.6;
}

.form__required {
  color: #d32f2f;
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
}

.form__optional {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
}

.form__input {
  width: 100%;
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form__input:focus {
  outline: none;
  border-color: #124cb2;
}

.form__input:invalid {
  border-color: #d32f2f;
}

.form__error {
  display: none;
  color: #d32f2f;
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.4;
}

.form__field--checkbox {
  margin-bottom: 40px;
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: clamp(16px, 1.5vw, 18px);
  color: #333;
  line-height: 1.6;
}

.form__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  appearance: checkbox;
  accent-color: #333;
  border: 1px solid #ccc;

}

.form__checkbox-text {
  flex: 1;
}

.form__privacy-link {
  color: #124cb2;
  text-decoration: underline;
  transition: color 0.3s;
}

.form__privacy-link:hover {
  color: #0a2cb7;
}

.form__submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.form__submit {
  width: 320px;
  min-width: 320px;
  max-width: 320px;
}

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

  .form__inner {
    padding: 0 20px;
  }

  .form__header {
    margin-bottom: 40px;
  }

  .form__category {
    font-size: 16px;
  }

  .form__field {
    margin-bottom: 24px;
  }

  .form__field--checkbox {
    margin-bottom: 32px;
  }

  .form__submit-wrapper {
    margin-top: 40px;
  }

}

/* ------------------------------ */
/* 送信完了セクション */
/* ------------------------------ */
.complete {
  background-color: #fff;
  padding: 80px 0;
}

.complete__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.complete__header {
  text-align: center;
  margin-bottom: 60px;
}

.complete__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.complete__category {
  font-size: 20px;
  color: #124cb2;
  margin: 0;
  font-weight: 400;
}

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

.complete__message {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #333;
  line-height: 1.8;
  margin: 0 0 24px 0;
}

.complete__note {
  font-size: clamp(14px, 1.3vw, 16px);
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.complete__button-wrapper {
  display: flex;
  justify-content: center;
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  height: 80px;
  margin: 0 auto;
}

.complete__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

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

  .complete__inner {
    padding: 0 20px;
  }

  .complete__header {
    margin-bottom: 40px;
  }

  .complete__category {
    font-size: 16px;
  }

  .complete__content {
    margin-bottom: 40px;
  }

  .complete__button {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
}
