/* Rset CSS */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

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] {
  -webkit-text-decoration: underline dotted;
  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;
  border: 0;
  background: none;
  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;
  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%;
}

:root {
  --color-white: #fff;
  --color-gray: #ccc;
  --color-dark-gray: #333;
  --color-primary-blue: #21589f;
  --color-dark-blue: #1e283c;
  --color-dark-red: #ea0437;
}

/* base */
body {
  min-width: 320px;
  background: #f5f8ff;
  color: var(--color-dark-blue);
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.5;
  font-family: source-han-sans-japanese, notosans, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  font-feature-settings: "palt";

  -webkit-font-feature-settings: "palt";
  -ms-user-select: none;
}

@media (min-width: 769px) {
  .onlySp {
    display: none;
  }
}

.onlyImagePc {
  display: block;
}

.onlyImageSp {
  display: none;
}

@media (max-width: 992px) {
  .onlyImagePc {
    display: none;
  }

  .onlyImageSp {
    display: block;
  }
}


.lp-header {
  padding: 22px 10px;
  border-bottom: 1px solid var(--color-gray);
  background-color: var(--color-white);
}

@media (max-width: 992px) {
  .lp-header {
    padding: 19px 15px;
  }
}

.lp-header__content {
  max-width: 1300px;
  padding: 0 10px;
  margin-inline: auto;
}

@media (max-width: 992px) {
  .lp-header__content {
    text-align: center;
  }
}

.lp-header__body {
  display: inline-flex;
  gap: 32px;
  justify-content: flex-start;
}

@media (max-width: 992px) {
  .lp-header__body {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}

.lp-header__logo-link {
  display: inline-block;
  width: 120px;
  line-height: 1;
}

@media (max-width: 992px) {
  .lp-header__logo-link {
    width: 90px;
  }
}

.lp-header__logo-link img {
  width: 100%;
}

.lp-header__text {
  width: 152px;
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  font-family: 'Halant', serif;
  line-height: 1;
}

.lp-listButton {
  display: flex;
  gap: 15px;
}

.lp-listButton li {
  flex: 1;
}

.lp-buttonConversion.is-hidden {
  display: none;
}

.lp-buttonConversion {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
}

@media (hover: hover) {
  .lp-buttonConversion:hover .lp-buttonConversion__text {
    opacity: 0.7;
  }
}

.lp-buttonConversion__text {
  min-width: 400px;
  padding: 20px 42px;
  display: block;
  border-radius: 6px;
  background: linear-gradient(180deg, #FF1109 0%, #E30A03 100%);
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.25);
  font-size: calc(28 / 16 * 1rem);
  font-weight: 700;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

@media (max-width: 992px) {
  .lp-buttonConversion__text {
    min-width: 345px;
    padding: 20px 64px;
    font-size: calc(24 / 16 * 1rem);
  }
}

.lp-buttonConversion__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='20' viewBox='0 0 13 20' fill='none'%3E%3Cpath d='M1.98535 1.93164L10.4706 10.4169L1.98535 18.9022' stroke='white' stroke-width='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  width: 13px;
  height: 20px;
}

.lp-buttonConversion__bubble {
  position: absolute;
  top: -24px;
  display: inline-block;
  padding: 8px 32px;
  background-color: var(--color-white);
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-dark-red);
  border-radius: 100px;
  border: 1px solid var(--color-dark-red);
  z-index: 3;
}

@media (max-width: 992px) {
  .lp-buttonConversion__bubble {
    font-size: calc(14 / 16 * 1rem);
  }
}

.lp-buttonConversion__bubble::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-white);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 992px) {
  .lp-buttonConversion__bubble::before {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-white);
  }
}

.lp-hero {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  margin-bottom: 72px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .lp-hero {
    margin-bottom: 0;
  }
}

