@charset "utf-8";
/* 
AB Circle Japan 介護情報基盤LP
ペライチ用CSS 全部置き換え版
kaigo_img2.png 対応版
*/

.abc-lp {
  --green: #21876f;
  --green-dark: #156b58;
  --green-soft: #e8f4ef;
  --beige: #f7f1e8;
  --beige-2: #fbf8f2;
  --brown: #3e3328;
  --text: #333333;
  --muted: #6f6a63;
  --line: #e6dfd4;
  --white: #ffffff;
  --shadow: 0 14px 32px rgba(69, 55, 37, 0.08);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  background: var(--beige-2);
  overflow: hidden;
}

.abc-lp *,
.abc-lp *::before,
.abc-lp *::after {
  box-sizing: border-box;
}

.abc-lp a {
  color: inherit;
  text-decoration: none;
}

.lp-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.lp-header__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr 170px;
  align-items: center;
  gap: 24px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-logo__mark {
  width: 28px;
  height: 28px;
  border: 6px solid #d8d8d8;
  border-right-color: #55a99b;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}

.lp-logo__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  white-space: nowrap;
}

.lp-header__message {
  font-size: 13px;
  line-height: 1.6;
  color: var(--brown);
}

.lp-header__message span {
  color: var(--muted);
}

.lp-header__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff !important;
  font-weight: 700;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(33, 135, 111, 0.24);
}

.lp-header__cta:link,
.lp-header__cta:visited,
.lp-header__cta:hover,
.lp-header__cta:active {
  color: #ffffff !important;
}

/* ファーストビュー */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 74px;
  background: #fbf6ed;
}

.lp-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 38%;
  background-image: url("https://dxmarketing.co.jp/common/upload/files/abcircle/kaigo_img2.png?filetime=1779921058");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  z-index: 0;
}

/* 左側の文字部分だけをなじませる。顔にはグラデーションがかからない位置で止めています */
.lp-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fbf6ed 0%,
    rgba(251, 246, 237, 0.98) 8%,
    rgba(251, 246, 237, 0.78) 16%,
    rgba(251, 246, 237, 0.36) 25%,
    rgba(251, 246, 237, 0.08) 34%,
    rgba(251, 246, 237, 0) 42%
  );
  z-index: 1;
}

.lp-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(251, 246, 237, 0.08) 0%,
    rgba(251, 246, 237, 0) 40%,
    rgba(251, 246, 237, 0.08) 100%
  );
  z-index: 2;
}

.lp-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 36px;
  align-items: center;
  min-height: 520px;
}

.lp-hero__content {
  max-width: 560px;
}

.lp-hero__space {
  min-height: 430px;
}

.lp-eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lp-hero h1 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.48;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.lp-hero h1 span {
  color: var(--green-dark);
  display: block;
}

.lp-pc-only {
  display: block;
}

.lp-hero__lead {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.lp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.lp-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cce2da;
  border-radius: 999px;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn--primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 22px rgba(33, 135, 111, 0.26);
}

.lp-btn--primary:link,
.lp-btn--primary:visited,
.lp-btn--primary:hover,
.lp-btn--primary:active {
  color: #ffffff !important;
}

.lp-btn--outline {
  color: var(--green-dark) !important;
  background: #fff;
  border: 1px solid var(--green);
}

.lp-btn--outline:link,
.lp-btn--outline:visited,
.lp-btn--outline:hover,
.lp-btn--outline:active {
  color: var(--green-dark) !important;
}

.lp-btn--wide {
  width: 100%;
}

.lp-section {
  padding: 78px 0;
  background: #fff;
}

.lp-section--soft {
  background: var(--beige-2);
}

.lp-sectionTitle {
  text-align: center;
  margin-bottom: 36px;
}

.lp-sectionTitle p {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lp-sectionTitle h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
}

.lp-cardGrid {
  display: grid;
  gap: 22px;
}

.lp-cardGrid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.lp-cardGrid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.lp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.lp-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 700;
  background: var(--green-soft);
  border-radius: 16px;
}

.lp-icon--green {
  color: #fff;
  background: var(--green);
}

.lp-card h3 {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: 18px;
  line-height: 1.55;
}

.lp-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lp-compare {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.lp-compare > div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 15px;
}

.lp-compare > div:nth-child(3n) {
  border-right: none;
}

.lp-compare > div:nth-last-child(-n+3) {
  border-bottom: none;
}

