:root {
  font-size: 62.5%;
  --color-white: #fff;
  --color-text: #333;
  --color-dark: #222;
  --color-green-dark: #00a23f;
  --color-bg-gray: #f7f6f8;
  --color-blue-gradient-start: #9dd0fc;
  --color-blue-pale: #d5e3f3;
  --color-bg-cream: #f7f6ed;
  --color-blue: #036eb8;
  --color-blue-dark: #02375c;
  --color-gray-gradient-end: #efeff2;
  --color-red: #c43958;
  --color-blue-light: #87ccea;
  --color-card-bg: #f8ffff;
  --color-blue-accent: #1a92c9;
  --color-gray-border: #676767;
  --color-green: #00a896;
  --color-blue-soft: #d5effa;
  --color-gray-light: #efefef;
  --color-green-pale: #e8fad5;
  --color-gray-dark: #5d6164;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 360px;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: source-han-sans-japanese, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.3;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}

main {
  display: block;
}

ul,
ol {
  list-style: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration: underline;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

em {
  font-style: normal;
  font-weight: bold;
}

dfn,
cite {
  font-style: normal;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 100%;
}

i {
  font-style: italic;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: bottom;
}

table {
  width: 100%;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  border-radius: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance: button;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: none;
}

legend {
  display: table;
  max-width: 100%;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

video {
  display: block;
  max-width: 100%;
}

.only-pc {
  display: block;
}

@media (max-width: 1024px) {
  .only-pc {
    display: none;
  }
}

.only-sp {
  display: none;
}

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

/* header */
.header {
  background-color: var(--color-white);
}

.header__inner {
  max-width: 1300px;
  padding: 12px 10px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  width: 133px;
}

.tel-container {
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.tel-number-container {
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.tel-number-icon {
  width: 36px;
  height: 20px;
}

.tel-number-icon .of-icon-color-primary {
  fill: var(--color-green-dark);
}

.tel-number {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
}

.tel-note {
  font-size: 1.2rem;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .header__inner {
    justify-content: center;
  }

  .logo-container img {
    width: 110px;
  }

  .header__tel {
    display: none;
  }
}

/* footer */
.footer {
  background-color: var(--color-dark);
}

.footer__inner {
  max-width: 1232px;
  padding: 20px;
  margin-inline: auto;
}

.footer__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer__link li {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  color: var(--color-white);
  font-size: 1.3rem;
  line-height: 1em;
}

.footer__link li a {
  color: var(--color-white);
  font-size: 1.4rem;
  text-decoration: none;
}

.footer__link li a:hover {
  text-decoration: underline;
}

.footer__link li::after {
  display: block;
  width: 1px;
  height: 16px;
  background-color: var(--color-white);
  content: "";
}

.footer__link li:last-child::after {
  display: none;
}

.footer__copy {
  text-align: center;
}

/* section */
.section {
  background-color: var(--color-bg-gray);
  overflow: hidden;
}

.section--blue {
  background: linear-gradient(180deg, var(--color-blue-gradient-start) 0%, var(--color-blue-pale) 100%);
}

.section--beige {
  background-color: var(--color-bg-cream);
}

.section__triangle {
  position: relative;
  height: clamp(32px, -360.000px + 38.281vw, 130px);
  display: flex;
  justify-content: center;
  margin-top: -1px;
}

.section__triangle::before {
  content: "";
  width: clamp(94px, -818.000px + 89.063vw, 322px);
  height: 100%;
  background-color: var(--color-blue-pale);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.section__triangle--gray::before {
  background-color: var(--color-bg-gray);
}

.section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  line-height: 1.2;
}

.section__title-text {
  color: var(--color-blue);
  font-size: clamp(36px, 20.000px + 1.563vw, 40px);
  font-weight: 400;
}

@media (max-width: 1024px) {
  .section__title-text {
    font-size: 1.6rem;
    text-align: center;
  }
}

.section__title-text--large {
  font-size: clamp(44px, 20.000px + 2.344vw, 50px);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .section__title-text--large {
    font-size: 3.2rem;
  }
}

.section__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1220px;
  padding: 80px 10px;
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .section__inner {
    max-width: 600px;
    padding: 40px 16px;
    gap: 40px;
  }
}

.section__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (max-width: 1024px) {
  .section__content {
    gap: 32px;
  }
}

/* jumbotron */
.jumbotron {
  background-image: url("/img/products/rk/208054001/208054001_bg_01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-bg-gray);
}

@media (max-width: 768px) {
  .jumbotron {
    background-image: url("/img/products/rk/208054001/208054001_bg_01_sp.png");
  }
}

.jumbotron__inner {
  max-width: 1260px;
  padding: 40px 10px 56px;
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .jumbotron__inner {
    max-width: 600px;
    padding: 40px 16px 0;
  }
}

.jumbotron__content {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

@media (max-width: 1024px) {
  .jumbotron__content {
    gap: 32px;
    align-items: center;
  }
}

.jumbotron__title {
  font-size: clamp(88px, 24.000px + 6.25vw, 114px);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .jumbotron__title {
    font-size: 4.8rem;
  }
}

.jumbotron__description-title-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .jumbotron__description-title-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.jumbotron__body {
  display: flex;
  position: relative;
}

.jumbotron__image {
  position: absolute;
  top: -30px;
  right: 0;
  flex-shrink: 0;
  width: clamp(680px, -113.971px + 77.536vw, 894px);
}

@media (max-width: 1024px) {
  .jumbotron__image {
    position: relative;
    inset: 0;
    width: 100%;
  }
}

.jumbotron__video {
  position: absolute;
  min-width: clamp(390px, -50.000px + 42.969vw, 500px);
  min-height: 300px;
  top: 6.2%;
  left: 16.5%;
}

@media (max-width: 1024px) {
  .jumbotron__video {
    min-height: auto;
    top: 6%;
    min-width: 55.9%;
    left: 16.4%;
  }
}

.jumbotron__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 1024px) {
  .jumbotron__row {
    gap: 32px;
  }
}

.jumbotron__description {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, -24.522px + 4.348vw, 32px);
}

.jumbotron__description-title {
  color: var(--color-text);
  font-size: clamp(40px, 2.899px + 3.623vw, 50px);
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 1024px) {
  .jumbotron__description-title {
    font-size: 2.4rem;
  }
}

.jumbotron__description-title--large {
  font-size: clamp(160px, 44.986px + 11.232vw, 191px);
}

@media (max-width: 1024px) {
  .jumbotron__description-title--large {
    font-size: 5.6rem;
  }
}

.jumbotron__description-text {
  font-size: clamp(16px, 1.159px + 1.449vw, 20px);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1024px) {
  .jumbotron__description-text {
    text-align: center;
  }
}

/* button */
.button__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

@media (max-width: 1024px) {
  .button__container {
    width: 100%;
    justify-content: center;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background: linear-gradient(91deg, var(--color-white) -0.1%, var(--color-gray-gradient-end) 99.9%);
  box-shadow: 3px 3px 20px 0 rgba(36, 65, 93, 0.30), -3px -3px 10px 0 var(--color-white);
  padding: 16px clamp(12px, -68.000px + 7.813vw, 32px);
  color: var(--color-red);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 368px;
  transition: box-shadow 0.3s ease;
}

@media (max-width: 1024px) {
  .button {
    min-width: 100%;
  }
}

@media (hover: hover) {
  .button:hover {
    box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
  }
}

/* description */
.description {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 1024px) {
  .description {
    font-size: 2rem;
  }
}

/* card */
.card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 120px;
}

@media (max-width: 1024px) {
  .card {
    position: relative;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding-bottom: 136px;
  }

  .card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 138px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='120' viewBox='0 0 138 120' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_card' x1='68.5184' y1='0' x2='68.5184' y2='119.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2387ccea' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%2387ccea'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M31.0645 0V50.963H0L68.5209 119.663L137.037 50.963H105.972V0H31.0645Z' fill='url(%23paint0_linear_card)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
  }
}

.card__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  border: 4px solid var(--color-blue-light);
  background-color: var(--color-card-bg);
  padding: 32px;
}

@media (max-width: 1024px) {
  .card__item {
    padding: 32px 16px;
    gap: 8px;
  }
}

.card__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  width: 164px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='164' height='120' viewBox='0 0 164 120' fill='none'%3E%3Cpath d='M37.092 0V50.963H0L81.816 119.663L163.626 50.963H126.534V0H37.092Z' fill='%2387ccea'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .card__item::after {
    display: none;
  }
}

.card__tag {
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  display: inline-block;
  color: var(--color-white);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  min-width: 240px;
  padding: 8px 10px;
  border-radius: 30px;
  background-color: var(--color-blue);
}

.card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--color-blue-light);
  padding-bottom: 16px;
}