.lp-hero::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: clamp(-60px, calc(-60px + (100vw - 1280px) * 0.0625), -20px);
  width: min(calc((1360 / 1920) * 100vw), 1360px);
  height: 100%;
  background-image: linear-gradient(180deg, #0C2555 8.67%, #475D88 47.69%, #708FCD 92.33%);
  transform-origin: top left;
  transform: skewX(-15deg);
  z-index: -1;
}

@media (max-width: 1200px) {
  .lp-hero::before {
    width: max(calc((880 / 1200) * 100vw), 860px);
  }
}

@media (max-width: 992px) {
  .lp-hero::before {
    content: none;
  }
}

.lp-hero__content {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  overflow: hidden;
}

@media (max-width: 992px) {
  .lp-hero__content {
    flex-direction: column;
  }
}

.lp-hero__image {
  max-width: 1362px;
  position: absolute;
  top: 0;
  right: clamp(-120px, calc(-120px + (100vw - 1280px) * 0.109375), -50px);
  z-index: -2;
}

@media (max-width: 1200px) {
  .lp-hero__image {
    width: 98%;
    right: calc((-160 / 992) * 100%);
  }
}

@media (max-width: 992px) {
  .lp-hero__image {
    position: static;
    width: 100%;
    margin-top: -33%;
  }

  .lp-hero__image img {
    width: 100%;
  }
}

.lp-hero__text-block {
  min-width: 1300px;
  margin-inline: auto;
  padding: 94px 10px;
  color: var(--color-white);
}

@media (max-width: 992px) {
  .lp-hero__text-block {
    position: relative;
    min-width: auto;
    padding: 32px 15px 75px;
  }

  .lp-hero__text-block::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-image: linear-gradient(180deg, #0C2555 8.67%, #475D88 47.69%, #708FCD 92.33%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 86.3406%, 0% 99.9997%);
    margin: 0 calc(50% - 50vw);
    z-index: -1;
  }
}

@media (max-width: 375px) {
  .lp-hero__text-block {
    width: 100%;
  }
  
  .lp-hero__text-block::before {
    width: 100%;
    margin: 0;
  }
}

.lp-hero__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 0.901rem + 1.489vw, 2.688rem);
  font-weight: 700;
}

@media (max-width: 992px) {
  .lp-hero__label {
    margin-bottom: 8px;
  }
}

.lp-hero__heading {
  margin-bottom: 15px;
  font-size: clamp(2.75rem, 2.204rem + 2.33vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .lp-hero__heading {
    margin-bottom: 12px;
  }
}

.lp-hero__heading::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  margin-top: 38px;
  background-color: var(--color-white);
}

@media (max-width: 992px) {
  .lp-hero__heading::after {
    width: 40px;
    margin-top: 12px;
  }
}

.lp-hero__description {
  font-size: clamp(1.125rem, 0.913rem + 0.91vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.8px;
}

.lp-hero__emphasis {
  font-size: clamp(1.625rem, 1.17rem + 1.94vw, 3.5rem);
  letter-spacing: 5.6px;
  line-height: 1;
}

@media (max-width: 1200px) {
  .lp-hero__emphasis {
    letter-spacing: 1.6px;
  }
}

.lp-hero__button-warraper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 80px;
  max-width: 630px;
}

@media (max-width: 1200px) {
  .lp-hero__button-warraper {
    max-width: 530px;
  }
}

@media (max-width: 992px) {
  .lp-hero__button-warraper {
    margin-top: 54px;
    max-width: none;
  }
}

.lp-hero__button-text {
  margin-top: 16px;
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
  font-weight: 400;
  text-align: center;
}

.lp-hero__list-button {
  margin: 0;
}

