/* ========= 基本設定 ========= */
:root {
  --brand-main: #8ec31f;
  --brand-deep: #22957e;
  --brand-light: #ebf7d3;

  --gray-line: #c7c7c7;
  --gray-light: #f2f2f2;
  --gray-text: #adadad;

  --text: #333;

  --biz-red: #e7736d;
  --biz-yellow: #f4d250;
  --biz-lightblue: #64d6ed;
  --biz-orange: #f69d61;
  --biz-green: #b3cd3c;
  --biz-purple: #9f82b8;
  --biz-pink: #fc9898;
  --biz-blue: #8bb6ff;

  --search-bg: #e9f3c6;
  --line: #d9d9d9;

  --flow-duration: 40s; /* 既定の速度（JSで上書きされます） */
}

.font-sans {
  font-family: "Noto Sans JP", system-ui, sans-serif;
}
.font-raleway {
  font-family: "Raleway", ui-sans-serif, system-ui, sans-serif;
}
.font-poppins {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  letter-spacing: 0.04em;
  background-color: #f4fbe4;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

main {
  position: relative;
  overflow: hidden;
  margin-top: -108.8px;
  padding-top: 108.8px;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
}

p {
  font-size: clamp(
    14px,
    calc(12.545454545454545px + 0.36363636363636365vw),
    18px
  );
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
}

/* ---------- Header ---------- */
.hdr {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 40;
  background: none;
}
.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px 0;
  max-width: 1480px;
  margin-inline: auto;
}

.hdr__logo {
  width: 13vw;
}

.hdr__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 14px 40px;
  gap: 20px;
  border-radius: 100px;
  background: #fff;
}

.hdr__list a {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.hdr__list a:hover {
  opacity: 0.7;
}

.hdr__toggle {
  display: none;
  background: none;
  border: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* メニューより前面に表示 */

  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* ハンバーガーメニューのレスポンシブ対応 */
.hdr__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-main);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  border-radius: 9999px;
}

.hdr__toggle-line:nth-child(1) {
  top: 13px;
}

.hdr__toggle-line:nth-child(2) {
  top: 20px;
}

.hdr__toggle-line:nth-child(3) {
  top: 27px;
}

/* アクティブ時のアニメーション（×マークに変化） */
.hdr__toggle.is-active .hdr__toggle-line:nth-child(1) {
  top: 15px;
  transform: translateX(-50%) rotate(45deg);
}

.hdr__toggle.is-active .hdr__toggle-line:nth-child(2) {
  opacity: 0;
}

.hdr__toggle.is-active .hdr__toggle-line:nth-child(3) {
  top: 15px;
  transform: translateX(-50%) rotate(-45deg);
}

.btn {
  display: inline-block;
  color: #fff;
  padding: 6px 14px;
  border: 0;
  cursor: pointer;

  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(12.545454545454545px + 0.36363636363636365vw),
    18px
  );
  line-height: 220%;
  letter-spacing: 0.04em;

  opacity: 1;
  border-radius: 4px;
  background: linear-gradient(90deg, #ffb351 0%, #ff8839 100%);
  transition: all 0.3s ease;
}
.btn {
  background: linear-gradient(90deg, #ffb351, #ff8839, #ffb351);
  background-size: 200% auto;
  transition: 0.4s ease;
}

.btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 136, 57, 0.25);
}

.btn2 {
  width: 500px;
  padding: 12px 40px;
  gap: 0.8em;
  border-radius: 6px;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(12.363636363636363px + 0.9090909090909091vw),
    26px
  );
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.btn2::before {
  content: "";
  width: 490px;
  height: calc(100% - 10px);
  opacity: 1;
  border-radius: 3px;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 5px;
}

.btn--block {
  display: block;
  width: 100%;
}

/* ---------- Key Visual fixed text ---------- */
.kv {
  overflow: hidden;
  background: #f4fbe4;
  margin-top: -109px;
}

.kv__catch {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kv__caption {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(13.416020671834625px + 0.6890611541774333vw),
    24px
  );
  line-height: 160%;
  letter-spacing: 4%;
}

.kv__line {
  display: inline-block;
  background: #fff;
  box-shadow: 6px 6px 0px 0 var(--brand-deep);
  padding: 10px 30px;
  border-radius: 6px;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    17px,
    calc(12.272727272727273px + 1.1818181818181819vw),
    30px
  );
  line-height: 160%;
  letter-spacing: 0.04em;
  width: fit-content;
}