@media (max-width: 1024px) {
  .card__body {
    gap: 24px;
    padding-bottom: 8px;
  }
}

.card__image {
  width: 100%;
}

@media (max-width: 1024px) {
  .card__image {
    max-width: 320px;
  }
}

.card__description {
  color: var(--color-blue);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .card__description {
    font-size: 1.8rem;
  }
}

.card__text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

/* balloon */
.balloon__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 1024px) {
  .balloon__row {
    flex-direction: column-reverse;
    gap: 0;
    align-items: flex-start;
  }
}

.balloon__row--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .balloon__row--reverse {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}

.balloon__image {
  width: 100%;
  max-width: 157px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .balloon__image {
    position: relative;
    margin-top: -12px;
    max-width: 67px;
    z-index: 2;
  }
}

.balloon__content {
  position: relative;
  padding: 16px 24px;
  border-radius: 20px;
  background-color: var(--color-white);
  filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.16));
}

@media (max-width: 1024px) {
  .balloon__content {
    padding: 16px;
    width: 100%;
  }
}

.balloon__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(-100%, -50%);
  width: 34px;
  height: 46px;
  background-color: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .balloon__content::before {
    top: auto;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    width: 39px;
    height: 16px;
    clip-path: polygon(39.528% 0, 100% 0, 0 100%);
  }
}