.lp-hero__tag {
  max-width: 400px;
  padding: 20px 0;
  border-radius: 100px;
  background: linear-gradient(90deg, #FFB401 0.15%, #FFF6C6 28.98%, #FFBB17 61.66%, #FFF183 100.1%);
  margin-bottom: 24px;
  text-align: center;
}

@media (max-width: 992px) {
  .lp-hero__tag {
    max-width: 240px;
    padding: 12px 0;
    margin-inline: auto;
    margin-bottom: 16px;
  }
}

.lp-hero__tag-text {
  display: inline-block;
  font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
  font-weight: 700;
  background: linear-gradient(90deg, #1E283C 0%, #516CA2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.lp-section {
  padding: 72px 0;
}

@media (max-width: 992px) {
  .lp-section {
    padding: 40px 0;
  }
}

.lp-section--nospace {
  padding: 0;
}

.lp-section__bg-image-wrapper {
  max-width: 1920px;
  margin-inline: auto;
  padding: 72px 0;
  background-image: url("/img/landing_page/req/general/lp_sales-internship_01191645/lp_sales-internship_01191645_bg_01.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .lp-section__bg-image-wrapper {
    padding: 40px 0;
    background-image: url("/img/landing_page/req/general/lp_sales-internship_01191645/lp_sales-internship_01191645_bg_01_sp.png");
  }
}

.lp-section__inner {
  max-width: 1300px;
  margin-inline: auto;
  padding: 0 10px;
}

@media (max-width: 992px) {
  .lp-section__inner {
    padding: 0 15px;
  }
}

.lp-heading {
  display: flex;
  align-items: center;
  margin-bottom: min(calc((56 / 1920) * 100vw), 56px);
  font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 992px) {
  .lp-heading {
    margin-bottom: 24px;
  }
}

.lp-heading::before {
  content: "";
  width: 10px;
  height: 35px;
  display: inline-block;
  background-color: #21589f;
  margin-right: 16px;
}

@media (max-width: 992px) {
  .lp-heading::before {
    width: 8px;
    height: 28px;
  }
}

.lp-media {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: min(calc((150 / 1920) * 100vw), 150px);
}

@media (max-width: 992px) {
  .lp-media {
    flex-direction: column;
  }
}

.lp-media__body {
  flex-shrink: 0;
  padding: 117px 0;
}

@media (max-width: 992px) {
  .lp-media__body {
    padding: 0;
  }
}

.lp-media__title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  font-size: clamp(1.875rem, 1.625rem + 0.31vw, 2rem);
  font-weight: 700;
}

@media (max-width: 992px) {
  .lp-media__title {
    justify-content: space-between;
    margin-bottom: 32px;
    text-align: center;
    font-size: clamp(1.5rem, 1.272rem + 0.97vw, 1.875rem);
  }
}

.lp-media__title::before,
.lp-media__title::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 40px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .lp-media__title::before,
  .lp-media__title::after {
    width: 19px;
    height: 72px;
  }
}

.lp-media__title::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2242%22%20viewBox%3D%220%200%2011%2042%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M11%201H1V41H11%22%20stroke%3D%22%231E283C%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
}

@media (max-width: 992px) {
  .lp-media__title::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219%22%20height%3D%2272%22%20viewBox%3D%220%200%2019%2072%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M19%201.43469H1V71.4347H19%22%20stroke%3D%22%231E283C%22%2F%3E%3C%2Fsvg%3E");
  }
}

.lp-media__title::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2242%22%20viewBox%3D%220%200%2011%2042%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M3.27826e-07%201H10V41H3.27826e-07%22%20stroke%3D%22%231E283C%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
}

@media (max-width: 992px) {
  .lp-media__title::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219%22%20height%3D%2272%22%20viewBox%3D%220%200%2019%2072%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M1.78814e-07%201.43469H18V71.4347H1.78814e-07%22%20stroke%3D%22%231E283C%22%2F%3E%3C%2Fsvg%3E");
  }
}

.lp-media__text {
  font-size: clamp(1rem, 0.75rem + 0.31vw, 1.125rem);
  font-weight: 400;
}

@media (max-width: 992px) {
  .lp-media__text {
    text-align: center;
  }
}

.lp-media__video {
  position: absolute;
  top: 0;
  right: 0;
  width: min(calc((640 / 1280) * 100vw), 640px);
  transition: opacity 0.3s ease-in-out;
}