.kv__line span {
  color: var(--brand-deep);
}

/* ---------- Concerns (bubbles + characters) ---------- */
.concerns {
  background: #f2f9e9;
  padding: 100px 0 10px;
  position: relative;
}

.concerns__lead {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(11.636363636363637px + 1.090909090909091vw),
    28px
  );
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 auto
    clamp(40px, calc(33.54005167958656px + 1.7226528854435832vw), 60px);
  width: fit-content;
  position: relative; /* 疑似要素の基準 */
  line-height: 180%;
  color: var(--brand-deep);
}

/* ---------- Features ---------- */

.features {
  background: #f4fbe4;
}
.features__wrap {
  width: 92%;
  max-width: 1200px;
  margin-inline: auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px 0 100px;
  z-index: 3;
  position: relative;
  margin-top: 80px;
}

.tri-down {
  --base: 90px; /* 底辺の長さ */
  --height: 38px; /* 高さ */
  width: 0;
  height: 0;
  border-left: calc(var(--base) / 2) solid transparent;
  border-right: calc(var(--base) / 2) solid transparent;
  border-top: var(--height) solid #d3eb9d;
  margin: 31px auto;
}

.features__lead {
  width: 54%;
  min-width: 480px;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  margin: 0 auto 80px;
}

.features__lead p {
  text-align: center;
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.8;
  font-size: 14px;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    14px,
    calc(10.363636363636363px + 0.9090909090909091vw),
    24px
  );
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
  text-align: left;
}
.features__lead p span {
  display: inline-block;
  color: var(--brand-deep);
  font-size: clamp(
    16px,
    calc(10.181818181818182px + 1.4545454545454546vw),
    32px
  );

  /* 下半分に黄色ハイライト */
  background-image: linear-gradient(
    transparent 68%,
    rgba(255, 255, 0, 0.54) 68%
  );
  background-repeat: no-repeat;
  background-size: 100% 84%;
  padding-bottom: 2px;
}

/* リスト */
.f-list {
  list-style: none;
  margin: 0 0 80px;
  padding: 6px 3% 0;
  display: grid;
  gap: 80px;
}
.f-item {
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: #ffffff;
}

.f-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.f-item__body {
  flex: 1;
}

.f-item__body__inner {
  width: 85%;
  margin: 0 auto;
}

.f-item__num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(40px, calc(35.63636363636363px + 1.090909090909091vw), 52px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: left;

  /* 中抜き処理 */
  color: white;
  -webkit-text-stroke: 2px white; /* 枠線を確保する */
  background: linear-gradient(270deg, #8ec31f 0%, #31a166 100%);
  -webkit-background-clip: text;
  background-clip: text;

  /* ストローク色を背景グラデで塗る */
  -webkit-text-stroke: 2px transparent;
  -webkit-text-fill-color: white;
  background-clip: text;
  -webkit-background-clip: text;
  border: none;
}
.f-item__ttl {
  color: var(--brand-deep);
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(14.363636363636363px + 0.9090909090909091vw),
    28px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.f-item__txt {
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
}

.f-item__txt span {
  color: var(--brand-deep);
  font-size: clamp(
    14px,
    calc(11.818181818181818px + 0.5454545454545455vw),
    20px
  );
}

.f-item__btn {
  margin-top: 30px;
}
.f-item__ph {
  margin: 0;
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
}
.f-item__ph img {
  display: block;
  width: 85.3%;
  margin-inline: auto;
  height: auto;
  border-radius: 16px;
}

/* ===== 取り組みセクション ===== */
.effort {
  background: #f4fbe4;
  padding: 140px 0 0;
}
.effort__inner {
  text-align: center;
}

.h2_title {
  text-align: center;
  font-size: clamp(
    18px,
    calc(14.363636363636363px + 0.9090909090909091vw),
    28px
  );
  line-height: 1.6;
  position: relative;
  width: fit-content;

  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.04em;

  margin: 0 auto 80px;
}

.h2_title::before,
.h2_title::after {
  content: "";
  position: absolute;
  bottom: 0%;
  width: 1.15em;
  height: 1.35em;
}
.h2_title::before {
  left: -2em;
  background: url("https://grouphome.freecare1.com/images/Rectangle2-2.svg")
    no-repeat center/contain;
}
.h2_title::after {
  right: -2em;
  background: url("https://grouphome.freecare1.com/images/Rectangle2-1.svg")
    no-repeat center/contain;
}

/* カード3列 */
.effort__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39px;
}
.effort__item {
  background: #fff;
  padding: 40px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  opacity: 1;
  border-radius: 14px;
}
.effort__icon {
  width: 54%;
  border-radius: 50%;
  margin-bottom: 16px;
}
.effort__item-title {
  color: var(--brand-deep);
  margin-bottom: 12px;

  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(16.545454545454547px + 0.36363636363636365vw),
    22px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  text-align: center;
}
.effort__text {
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
  text-align: left;
}

/* ---------- Flow ---------- */
.flow {
  background: #f4fbe4;
  padding: 140px 0;
}
.flow__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  width: 80%;
  max-width: 800px;
  gap: 20px;
  padding-bottom: 80px;
  margin-top: 80px;
}
.flow__step {
  display: flex;
  gap: 40px;
  align-items: center;
}