.balloon__row--reverse .balloon__content::before {
  left: auto;
  right: 10px;
  transform: translate(100%, -50%) rotate(180deg);
}

@media (max-width: 1024px) {
  .balloon__row--reverse .balloon__content::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(50deg);
  }
}

.balloon__text {
  font-size: 2.6rem;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 1024px) {
  .balloon__text {
    font-size: 1.6rem;
  }
}

.balloon__text em {
  font-weight: bold;
}

/* media */
.media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .media {
    grid-template-columns: repeat(1, 1fr);
  }
}

.media__item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background-color: var(--color-white);
  overflow: hidden;
}

.media__title {
  border: 1px solid var(--color-blue);
  background-color: var(--color-blue);
  padding: 16px 0;
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1024px) {
  .media__title {
    font-size: 1.8rem;
  }
}

.media__image {
  width: 100%;
  max-width: 480px;
  align-self: center;
}

.media__image--small {
  max-width: 448px;
}

@media (max-width: 1024px) {
  .media__image,
  .media__image--small {
    max-width: 420px;
  }
}

.media__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  height: 100%;
}

@media (max-width: 1024px) {
  .media__content {
    gap: 24px;
    padding: 24px 16px;
  }
}

.media__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 1024px) {
  .media__body {
    gap: 16px;
  }
}

.media__subtitle {
  position: relative;
  color: var(--color-blue);
  text-align: center;
  -webkit-text-stroke-color: var(--color-blue);
  -webkit-text-stroke: 0.5px var(--color-blue);
  paint-order: stroke fill;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .media__subtitle {
    font-size: 1.8rem;
    -webkit-text-stroke-color: initial;
    -webkit-text-stroke: initial;
    paint-order: initial;
  }
}

.media__subtitle::after {
  content: "";
  position: absolute;
  bottom: -16px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue-light);
}

@media (max-width: 1024px) {
  .media__subtitle::after {
    bottom: -8px;
  }
}

.media__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

.media__text-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 32px;
}

@media (max-width: 1024px) {
  .media__text-container {
    gap: 16px;
  }
}

.media__label {
  display: inline-block;
  color: var(--color-white);
  text-align: center;
  padding: 12px 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 12px;
  background-color: var(--color-blue-accent);
  margin-top: auto;
}

