/* ==============
ボタン丸なし 
=================*/
.c-pillButton {
  display: inline-block;
  color: #000;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 56px;
}
.c-pillButton:hover {
  background: rgba(0, 0, 0, 0.15);
}

.c-pillButton__inner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-inline: 32px;
  min-height: 54px;
}

.c-pillButton__label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.33px;
  white-space: nowrap;
  font-family: "Noto Sans JP";
  color: #3e4042;
}

.c-pillButton__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.c-pillButton__icon img {
  width: 6px;
  height: auto;
  display: block;
}

/* ==============
ボタン丸あり 
=================*/
.button2 {
  background-color: #909295;
}
.c-ctaPill {
  display: inline-block;
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0px 0.3px 1px rgb(148, 143, 143);
}

.c-ctaPill__inner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 32px;
  min-height: 68px;
}

.c-ctaPill__label {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.33px;
  white-space: nowrap;
  font-family: "Noto Sans JP";
}

.c-ctaPill__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  border-radius: 56px;
  background: rgb(255, 255, 255, 0.4);
  transition: background-color 0.35s ease;
}

.c-ctaPill__action img {
  width: 6px;
  height: auto;
  display: block;
}

.c-ctaPill:hover .c-ctaPill__action,
.c-ctaPill:focus-visible .c-ctaPill__action {
  background: #ff5416;
}

/* ===============
  タイトル
  ================== */
.c-splitSection__container {
  display: flex;
  flex-direction: column;
  gap: 2.22vw;
  align-items: flex-start;
}
.c-headingBlock {
  margin-left: 8px;
}
.c-headingBlock__title {
  margin: 0 0 8px;
  font-size: clamp(56px, 3.95vw, 57px);
  line-height: 1.12;
  color: #3e4042;
  letter-spacing: 0;
  font-family: "Montserrat";
}

.c-headingBlock__eyebrow {
  font-size: 15px;
  line-height: 1.5;
  color: #ff5416;
  font-family: "Noto Sans JP";
  margin-left: 3px;
}
.c-textBlock__p {
  margin-inline: 8px;
  font-size: 16px;
  line-height: 1.9;
  color: #3e4042;
  letter-spacing: 0;
  font-family: "Noto Sans JP";
  font-weight: 400;
}

@media (max-width: 768px) {
  /* ===============
  タイトル
  ================== */
  .c-splitSection__container {
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 425px) {
  /* ===============
  ボタン丸なし
  ================== */
  .c-pillButton__inner {
    gap: 32px;
    min-height: 52px;
  }
  .c-pillButton__label {
    font-size: 14px;
  }
  .c-pillButton__icon img {
    width: 5px;
  }
  /* ===============
  ボタン丸あり
  ================== */
  .c-ctaPill__inner {
    padding-inline: 16vw;
    min-height: 62px;
    width: 55.2vw;
  }
  .c-ctaPill__label {
    font-size: 3.7vw;
  }
  .c-ctaPill__action {
    height: 7vw;
    width: 11.29vw;
  }
  /* ===============
  タイトル
  ================== */
  .c-headingBlock__title {
    font-size: 28px;
    font-weight: 600;
  }
  .c-headingBlock__eyebrow {
    font-size: 10px;
  }
  .c-textBlock__p {
    font-size: 15px;
  }
}