@media (hover:hover) {
  .lp-media__video:hover {
    opacity: 0.8;
  }
}

@media (max-width: 992px) {
  .lp-media__video {
    position: static;
    width: 100%;
    margin-bottom: 24px;
  }
}

.lp-steps-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 992px) {
  .lp-steps-section {
    gap: 16px;
  }
}

.lp-step-item {
  display: flex;
  justify-content: center;
}

.lp-step-item:nth-child(even){
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .lp-step-item,.lp-step-item:nth-child(even) {
    flex-direction: column;
  }
}

.lp-step-item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: min(calc((40 / 1920) * 100vw), 40px);
  background-color: var(--color-white);
  z-index: 2;
  overflow: hidden;
}

@media (max-width: 992px) {
  .lp-step-item__content {
    padding: 24px;
    text-align: center;
  }
}

.lp-step-item__title {
  font-size: clamp(1.625rem, 1.413rem + 0.91vw, 2.5rem);
  font-weight: 700;
  color: #21589f;
  margin-bottom: 26px;
}

@media (max-width: 1200px) {
  .lp-step-item__title {
    margin-bottom: 8px;
  }
}

.lp-step-item__number {
  position: absolute;
  top: -42px;
  left: -46px;
  display: inline-block;
  color: #ecf2ff;
  font-size: calc(200 / 16 * 1rem);
  font-weight: 700;
  line-height: 1;
  z-index: -1;
}

@media (max-width: 992px) {
  .lp-step-item__number {
    font-size: calc(72 / 16 * 1rem);
    top: -16px;
    left: -16px;
  }
}

.lp-step-item__text {
  font-size: clamp(1.125rem, 0.913rem + 0.91vw, 2rem);
  font-weight: 400;
}

.lp-step-item__emphasis {
  font-weight: 700;
}

.lp-step-item__image-wrapper {
  max-width: 640px;
  width: max(calc((640 / 1280) * 100vw), 480px);
}

@media (max-width: 992px) {
  .lp-step-item__image-wrapper {
    width: 100%;
    max-width: none;
  }
}

.lp-step-item__image {
  width: 100%;
}

.lp-cta-message {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  overflow: hidden;
}

.lp-cta-message::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: max(calc((1110 / 1920) * 100%), 700px);
  height: 100%;
  background-image: linear-gradient(180deg, #0C2555 0%, #475D88 46.63%, #708FCD 100%);
  clip-path: polygon(118.5px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

@media (max-width: 992px) {
  .lp-cta-message::after {
    content: none;
  }
}

.lp-cta-message__inner {
  position: relative;
  display: flex;
  max-width: 1920px;
  min-height: 500px;
  margin-inline: auto;
  overflow: hidden;
}

@media (max-width: 992px) {
  .lp-cta-message__inner {
    flex-direction: column-reverse;
    min-height: auto;
  }
}

.lp-cta-message__image {
  position: absolute;
  top: 0;
  left: clamp(-24rem, -47.808rem + 38.4vw, 0rem);
  max-width: 1227px;
}

@media (max-width: 992px) {
  .lp-cta-message__image {
    position: static;
    margin-top: -27%;
  }

  .lp-cta-message__image img {
    width: 100%;
  }
}

.lp-cta-message__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 1300px;
  padding: 0 10px;
  margin-inline: auto;
  z-index: 2;
}

@media (max-width: 992px) {
  .lp-cta-message__content {
    position: relative;
    align-items: center;
    width: 100%;
  }

  .lp-cta-message__content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100vw;
    height: 100%;
    background-image: linear-gradient(180deg, #0C2555 8.67%, #475D88 47.69%, #708FCD 92.33%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 99.6533%, 0% 85.6976%);
    margin: 0 calc(50% - 50vw);
    z-index: -1;
  }
}

@media (max-width: 375px) {
  .lp-cta-message__content::before {
    width: 100%;
    margin: 0;
  }
}

.lp-cta-message__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
}