.flow__body {
  width: 75%;
}

.flow__body h3 {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 22px;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: var(--brand-deep);
  align-items: center;
  display: flex;
}

.flow__body h3 .num {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;

  font-weight: 700;
  font-style: Italic;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 0.04em;
  text-align: center;
  background: linear-gradient(270deg, #8ec31f 0%, #22957e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 0.25em;
}

.flow__body p {
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
}

.flow__body .btn {
  margin-top: 20px;
  padding: 12px 40px;
  gap: 32px;
  display: flex;
  align-items: center;
  width: fit-content;
}

.flow__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 160px;
  margin: 30px auto 25px;
}

.flow__arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 15.2px solid #d3eb9d;
}

.important-note {
  display: grid;
  grid-template-columns: 90px 1fr;
  background: white;
  gap: 30px;
  padding-top: 20px;
  padding-right: 40px;
  padding-bottom: 20px;
  padding-left: 40px;
  border-radius: 14px;
  width: fit-content;
  margin: 0 auto 80px;

  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 24px;
  line-height: 180%;
  letter-spacing: 0.04em;
  align-items: center;
}

.important-note span {
  background: linear-gradient(
    transparent 50%,
    rgba(255, 255, 0, 0.6) 52%,
    rgba(255, 255, 0, 0.6) 80%,
    transparent 82%
  );
}

/* ---------- Movie ---------- */
.movie {
  background: #f4fbe4;
}