.lp-compare__head {
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.lp-compare__head--gray {
  background: #b8b0a4;
}

.lp-compare__head--label {
  background: #d7cabb;
  color: var(--brown);
}

.lp-compare__head--green {
  background: var(--green);
}

.lp-compare__label {
  text-align: center;
  color: var(--brown);
  font-weight: 700;
  background: #faf6ef;
}

.lp-compare__strong {
  color: var(--green-dark);
  font-weight: 700;
  background: #f1faf6;
}

.lp-package {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  background: linear-gradient(135deg, #fbf6ed, #ffffff);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lp-product__image {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.lp-product__image img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-package__label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  background: var(--green-soft);
  border-radius: 999px;
}

.lp-package h3 {
  margin: 0 0 22px;
  color: var(--brown);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
}

.lp-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}

.lp-price span {
  padding: 4px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: var(--green);
  border-radius: 999px;
}

.lp-price strong {
  color: var(--green-dark);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}

.lp-price em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 700;
}

.lp-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lp-subsidy {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: stretch;
}

.lp-subsidy__message {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.lp-subsidy__message h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.55;
}

.lp-subsidy__message p {
  margin: 0;
  color: var(--muted);
}

.lp-subsidy table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lp-subsidy th,
.lp-subsidy td {
  padding: 16px 18px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 15px;
}

.lp-subsidy th {
  color: #fff;
  background: var(--green);
  font-weight: 700;
}

.lp-subsidy td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--brown);
}

.lp-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lp-flow__item {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.lp-flow__item span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: var(--green);
  border-radius: 999px;
}

.lp-flow__item h3 {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: 19px;
}

.lp-flow__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lp-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lp-faq__item {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lp-faq__item h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 17px;
}

.lp-faq__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lp-contact {
  background: linear-gradient(135deg, #f7f1e8, #eaf4ef);
}

.lp-contact__box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 42px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.lp-contact__left h2 {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.5;
}

.lp-contact__left > p {
  color: var(--muted);
}

.lp-tel {
  margin: 24px 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.lp-tel span,
.lp-tel em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.lp-tel strong {
  display: block;
  margin: 4px 0;
  color: var(--green-dark);
  font-size: 34px;
  line-height: 1.2;
}

.lp-formMock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lp-formMock__row {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.lp-formMock__row--wide {
  grid-column: 1 / -1;
  min-height: 92px;
}

.lp-formMock label {
  display: block;
  margin-bottom: 4px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
}

.lp-formMock__row div {
  color: #aaa199;
  font-size: 14px;
}

.lp-formMock .lp-btn {
  grid-column: 1 / -1;
}

.lp-footer {
  padding: 34px 0;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.lp-footer__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.lp-footer p {
  margin: 4px 0;
  font-size: 13px;
}

.lp-logo--footer {
  margin-bottom: 8px;
}

@media (max-width: 1080px) {
  .lp-hero__inner {
    grid-template-columns: 520px 1fr;
  }

  .lp-hero__content {
    max-width: 520px;
  }

  .lp-hero h1 {
    font-size: clamp(28px, 3vw, 37px);
  }

  .lp-hero__bg {
    left: 42%;
  }
}

@media (max-width: 960px) {
  .lp-header__inner {
    grid-template-columns: 1fr auto;
  }

  .lp-header__message {
    display: none;
  }

  .lp-hero {
    padding: 56px 0 60px;
  }

  .lp-hero__bg {
    left: 0;
    opacity: 0.18;
    background-position: center center;
  }

  .lp-hero__bg::before {
    background: rgba(251, 246, 237, 0.78);
  }

  .lp-hero__inner {
    display: block;
    min-height: auto;
  }

  .lp-hero__content {
    max-width: 100%;
  }

  .lp-hero__space {
    display: none;
  }

  .lp-pc-only {
    display: none;
  }

  .lp-package,
  .lp-subsidy,
  .lp-contact__box,
  .lp-footer__inner {
    grid-template-columns: 1fr;
  }

  .lp-cardGrid--4,
  .lp-cardGrid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-compare {
    grid-template-columns: 1fr;
  }

  .lp-compare > div {
    border-right: none;
  }

  .lp-compare__head--label,
  .lp-compare__label {
    display: none;
  }
}

@media (max-width: 640px) {
  .lp-container {
    width: min(100% - 24px, 1120px);
  }

  .lp-header__inner {
    width: min(100% - 20px, 1180px);
    min-height: 64px;
    gap: 10px;
  }

  .lp-logo__text {
    font-size: 17px;
  }

  .lp-header__cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .lp-hero {
    padding: 46px 0 50px;
  }

  .lp-hero h1 {
    font-size: 27px;
  }

  .lp-hero__lead {
    font-size: 15px;
  }

  .lp-section {
    padding: 56px 0;
  }

  .lp-cardGrid--4,
  .lp-cardGrid--3,
  .lp-flow,
  .lp-faq,
  .lp-formMock {
    grid-template-columns: 1fr;
  }

  .lp-card,
  .lp-package,
  .lp-contact__box {
    padding: 22px;
  }

  .lp-subsidy {
    gap: 18px;
  }

  .lp-subsidy table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .lp-tel strong {
    font-size: 28px;
  }

  .lp-btn {
    width: 100%;
  }
}