@media (max-width: 992px) {
  .lp-cta-message__body {
    margin-right: 0;
    padding: 32px 0 75px;
  }
}

.lp-cta-message__title {
  margin-bottom: 16px;
  font-size: clamp(1.313rem, 1.024rem + 1.23vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
}

@media (max-width: 992px) {
  .lp-cta-message__title {
    margin-bottom: 8px;
    text-align: center;
  }
}

.lp-cta-message__subtitle {
  font-size: clamp(1.125rem, 1.033rem + 0.393vw, 1.5rem);
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
}

.lp-cta-message__buttons {
  margin-top: 62px;
}

@media (max-width: 992px) {
  .lp-cta-message__buttons {
    margin-top: 46px;
  }
}

.lp-cta-message__tag {
  min-width: 400px;
  padding: 20px 56px 20px;
  border-radius: 100px;
  background: linear-gradient(90deg, #FFB401 0.15%, #FFF6C6 28.98%, #FFBB17 61.66%, #FFF183 100.1%);
  margin-bottom: 24px;
  text-align: center;
}

@media (max-width: 992px) {
  .lp-cta-message__tag {
    min-width: 240px;
    margin-bottom: 16px;
    padding: 12px 0;
  }
}

.lp-cta-message__tag-text {
  display: inline-block;
  font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
  font-weight: 700;
  background: linear-gradient(90deg, #1E283C 0%, #516CA2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.lp-cta-message__text {
  margin-top: 16px;
  text-align: center;
  color: var(--color-white);
  text-shadow: 0px 0px 94px var(--color-white);
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
  font-weight: 400;
}


@media (max-width: 992px) {
  .lp-cta-message__text {
    margin-top: 8px;
  }
}

.lp-footer__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  background-color: var(--color-dark-gray);
}

.lp-footer__content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .lp-footer__content {
    padding: 20px;
  }
}

.lp-footer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: calc(13 / 16 * 1rem);
  gap: 12px 30px;
}

.lp-footer__list li {
  position: relative;
}

.lp-footer__list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -15px;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background-color: var(--color-white);
}

.lp-footer__list li:first-child::before {
  content: none;
}

@media (max-width: 992px) {
  .lp-footer__list li:last-child::before {
    content: none;
  }
}

.lp-footer__list a {
  color: var(--color-white);
  text-decoration: none;
}

.lp-footer__copyright {
  font-size: calc(13 / 16 * 1rem);
  color: var(--color-white);
}

@media (max-width: 992px) {
  .lp-footer__copyright {
    width: 100%;
    text-align: center;
  }
}