.movie__wrap {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  width: 80%;
  aspect-ratio: 560/315;
  margin: 40px auto 0;
}
.movie__wrap iframe {
  width: 100%;
  height: 100%;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 140px 0 100px;
  background: #f4fbe4;
}
.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 84%;
  max-width: 800px;
  margin-inline: auto;
}
.faq__item {
  overflow: hidden;
  font-family: Noto Sans JP;
  font-size: clamp(
    15px,
    calc(13.909090909090908px + 0.27272727272727276vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  border-bottom: var(--gray-line) 1px solid;
  padding: 40px 0;
}
.faq__q {
  width: 100%;
  text-align: left;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.6em;
  align-items: center;
}
.faq__a {
  display: none;
  padding-top: 24px;
}

.toggleIcon {
  cursor: pointer;
}

/* 縦線にやわらかいトランジションを設定 */
.vertical {
  transform-origin: center;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

/* active時に縦線を回転＋透明化 */
.toggleIcon.active .vertical {
  transform: rotate(180deg);
  opacity: 0;
}

/* ---------- CTA ---------- */
.cta {
  background: #f4fbe4;
  padding: 0 0 140px;
}
.cta__box {
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

/* ---------- Footer ---------- */
footer {
  background: var(--brand-deep);
  color: white;
  padding: 40px 0;
  display: flex;
  justify-content: space-around;
}

.ftr__inner a,
footer svg:hover {
  transition: all 0.3s ease;
}

.ftr__inner a:hover,
footer svg:hover {
  opacity: 0.7;
}

.ftr__inner img {
  margin-bottom: 40px;
}

.ftr__inner div {
  display: flex;
  gap: 4em;
}

.ftr__copy {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 11px;
  line-height: 180%;
  letter-spacing: 0.05em;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.modal__content {
  position: relative;
  z-index: 1;
  max-width: min(920px, 92vw);
  margin: 8vh auto;
  background: #fff;
  border-radius: 16px;
  padding: 70px 60px 80px;
}
.modal__close {
  position: absolute;
  right: 60px;
  top: 40px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--brand-deep);
  color: white;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
}
.modal__table tr {
  display: flex;
  flex-direction: column;
  padding-bottom: 18px;
}

.modal__table th {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 20px;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
}

.modal__table td {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 18px;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;

  /* ---------- Utilities ---------- */
  .cta-center {
    display: flex;
    justify-content: center;
    margin: 18px 0 6px;
  }
}

/* レイアウト ----------------------------------------------------- */

.section {
  padding: 70px 0;
}

.section-label {
  position: relative;
  z-index: 1;
  color: var(--brand-main);
  text-align: center;
  margin-bottom: 10px;

  font-family: "Raleway", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(15.818181818181818px + 0.5454545454545455vw),
    24px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  text-align: center;
}

.section-label::before {
  content: "";
  position: absolute;
  z-index: -1; /* 丸を背面に */
  width: clamp(
    38px,
    calc(33.63636363636363px + 1.090909090909091vw),
    50px
  ); /* 丸のサイズ（調整可） */
  height: clamp(38px, calc(33.63636363636363px + 1.090909090909091vw), 50px);
  border-radius: 50%;
  background: #ffffff; /* 白丸 */
  opacity: 1; /* 必要なら0.7〜0.9なども可 */

  top: 50%; /* 文字と丸の位置調整 */
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-title {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(14.363636363636363px + 0.9090909090909091vw),
    28px
  );
  line-height: 160%;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ボタン --------------------------------------------------------- */

/* HERO ----------------------------------------------------------- */

.hero {
  padding: clamp(84px, calc(23.922480620155042px + 16.020671834625322vw), 270px)
    0 clamp(40px, calc(14.160206718346252px + 6.890611541774333vw), 120px);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 3;
  width: 80%;
  margin-inline: auto;
}

.hero-visual {
  width: 45.5%;
}

.hero-visual img {
  width: 100%;
  display: block;
  height: auto;
}

.hero-copy {
  flex: 1;
}

.bg_circle {
  position: absolute;
  z-index: 2;
  aspect-ratio: 1/1;
}

.bg_circle1 {
  border-radius: 50%;
  top: 10vh;
  width: clamp(112px, calc(33px + 22vw), 380px);
  left: -9%;
}

.bg_circle2 {
  width: clamp(117px, calc(29.2px + 23.3vw), 400px);
  border-radius: 50%;
  top: 17vh;
  right: -5%;
}

.bg_circle3 {
  width: clamp(160px, calc(46px + 37vw), 640px);
  border-radius: 50%;
  top: 16vh;
  left: -15%;
  z-index: 1;

  background-image: linear-gradient(
    -90deg,
    rgb(242, 248, 215, 0.8) 0%,
    rgb(221, 235, 159, 0.8) 100%
  );
}

.bg_circle4 {
  width: clamp(193px, calc(48px + 38.288vw), 650px);
  border-radius: 50%;
  top: -17vh;
  right: -3%;
  z-index: 1;

  background-image: linear-gradient(
    -90deg,
    rgb(242, 248, 215, 0.8) 0%,
    rgb(221, 235, 159, 0.8) 100%
  );
}

.bg_circle6 {
  width: clamp(82px, calc(20px + 16.215vw), 280px);
  border-radius: 50%;
  top: -4vh;
  right: 12%;
  z-index: 1;
  border: 3px solid #c9ea85;
}

/* 課題カード ----------------------------------------------------- */

.section-problem {
  padding-top: 10px;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.section-problem::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30%;
  bottom: -30%;
  background: #f4fbe4;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 74px),
    50% 100%,
    0 calc(100% - 74px)
  );
}

.problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(20px, calc(13.540051679586563px + 1.7226528854435832vw), 40px);
  z-index: 4;
  position: relative;
}

.problem-title {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #fffd92;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(14.545454545454545px + 0.36363636363636365vw),
    20px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  gap: 10px;
}

.problem-body {
  margin: 0;

  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(12.545454545454545px + 0.36363636363636365vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  padding-left: 2em;
}

/* 解決ブロック --------------------------------------------------- */

.solution-heading {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 38px;
  text-align: center;
  margin-top: -40px;
  margin-bottom: 141px;
  background: #dff1b5;
  position: relative;
  padding-top: 104px;
}

.solution-heading::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 32%;
  bottom: -31.5%;
  background: #dff1b5;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 74px),
    50% 100%,
    0 calc(100% - 74px)
  );
}

.solution-person1 {
  height: 190px;
  transform: scaleX(-1);
  object-fit: contain;
}

.solution-lead {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(15.818181818181818px + 0.5454545454545455vw),
    24px
  );
  line-height: 220%;
  letter-spacing: 0.04em;
  text-align: left;
}

.solution-lead span {
  display: inline-block;
  padding: 0px 10px;
  background: #ffffff;
  color: var(--brand-deep);
  font-weight: 700;
  font-family: Noto Sans JP;
  font-size: clamp(
    20px,
    calc(17.09090909090909px + 0.7272727272727273vw),
    28px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  text-align: center;
  margin-right: 8px;
}

.solution-detail {
  display: grid;
  gap: 20px;
  width: 84%;
  max-width: 631px;
  margin: 0 auto;
}

.solution-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 20px;
}

.solution-icon {
  object-fit: cover;
}

.solution-title {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: var(--brand-deep);
}

.solution-body {
  color: var(--text);
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: clamp(
    16px,
    calc(15.272727272727273px + 0.18181818181818182vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
}

.solution-body span {
  color: var(--brand-deep);
  font-weight: 700;
}

/* 特徴（POINT） -------------------------------------------------- */

.point-grid {
  display: flex;
  gap: 16px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.point-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
}

.point-icon {
  width: 52%;
  margin: 0 auto 12px;
}

.point-title {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
  color: var(--brand-deep);
  margin-bottom: 10px;
}

.point-body {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(13.272727272727273px + 0.18181818181818182vw),
    16px
  );
  line-height: 220.00000000000003%;
  letter-spacing: 4%;
  color: var(--text);
  text-align: left;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.service-detail {
  margin-top: 60px;
}

.offer {
  background: white;
  border-radius: 30px;
  margin: 175px auto 80px;
  width: 74.5%;
  padding: 24px 0 50px;
  margin-bottom: 50px;
}

.offer_title_wrap {
  display: grid;
  grid-template-columns: 102px 1fr;
  align-items: center;
  width: fit-content;
  gap: 40px;
  margin: 0 auto 50px;
}

.offer_title_wrap img {
  transform: scaleX(-1);
  margin-top: -54px;
}

.offer_title_wrap h2 {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(14.77002583979328px + 0.8613264427217916vw),
    28px
  );
  line-height: 160%;
  letter-spacing: 4%;
  margin-bottom: 6px;
}

.offer_title_wrap p {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: clamp(
    16px,
    calc(15.354005167958656px + 0.17226528854435832vw),
    18px
  );
  line-height: 220.00000000000003%;
  letter-spacing: 4%;
}

.offer_title_wrap p span {
  font-weight: 700;
  color: var(--brand-deep);
}

.offer_content {
  display: flex;
  gap: 8%;
  justify-content: center;
}

.offer_item {
  width: 26.5%;
}

.offer_item img {
  width: 100%;
}

.offer_content p {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(13.354005167958656px + 0.17226528854435832vw),
    16px
  );
  line-height: 220.00000000000003%;
  letter-spacing: 4%;
}

.effect-wrap {
  background: white;
  border-radius: 30px;
  margin: 60px auto 90px;
  width: 74.5%;
  padding: 60px 120px;
}

.effect-wrap ul {
  display: grid;
  gap: 60px;
}

.effect-wrap li h4 {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(14.708010335917313px + 0.34453057708871665vw),
    20px
  );
  line-height: 180%;
  letter-spacing: 4%;
  color: var(--brand-deep);
  position: relative;
  padding-left: 34px;
}