@media (max-width: 1024px) {
  .media__label {
    padding: 8px 0;
    font-size: 1.8rem;
  }
}

/* topic */
.topic {
  border-radius: 12px;
  border: 3px dashed var(--color-gray-border);
  padding: 16px;
}

@media (max-width: 1024px) {
  .topic {
    padding: 8px;
    border-width: 2px;
  }
}
.topic__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px;
  border-radius: 12px;
  background-color: var(--color-gray-border);
}

@media (max-width: 1024px) {
  .topic__inner {
    padding: 32px 16px;
    gap: 24px;
  }
}

.topic__title {
  color: var(--color-white);
  font-size: clamp(44px, 20.000px + 2.344vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1024px) {
  .topic__title {
    font-size: 2.4rem;
  }
}

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

@media (max-width: 1024px) {
  .topic__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.topic__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1024px) {
  .topic__item {
    gap: 8px;
  }
}

.topic__image {
  width: 100%;
}

@media (max-width: 1024px) {
  .topic__image {
    max-width: 300px;
  }
}

.topic__text {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1024px) {
  .topic__text {
    font-size: 1.6rem;
  }
}

.topic__text-highlight {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .topic__text-highlight {
    font-size: 2.4rem;
  }
}

/* support */
.support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 108px;
}

@media (max-width: 1024px) {
  .support {
    grid-template-columns: repeat(1, 1fr);
    gap: 76px;
  }
}

.support__item {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .support__item {
    align-items: center;
  }
}

.support__item + .support__item {
  position: relative;
}

.support__item + .support__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc((-108px - 44px) / 2);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44' fill='none'%3E%3Cpath d='M26 18H44V26H26V44H18V26H0V18H18V0H26V18Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .support__item + .support__item::before {
    top: calc((-76px - 44px) / 2);
    left: 50%;
    transform: translateX(-50%);
  }
}

.support__image {
  width: 100%;
}

@media (max-width: 1024px) {
  .support__image {
    max-width: 192px;
  }
}

.support__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.support__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  -webkit-text-stroke: 6px var(--color-white);
  paint-order: stroke fill;
}

@media (max-width: 1024px) {
  .support__title {
    font-size: 1.8rem;
  }
}

.support__title--blue {
  color: var(--color-blue);
}

.support__title--green {
  color: var(--color-green);
}

.support__title em {
  font-size: 5rem;
}

@media (max-width: 1024px) {
  .support__title em {
    font-size: 3.2rem;
  }
}

.support__text {
  font-size: 1.6rem;
  text-align: center;
}

/* catch */
.catch {
  border-radius: 12px;
  background-color: var(--color-white);
  overflow: hidden;
}

.catch__title {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 16px 0;
  background-color: var(--color-blue);
  color: var(--color-white);
}

@media (max-width: 1024px) {
  .catch__title {
    font-size: 1.8rem;
  }
}

.catch__title--green {
  background-color: var(--color-green);
}

.catch__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 40px;
}

@media (max-width: 1024px) {
  .catch__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    padding: 24px 16px;
  }
}


.catch__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
  border-radius: 12px;
  border: 2px solid var(--color-blue-light);
  overflow: hidden;
}

.catch__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 164px;
  background-color: var(--color-blue-soft);
}

@media (max-width: 1024px) {
  .catch__header {
    flex-direction: column;
    padding: 0 12px;
    padding-bottom: 24px;
  }
}

.catch__header--gray {
  background-color: var(--color-gray-light);
}

.catch__header--green {
  background-color: var(--color-green-pale);
}

.catch__header-image {
  width: 100%;
  max-width: clamp(80px, -32.000px + 10.938vw, 108px);
  flex-shrink: 0;
}

.catch__header-image--small {
  max-width: clamp(60px, -20.000px + 7.813vw, 80px);
}

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

@media (max-width: 1024px) {
  .catch__header-content {
    width: 100%;
    gap: 8px;
    align-items: center;
  }
}

.catch__header-tag-wrapper {
  position: relative;
  display: flex;
  border-radius: 40px;
  background-color: var(--color-white);
  overflow: hidden;
  min-height: 44px;
}

@media (max-width: 1024px) {
  .catch__header-tag-wrapper {
    width: 100%;
    max-width: 400px;
  }
}