/* modallayout */
.prd-layout-cluster {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.prd-layout-container {
  box-sizing: content-box;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.prd-layout-container.of-narrow {
  max-width: 950px;
}

.prd-modalDialog:not(.of-full) .prd-layout-container {
  max-width: 620px;
}

.prd-layout-cluster {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1px) {
  .prd-layout-cluster.largeScreen-justifyContent-start {
      -ms-flex-pack: start;
      justify-content: flex-start;
  }
  .prd-layout-cluster.largeScreen-justifyContent-end {
      -ms-flex-pack: end;
      justify-content: flex-end;
  }
  .prd-layout-cluster.largeScreen-justifyContent-center {
      -ms-flex-pack: center;
      justify-content: center;
  }
  .prd-layout-cluster.largeScreen-justifyContent-between {
      -ms-flex-pack: justify;
      justify-content: space-between;
  }
}

@media (min-width: 1px) {
  .prd-largeScreen-marginBottom-0 {
      margin-bottom: 0 !important;
  }
  .prd-largeScreen-marginBottom-1 {
      margin-bottom: 4px !important;
  }
  .prd-largeScreen-marginBottom-2 {
      margin-bottom: 8px !important;
  }
  .prd-largeScreen-marginBottom-3 {
      margin-bottom: 16px !important;
  }
  .prd-largeScreen-marginBottom-4 {
      margin-bottom: 20px !important;
  }
  .prd-largeScreen-marginBottom-5 {
      margin-bottom: 24px !important;
  }
  .prd-largeScreen-marginBottom-6 {
      margin-bottom: 32px !important;
  }
  .prd-largeScreen-marginBottom-7 {
      margin-bottom: 40px !important;
  }
  .prd-largeScreen-marginBottom-8 {
      margin-bottom: 64px !important;
  }
  .prd-largeScreen-marginBottom-9 {
      margin-bottom: 72px !important;
  }
  .prd-largeScreen-marginBottom-10 {
      margin-bottom: 120px !important;
  }
  .prd-largeScreen-marginBottom-11 {
      margin-bottom: 144px !important;
  }
  .prd-largeScreen-marginBottom-12 {
      margin-bottom: 168px !important;
  }
}

.prd-utility-marginLeft-auto {
  margin-left: auto;
}

.prd-utility-maxWidth-narrow {
  max-width: 950px;
}

.prd-utility-maxWidth-extraNarrow {
  max-width: 840px;
}

/* modalDialog */
.prd-modalDialog:not(.of-full) .prd-layout-container {
  max-width: 620px;
}

.prd-modalDialog {
  transition: visibility .4s;
}

.prd-modalDialog[aria-hidden=true] {
  display: block;
  visibility: hidden;
}

.prd-modalDialog-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2002;
  background-color: rgba(46, 49, 51, .8);
  transition: opacity .4s cubic-bezier(.4, 0, .2, 1);
}

.prd-modalDialog[aria-hidden=true] .prd-modalDialog-backdrop {
  opacity: 0;
}

.prd-modalDialog-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2002;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: none;
}

.prd-modalDialog-closeButton {
  padding: 8px;
  background: none;
  border: 0;
  pointer-events: auto;
  cursor: pointer;
}

.prd-modalDialog-closeButtonIcon {
  width: 28px;
  height: 28px;
  vertical-align: bottom;
  fill: var(--color-white);
}

.prd-modalDialog-contentWrapper {
  -ms-flex: auto;
  flex: auto;
  min-height: 0;
}

@media (min-width: 1px) {
  .prd-modalDialog-contentWrapper {
      margin-bottom: 24px;
  }
}

.prd-modalDialog.of-full .prd-modalDialog-contentWrapper {
  overflow: auto;
  height: 100%;
}

@media (min-width: 1px) {
  .prd-modalDialog.of-full .prd-modalDialog-contentWrapper {
      margin-bottom: 0;
  }
}

.prd-modalDialog-content {
  overflow: auto;
  max-height: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--color-white);
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .4s;
  transition-property: transform,opacity;
  pointer-events: auto;
}

@media (min-width: 1px) {
  .prd-modalDialog-content {
      border-radius: 4px;
  }
}

.prd-modalDialog.of-full .prd-modalDialog-content {
  max-width: none;
}

@media (min-width: 1px) {
  .prd-modalDialog.of-full .prd-modalDialog-content {
      border-radius: 0;
  }
}

.prd-modalDialog[aria-hidden=true] .prd-modalDialog-content {
  opacity: 0;
  transform: translateY(20px) scale(.9);
}

.prd-modalDialog-contentInner {
  transition: opacity .4s cubic-bezier(.4, 0, .2, 1) .2s;
}

.prd-modalDialog[aria-hidden=true] .prd-modalDialog-contentInner {
  opacity: 0;
  transition: opacity .2s cubic-bezier(.4, 0, .2, 1);
}

.prd-modalDialog-thumbnailOuter {
  padding: 0;
  border: none;
  background: none;
}

.prd-modalDialog-thumbnail {
  display: block;
  position: relative
}

.prd-modalDialog-thumbnail > img {
  max-width: 100%;
  width: 100%;
}

.prd-modalDialog-thumbnail::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("/img/landing_page/req/general/lp_sales-internship_01191645/lp_sales-internship_01191645_btn-icon_01.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}