.effect-wrap li h4::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(https://training.freecare1.com/images/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.effect-wrap li p {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(13.354005167958656px + 0.17226528854435832vw),
    16px
  );
  line-height: 220.00000000000003%;
  letter-spacing: 4%;
  padding-left: 34px;
}

/* フッター ------------------------------------------------------- */

.site-footer {
  background: #07876b;
  color: #ffffff;
  padding: 24px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img {
  height: 32px;
  display: block;
}

.footer-copy {
  font-size: 12px;
  margin: 0;
  opacity: 0.85;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
}

/* レスポンシブ --------------------------------------------------- */

@media (max-width: 960px) {
  .hdr__inner {
    padding: 14px 20px 10px;
  }

  .hdr__logo {
    width: 28vw;
  }

  .hdr__toggle {
    display: block;
  }
  /* 基本状態：メニューを隠す */
  .hdr__inner .hdr__nav #global-nav.hdr__list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 7.2em 2.4rem;
    display: none;
    z-index: 1000;
    list-style: none;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  /* 開いた状態：メニューを表示 */
  .hdr__inner .hdr__nav #global-nav.hdr__list.is-open {
    display: flex;
  }

  .hdr__list li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-line);
  }
  .hdr__list li:last-child {
    border-bottom: none;
  }
  .hdr__list li {
    padding: 8px 0;
  }

  .hdr__list a {
    color: var(--brand-deep);
    transition: all 0.3s ease;

    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.04em;
    display: inline-block;
  }

  .hdr__list .btn {
    color: white;
    padding: 1rem 2rem;
    font-size: 18px;
  }

  .hero-inner {
    flex-direction: column-reverse;
    width: 85.5%;
    gap: 20px;
  }

  .hero-visual {
    width: 88.8%;
  }

  .kv__catch {
    gap: 8px;
    margin-bottom: 0px;
  }

  .kv__line {
    padding: 5px 10px;
    border-radius: 2px;
    box-shadow: 2px 2px 0px 0 var(--brand-deep);
  }

  .bg_circle1 {
    top: 64vh;
    left: -1%;
  }

  .bg_circle2 {
    top: 24vh;
    right: -8%;
  }

  .h2_title {
    margin-bottom: 30px;
  }

  .h2_title::before,
  .h2_title::after {
    width: 0.8em;
    height: 0.9em;
  }
  .h2_title::before {
    left: -1.2em;
  }
  .h2_title::after {
    right: -1.2em;
  }

  .section-problem::before {
    height: 10%;
    bottom: -6%;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 40px),
      50% 100%,
      0 calc(100% - 40px)
    );
  }

  .solution-heading::before {
    height: 25%;
    bottom: -25%;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 40px),
      50% 100%,
      0 calc(100% - 40px)
    );
  }

  .concerns {
    padding: 60px 6% 14px;
  }

  .concerns__chars {
    gap: 12px;
  }

  .circle {
    width: 180px;
    height: 90px;
  }

  .char {
    width: 70px;
  }

  .bubble--left,
  .bubble--right {
    margin-top: 0;
  }

  .features__wrap {
    padding: 50px 16px;
    border-radius: 16px;
  }

  .tri-down {
    --base: 40px; /* 底辺の長さ */
    --height: 17.5px; /* 高さ */
    margin: 0 auto 30px;
  }

  .features__lead {
    width: 100%;
    min-width: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .features__lead p {
    margin-bottom: 0;
  }

  .features__lead img {
    width: 21%;
  }
  .f-list {
    gap: 60px;
    padding: 0;
    margin-bottom: 30px;
  }

  .f-item {
    flex-direction: column-reverse !important;
  }

  .f-item__ph {
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .f-item__ph img {
    width: 100%;
    border-radius: 8px;
  }

  .f-item__body__inner {
    width: 100%;
  }

  .btn2 {
    width: 261px;
    padding: 8px 40px;
    border-radius: 4px;
  }

  .btn2 svg {
    width: 24px;
    height: 24px;
  }

  .btn2::before {
    height: calc(100% - 6px);
    top: 3px;
    width: 255px;
  }

  .flow {
    padding: 90px 0;
  }

  .flow__list {
    width: 84%;
    padding-bottom: 0px;
    margin-top: 30px;
  }

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

  .flow__icon {
    width: 140px;
  }

  .flow__body {
    width: 100%;
  }

  .flow__arrow {
    width: 100%;
  }

  .flow__body .btn {
    margin-top: 10px;
    padding: 8px 20px;
    gap: 16px;
  }

  .flow__body .btn svg {
    width: 24px;
    height: 24px;
  }

  .faq {
    padding: 90px 0;
  }

  .faq__item {
    padding: 20px 0;
  }

  .toggleIcon {
    width: 24px;
    height: 24px;
  }

  .faq__a {
    padding-top: 16px;
  }

  .cta {
    padding: 0 0 100px;
  }

  .cta__box {
    gap: 60px;
  }

  footer {
    padding: 40px 30px;
  }

  footer svg {
    width: 65px;
  }

  .ftr__inner {
    margin-top: 20px;
  }

  .ftr__inner img {
    width: 120px;
  }

  .ftr__inner div {
    flex-direction: column;
    gap: 8px;
  }

  .pc-only {
    display: none;
  }
}

@media (min-width: 961px) {
  .sp-only {
    display: none;
  }
}

@media (max-width: 960px) {
  .point-grid {
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .point-card {
    width: 67%;
    margin-inline: auto;
    border-radius: 10px;
    padding: 20px 16px;
  }

  .point-icon {
    width: 45%;
  }

  .price-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 20px 0 70px;
  }

  .hero-message {
    text-align: left;
  }

  .hero-sub {
    margin-top: 24px;
  }

  .hero-sub::before {
    left: 50%;
    transform: translateX(-120%);
  }

  .hero-sub::after {
    right: 50%;
    transform: translateX(120%);
  }

  .section-problem {
    padding-top: 0;
  }

  .problem-list {
    flex-direction: column;
  }

  .problem-list li img {
    margin-inline: auto;
    width: 180px;
  }

  .problem-card {
    padding: 30px 10px;
    border-radius: 16px;
  }

  .problem-body {
    padding-left: 2.4em;
  }

  .solution-heading {
    gap: 8px;
  }

  .solution-person1 {
    height: 95px;
    margin-inline: auto;
  }

  .solution-heading {
    margin-bottom: 12px;
    gap: 14px;
    flex-direction: column;
  }

  .solution-item {
    gap: 10px;
    grid-template-columns: 40px 1fr;
  }

  .solution-detail {
    margin-top: 120px;
  }

  .solution-lead {
    line-height: 180%;
    margin-inline: auto;
  }

  .solution-lead span {
    margin-inline: 4px;
  }

  .important-note {
    grid-template-columns: 40px 1fr;
    padding: 14px 10px;
    gap: 10px;
    border-radius: 4px;
    width: 84%;

    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 4%;
    margin-bottom: 40px;
  }

  .offer {
    padding: 56px 16px 40px;
    width: 92%;
    border-radius: 16px;
  }

  .offer_title_wrap {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .offer_title_wrap img {
    width: 24.43%;
    margin-inline: auto;
    margin-top: -102px;
  }

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

  .offer_item {
    width: 100%;
  }

  .offer_item img {
    margin-bottom: 12px;
  }

  .effect-wrap {
    border-radius: 16px;
    margin: 30px auto -20px;
    width: 92%;
    padding: 30px 16px 40px;
  }

  .effect-wrap ul {
    gap: 40px;
  }

  .effect-wrap li h4 {
    margin-bottom: 6px;
    padding-left: 30px;
  }

  .effect-wrap li p {
    padding-left: 0;
  }

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

.btn-main {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 1.76em;
  width: fit-content;
  padding: 12px 38px 12px 40px; /* 上下12 / 左右40 */
  border: 1px solid #8ec31f;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(
    14px,
    calc(12.545454545454545px + 0.36363636363636365vw),
    18px
  );
  letter-spacing: 0.04em;
  line-height: 2.2;

  text-decoration: none;
  transition: background-color 0.3s ease;

  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.btn-main:hover {
  background-color: #ebf5d6;
}

.btn-main svg {
  z-index: 0;
  overflow: visible;
}

.btn-main svg circle {
  content: "";
  display: block;
  fill: #fff;
  stroke: #8ec31f;
  stroke-width: 1;
  z-index: -1;
  transition: 0.5s;
}

.btn-main:hover svg circle {
  transition: 0s;
  transform: translate(50%, 50%) scale(0);
}

.btn-main svg path {
  fill: var(--brand-main);
  transition: 0.4s;
  z-index: 9999;
}

.btn-main .svgwrap {
  position: relative;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-main .svgwrap::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: var(--brand-main);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scale(0);
  z-index: 1;
  transition: 0.4s;
}

.btn-main .svgwrap svg {
  position: relative;
  z-index: 2;
}

.btn-main:hover svg path {
  fill: #fff;
}

.btn-main:hover svg circle {
  transform: translate(50%, 50%) scale(0);
}

.btn-main:hover .svgwrap::after {
  transform: translateY(-50%) scale(1);
}

@media (max-width: 900px) {
  .btn-main {
    gap: 16px;
    padding: 8px 19px 8px 20px; /* 上下12 / 左右40 */
    border-radius: 4px;
  }

  .btn-main img {
    width: 26px;
    height: 26px;
  }

  .btn-main .svgwrap svg {
    width: 24px;
    height: 24px;
  }

  .btn-main svg circle {
    fill: #8ec31f;
  }

  .btn-main svg path {
    fill: white;
  }
}