.catch__header-tag-wrapper::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-blue-light);
  border-radius: 40px;

}

.catch__header-tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: clamp(12px, -4.000px + 1.563vw, 16px);
  font-weight: 700;
  line-height: 1.2;
  min-width: clamp(78px, 38.000px + 3.906vw, 88px);
  z-index: 2;
  min-width: 88px;
}

@media (max-width: 1024px) {
  .catch__header-tag {
    font-size: 1.4rem;
    min-width: 80px
  }
}

.catch__header-tag--gray {
  background-color: var(--color-gray-dark);
}

.catch__header-tag--green {
  background-color: var(--color-green);
}

.catch__header-tag--small {
  font-size: clamp(12px, 4.000px + 0.781vw, 14px);
}

.catch__header-tag-text {
  display: flex;
  align-items: center;
  color: var(--color-blue-accent);
  font-size: clamp(16px, 0.000px + 1.563vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  padding: 0 16px 0 12px;
  min-width: 230px;
}

@media (max-width: 1024px) {
  .catch__header-tag-text {
    min-width: auto;
    flex: 1;
  }
}

.catch__header-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

.catch__image {
  width: 100%;
  max-width: 419px;
  margin-inline: auto;
}

.catch__header-label {
  position: absolute;
  top: 0;
  left: 8px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, -10.000px + 5.859vw, 65px);
  height: clamp(40px, -12.000px + 5.078vw, 53px);
  padding-bottom: 10px;
  color: var(--color-white);
  font-size: clamp(14px, -2.000px + 1.563vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='53' viewBox='0 0 65 53' fill='none'%3E%3Cpath d='M65 52.29L32 41.417L0 51.962V0H65V52.29Z' fill='%2300a896'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* case studies */
.case-studies {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (max-width: 1024px) {
  .case-studies {
    gap: 32px;
  }
}

.case-studies__title {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 40px;
  background-color: var(--color-blue-accent);
  color: var(--color-white);
  padding: 16px 0;
}

@media (max-width: 1024px) {
  .case-studies__title {
    font-size: 1.8rem;
    padding: 12px 0;
    text-align: center;
  }
}

.case-studies__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(60px, -60.000px + 11.719vw, 90px);
}

@media (max-width: 1024px) {
  .case-studies__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 43px;
  }
}

.case-studies__card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 1024px) {
  .case-studies__card {
    gap: 24px;
  }
}

.case-studies__image {
  width: 100%;
}

.case-studies__card-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1024px) {
  .case-studies__card-title {
    font-size: 1.8rem;
  }
}

.case-studies__card-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

.case-studies__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-radius: 12px;
  background-color: var(--color-white);
  padding: 40px 0;
}

@media (max-width: 1024px) {
  .case-studies__footer {
    flex-direction: column;
    gap: 24px;
    padding: 32px 16px;
  }
}

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

.case-studies__info-subtext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--color-blue-accent);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .case-studies__info-subtext {
    font-size: 1.6rem;
  }
}

.case-studies__info-subtext::before,
.case-studies__info-subtext::after {
  content: "";
  flex-shrink: 0;
  width: 17px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='18' viewBox='0 0 17 18' fill='none'%3E%3Cpath d='M4.155 0L0 3.8L14.731 17.777L16.747 15.935L4.155 0Z' fill='%231a92c9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.case-studies__info-subtext::after {
  transform: rotate(90deg);
}

.case-studies__info-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .case-studies__info-text {
    font-size: 1.8rem;
  }
}

.case-studies__info-arrow {
  width: 25px;
  height: 25px;
}

@media (max-width: 1024px) {
  .case-studies__info-arrow {
    display: none;
  }
}

/* cta */
.cta {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .cta {
    flex-direction: column;
    gap: 30px;
  }
}

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

.cta__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.cta__image {
  width: 100%;
  max-width: 640px;
}

.cta__title {
  font-size: clamp(24px, 0.000px + 2.344vw, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.cta__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

.cta__subtitle {
  font-size: clamp(18px, -10.000px + 2.734vw, 25px);
  font-weight: 700;
  line-height: 1.2;
}
