:root {
  --text-dark: #252525;
  --orange-dark: #fd6622;
  --white: white;
  --orange: #ff7617;
  --red: #e40155;
}

::-moz-selection {
  background: rgba(255,173,116,0.4) !important;
  color: currentColor !important;
}

::selection {
  background: rgba(255,173,116,0.4) !important;
  color: currentColor !important;
}

body {
  min-width: 0 !important;
}

.inline-block {
  max-width: 100%;
  display: inline-block;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

h1.hero__title-desktop, h1.hero__title-mobile {
  letter-spacing: -.01em;
  margin-top: 20px !important;
  margin-bottom: 32px !important;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.6em;
}

a {
  color: var(--text-dark) !important;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--orange-dark) !important;
}

.header {
  z-index: 10;
  padding-top: 8px;
  padding-bottom: 8px;
  position: absolute;
  inset: 0% 0% auto;
}

.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.container.container--1140 {
  /* max-width: 1060px; */
  max-width: 1140px;
}

.header__nav {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section.section--intro {
  background-color: var(--white);
  background-image: url('../images/intro-bg.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  padding-bottom: 120px;
  position: relative;
}

.section.section--feature {
  background-color: var(--white);
  background-image: url('../images/feature-bg.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.section.section--vision {
  background-color: var(--white);
  background-image: url('../images/vision-bg.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.section.section--entry {
  background-color: var(--white);
  color: var(--white);
  background-image: url('../images/entry-bg.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section.section--product {
  background-color: var(--white);
  background-image: url('../images/vision-bg.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.section.section--message {
  background-color: var(--white);
  color: var(--white);
  background-image: url('../images/message-bg-new.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.section.section--about {
  background-color: var(--white);
  background-image: url('../images/about-bg.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.header__nav-menu {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.body {
  color: var(--text-dark);
  font-family: Noto Sans JP, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  min-width: 0 !important;
}

/* Button */

.button {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--orange);
  color: var(--white) !important;
  border: 1px solid  var(--orange);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.button__label {
  z-index: 1;
  position: relative;
}

.button__icon {
  z-index: 1;
  color: white;
  background-color: #FF9F5D;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  position: relative;
  transition: all .2s, color .2s;
}

.button__hover-shape {
  aspect-ratio: 1;
  background-color: var(--white);
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  position: absolute;
  left: 0;
  transform: scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.button:hover {
  color: var(--orange);
}

.button:hover .button__icon {
  background-color: #FFD6B9;
  color: var(--orange);
}

.button:hover .button__hover-shape {
  transform: scale(1);
  opacity: 1;
}

/* Button with icon / compact */

.button.button--with-icon, .button.button--with-icon-compact {
  padding-right: 16px;
  transition: background-color .2s, color .2s;
}

.button.button--with-icon-compact {
  font-size: 14px;
}

/* Button secondary */

.button.button--secondary {
  background-color: var(--white);
  color: var(--text-dark) !important;
  border: 1px solid #006cb066;
}

.button__icon.button__icon--secondary {
  color: #006CB0;
  background-color: #54b4e033;
}

.button.button--secondary .button__hover-shape {
  background-color: #EBF6FA;
}

.button.button--secondary:hover {
  color: #006CB0;
}

.button.button--secondary:hover .button__icon--secondary {
  color: #006CB0;
  background-color: #CDE9F5;
}

/* Button tertiary */

.button.button--tertiary {
  background-color: var(--white);
  color: var(--text-dark) !important;
}

.button__icon.button__icon--tertiary {
  color: white;
  background-color: var(--orange);
}

.button.button--tertiary .button__hover-shape {
  background-color: var(--orange);
}

.button.button--tertiary:hover {
  color: var(--white) !important;
}

.button.button--tertiary:hover .button__icon--tertiary {
  color: var(--white);
  background-color: #FF9F5D;
}

/* Hero */

.hero {
  z-index: 2;
  padding-top: 160px;
  position: relative;
}

.hero__title-desktop {
  text-align: center;
  margin-top: 0;
  margin-bottom: 32px;
}

.text-orange {
  color: var(--orange);
}

.hero__inner {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero__strip {
  position: relative;
  margin-top: 56px;
  margin-bottom: 176px;
  height: 448px;
  white-space: nowrap;
  z-index: 2;
}

.hero__strip-image {
  display: inline;
  height: 100%;
  width: auto;
  max-width: none;
}

.wim__content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 72px;
  display: flex;
  position: relative;
  z-index: 2;
}

.wim__title {
  color: var(--orange);
  letter-spacing: -.1px;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Poppins, sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1.5em;
  position: absolute;
  inset: 0% 0% auto auto;
}

.hero__shapes-fg {
  z-index: 3;
  aspect-ratio: 180 / 83;
  background-image: url('../images/hero-shapes-fg.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.hero__shapes-mg {
  z-index: 2;
  aspect-ratio: 180 / 83;
  background-image: url('../images/hero-shapes-mg.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.hero__shapes-bg {
  z-index: 1;
  aspect-ratio: 180 / 83;
  background-image: url('../images/hero-shapes-bg.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.wim__subtitle {
  letter-spacing: .4px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5em;
}

.wim__para {
  letter-spacing: .4px;
  line-height: 2.5em;
  font-weight: 500;
}

.wim__illustration {
  justify-content: center;
  align-items: flex-end;
  max-width: 440px;
  display: flex;
}

.wim__illustration-image {
  object-fit: contain;
  width: 100%;
}

.wim__text {
  z-index: 2;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 650px;
  padding-top: 160px;
  display: flex;
  position: relative;
}

.hero__title-mobile {
  text-align: center;
  margin-top: 0;
  margin-bottom: 32px;
  display: none;
}

.hero__shapes-desktop {
  z-index: 1;
  aspect-ratio: 180 / 83;
  width: 100%;
  min-width: 1440px;
  max-width: 1805px;
  height: 827px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0%;
  left: 50%;
  right: 0%;
  transform: translate(-50%);
}

.hero__shapes-mobile {
  z-index: 1;
  aspect-ratio: 180 / 83;
  width: 100%;
  min-width: 1440px;
  max-width: 1805px;
  height: 827px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  top: 0%;
  left: 50%;
  right: 0%;
  transform: translate(-50%);
}

.wrap-line {
  display: block;
}

.wrap-line.flow-desktop {
  display: inline;
}

.main {
  position: relative;
  overflow: hidden;
}

.wim__three-col {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.wim__three-col-item-1, .wim__three-col-item-2, .wim__three-col-item-3 {
  flex: 1
}

.wim__three-col-item-image {
  border-radius: 16px;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.wim__three-col-item-image-img {
  width: 100%;
}

.wim__three-col-item-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.6em;
  font-weight: 700;
}

.text-14 {
  font-size: 14px;
}

.wim__footer {
  padding-top: 120px;
  position: relative;
}

.wim__footer-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.6em;
}

.wim__footer-para {
  text-align: center;
}

.wim__footer-deco-title {
  z-index: 1;
  opacity: .15;
  filter: blur(4px);
  color: #ff7617;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 180px;
  line-height: 1em;
  font-weight: 700;
  position: absolute;
  inset: 0% auto auto -29%;
}

.wim__footer-content {
  z-index: 2;
  position: relative;
}

.wim__three-col-item-2 {
  margin-top: 80px;
}

.wim__three-col-item-3 {
  margin-top: 160px;
}

.eyebrow {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.eyebrow.eyebrow--dot {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.eyebrow__text-en {
  color: var(--orange);
  letter-spacing: -.1px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5em;
}

.eyebrow__text-en.eyebrow__text-en-sm {
  font-size: 16px;
}

.eyebrow__text-en.eyebrow__text-en-lg {
  font-size: 32px;
}

.eyebrow__text-en.eyebrow__text--white {
  color: var(--white);
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.eyebrow__text-ja {
  color: var(--orange);
  letter-spacing: .4px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700 !important;
  line-height: 1.5em;
}

.eyebrow__text-ja.eyebrow__text-ja--white {
  color: var(--white);
}

.feature__title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5em;
}

.feature__para {
  /* max-width: 658px; */
  margin-bottom: 64px;
}

.feature__two-col {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 64px;
  display: flex;
}

.feature__two-col-left {
  flex: 60%;
}

.feature__two-col-right {
  flex: 50%;
}

.feature__experience-image {
  border-radius: 16px;
  overflow: hidden;
}

.eyebrow__dot {
  background-color: var(--orange);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.feature__two-col-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.6em;
  font-weight: 700;
}

.feature__two-col-para {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
}

.feature__test-process-image {
  border: 1px solid #006cb0;
  border-radius: 16px;
  overflow: hidden;
}

.feature__strip {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  height: 448px;
  white-space: nowrap;
  z-index: 2;
}

.feature__strip-image {
  display: inline;
  height: 100%;
  width: auto;
  max-width: none;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.margin-bottom-24 {
  margin-bottom: 24px !important;
}

.vision__title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5em;
}

.vision__para {
  margin-bottom: 64px;
}

.vision__card {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  background-color: #fff9;
  border-radius: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  padding: 34px 24px;
  display: flex;
  position: relative;
}

.vision__card-left {
  flex: 70%;
}

.vision__card-image-label-text {
	writing-mode: vertical-rl;
  text-orientation: mixed;
}

.vision__card-image {
  border-radius: 16px;
  display: flex;
  overflow: hidden;
}

.vision__card-right {
  flex: 50%;
  padding-right: 24px;
}

.vision__card-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.6em;
  font-weight: 700;
}

.vision__card-para {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.vision__card-number {
  color: #ff76171a;
  letter-spacing: -.1px;
  font-family: Poppins, sans-serif;
  font-size: 200px;
  font-weight: 500;
  line-height: 1em;
  position: absolute;
  inset: auto 40px 4px auto;
}

.vision__card-image-wrap {
  display: flex;
}

.vision__card-image-label-text {
  color: var(--orange);
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
}

.entry__title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.6em;
}

.entry__para {
  margin-bottom: 80px;
  font-size: 14px;
}

.entry__two-col {
  display: flex;
  gap: 70px;
}

.entry__col-left {
  display: flex;
  flex-direction: column;
  flex: 0 50%;
  align-items: flex-start;
  justify-content: center;
  max-width: 440px;
}

.entry__col-right {
  position: relative;
  flex: 0 50%;
  height: 440px;
  min-height: 440px;
}

.entry__strip {
  position: absolute;
  margin-top: 0;
  margin-bottom: 0;
  width: 2720px;
  height: 440px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
}

.entry__strip-image {
  display: inline;
  height: 100%;
  width: auto;
  max-width: none;
}

.entry__strip-image {
  width: auto;
  height: 100%;
}

.product__title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5em;
}

.product__para {
  margin-bottom: 32px;
}

.product__artwork-wrap {
  height: 765px;
  z-index: 2;
  /* aspect-ratio: 76 / 51; */
  position: relative;
}

.product__link-list {
  z-index: 2;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  width: 100%;
  max-width: 400px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.product__link {
  color: #006cb0;
  background-color: #fff9;
  border: 1px solid #006cb066;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.product__link:hover {
  color: #006cb0 !important;
}

.product__link__hover-shape {
  aspect-ratio: 1;
  background-color: #EBF6FA;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.product__link:hover .product__link__hover-shape {
  transform: scale(1);
  opacity: 1;
}

.product__link .product__link-label,
.product__link .product__link-logo,
.product__link .button__icon {
  z-index: 2;
  position: relative;
}

.product__link-label {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.product__artwork {
  display: block;
  z-index: 1;
  max-width: 769px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.product__artwork--mobile {
  display: none;
}

.product__video-wrap {
  z-index: 2;
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.product__video-left {
  flex: auto;
  max-width: 440px;
}

.product__video-right {
  flex: auto;
  max-width: 550px;
}

.product__video-thumbnail {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.product__video-play-button {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  cursor: pointer;
}

.product__video-play-button-control {
  border-radius: 50%;
  box-shadow: 0 0 40px #00000026;
  transition: all 0.2s ease-out;
}

.product__video-play-button:hover .product__video-play-button-control {
  box-shadow: 0 0 60px rgba(0,157,255,0.4);
  transform: scale(1.05);
}

.product__video {
  padding-top: 128px;
  position: relative;
}

.product__deco-title {
  z-index: 1;
  opacity: .4;
  filter: blur(4px);
  color: var(--white);
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 180px;
  line-height: 1em;
  font-weight: 700;
  position: absolute;
  inset: -29% auto auto -9%;
}

.message {
  position: relative;
}

.message__content {
  display: block;
}

.message__col-left {
  flex: 0 50%;
  max-width: 440px;
}

.message__title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.5em;
}

.message__para {
  margin-bottom: 80px;
  width: 100%;
  font-size: 20px;
  line-height: 2.5em;
}

.message__artwork {
  max-width: 335px;
  position: absolute;
  inset: 224px 0% auto auto;
}

.message__entry-card {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 16px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
  padding: 34px 80px 34px 0;
  display: flex;
  position: relative;
  z-index: 2;
}

.message__card-left {
  flex: auto;
  max-width: 550px;
  overflow: hidden;
}

.message__card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: auto;
  max-width: 440px;
}

.message__card-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1.6em;
  font-weight: 700;
}

.message__card-para {
  margin-bottom: 50px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
}

.message__strip {
  height: 100%;
  position: relative;
}

.message__strip {
  margin-top: 0;
  margin-bottom: 0;
  height: 440px;
  white-space: nowrap;
  overflow: hidden;
}

.message__strip-image {
  display: inline;
  position: absolute;
  height: 100%;
  width: auto;
  max-width: none;
}

.message__strip-image {
  width: auto;
  height: 100%;
}

.message__strip-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: auto;
  max-width: none;
  height: 100%;
  position: relative;
  transform: translate(-25%);
}

.message__deco-title {
  z-index: 1;
  opacity: .15;
  filter: blur(4px);
  color: var(--white);
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 180px;
  line-height: 1em;
  font-weight: 700;
  position: absolute;
  inset: auto auto -161px -2%;
}

.about__title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.6em;
}

.about__para {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 2.2em;
  letter-spacing: 0.4px;
}

.about__two-col {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  display: flex;
  align-items: center;
}

.about__col-left {
  flex: 0 50%;
  max-width: 530px;
}

.about__col-right {
  flex: 0 50%;
  overflow: hidden;
}

.about__image-wrap {
  border-radius: 16px;
  overflow: hidden;
}

/* Footer customisations */

#footer #pagetop {
  display: none;
}

#footer {
  color: #393939;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  min-width: 980px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Footer responsive */
@media screen and (max-width: 991px) {
  #footer.ai-recruit-lp-footer {
    min-width: 0 !important;
  }

  #footer.ai-recruit-lp-footer .inner {
    width: auto !important;
    padding: 0 40px 40px;
  }

  #footer.ai-recruit-lp-footer .footerMenu .footerNavGroup {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: auto;
    border-right: none;
  }

  #footer.ai-recruit-lp-footer .footerMenu .footerNavGroup.clearfix:before,
  #footer.ai-recruit-lp-footer .footerMenu .footerNavGroup.clearfix:after,
  #footer.ai-recruit-lp-footer .footerMenu.clearfix:before,
  #footer.ai-recruit-lp-footer .footerMenu.clearfix:after {
    display: none !important;
  }

  #footer.ai-recruit-lp-footer .footerMenu .footerNavGroup li {
    float: none !important;
  }

  #footer.ai-recruit-lp-footer .footerMenu {
    display: flex;
    flex-direction: column-reverse;
    gap: 100px;
  }

  #footer.ai-recruit-lp-footer .footerMenu .companyBlock {
    position: relative;
    border-left: none;
    padding-left: 0;
  }

  #footer.ai-recruit-lp-footer .companyBlock2 {
    padding-left: 40px;
    padding-right: 40px;
  }

  #footer.ai-recruit-lp-footer .organizationList {
    flex-wrap: wrap;
    height: auto !important;
  }

  #footer.ai-recruit-lp-footer .organizationList li {
    height: 120px;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 767px) {
  #footer.ai-recruit-lp-footer .inner {
    width: auto !important;
    padding: 0 30px 30px;
  }

  #footer.ai-recruit-lp-footer .organizationList li {
    height: 100px;
    flex-shrink: 0;
  }

  #footer.ai-recruit-lp-footer .companyBlock2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 479px) {
  #footer.ai-recruit-lp-footer .inner {
    width: auto !important;
    padding: 0 20px 20px;
  }

  #footer.ai-recruit-lp-footer .organizationList li {
    height: 50px;
    flex-shrink: 0;
  }

  #footer.ai-recruit-lp-footer .companyBlock2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Page media queries */

@media screen and (max-width: 991px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header__brand {
    width: 186px;
  }

  .hero__title-desktop {
    font-size: 46px !important;
  }

  .wim__title {
    font-size: 76px;
  }

  .wim__subtitle {
    font-size: 28px;
  }

  .wim__illustration {
    justify-content: center;
    align-items: center;
  }

  .hero__title-mobile {
    font-size: 46px !important;
  }

  .hero__shapes-desktop, .hero__shapes-mobile {
    min-width: 1200px;
  }

  .hero__strip {
    margin-bottom: 100px;
  }

  .wrap-line.break-tablet {
    display: block;
  }

  .wrap-line.flow-tablet {
    display: inline;
  }

  .wim__footer-title {
    font-size: 36px;
  }

  .eyebrow {
    width: 100%;
  }

  .feature__title {
    font-size: 36px;
  }

  .feature__two-col {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .vision__title {
    font-size: 36px;
  }

  .vision__card {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .product__title {
    font-size: 36px !important;
  }

  .product__artwork-wrap {
    aspect-ratio: auto;
    height: 900px;
  }

  .product__link-list {
    max-width: 350px;
  }

  .product__link {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .product__link-logo {
    flex: 0 auto;
  }

  .product__video-play-button-control {
    width: 87px;
    height: 87px;
  }

  .message__card-right {
    padding-left: 24px;
    padding-right: 24px;
  }

  .message__content {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 96px;
    display: flex;
  }

  .message__title {
    width: 100%;
    font-size: 36px;
  }

  .message__artwork {
    position: relative;
    top: auto;
    right: auto;
  }

  .product__link-label-text {
    white-space: nowrap;
  }

  .message__entry-card {
    padding-right: 0;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column-reverse;
  }

  .message__card-left, .message__card-right {
    max-width: none;
  }

  .message__strip-image {
    transform: translate(0%);
  }

  .about__title {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.section--intro {
    background-size: cover;
    padding-bottom: 80px;
  }

  .section.section--feature, .section.section--vision {
    background-size: cover;
    padding-top: 80px;
  }

  .section.section--entry {
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.section--product {
    background-size: cover;
    padding-top: 80px;
  }

  .section.section--message, .section.section--about {
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .header__brand {
    width: 162px;
  }

  .hero__title-desktop {
    font-size: 36px !important;
  }

  .hero__strip {
    margin-bottom: 90px;
  }

  .wim__content {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .wim__title {
    white-space: normal;
    width: 100%;
    font-size: 66px;
    line-height: 1.2em;
    position: relative;
  }

  .wim__illustration {
    width: 66%;
    max-width: 330px;
  }

  .wim__text {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .header__nav-menu-link, .hide-mobilelg-and-below {
    display: none;
  }

  .hero__title-mobile {
    font-size: 36px !important;
  }

  .hero__shapes-desktop, .hero__shapes-mobile {
    min-width: 900px;
  }

  .wim__three-col {
    flex-flow: column;
  }

  .wim__footer-title {
    font-size: 34px;
  }

  .wim__three-col-item-2, .wim__three-col-item-3 {
    margin-top: 0;
  }

  .eyebrow {
    width: 100%;
  }

  .feature__title {
    font-size: 34px;
  }

  .feature__strip {
    margin-top: 0;
    margin-bottom: 0;
  }

  .vision__title, .product__title {
    font-size: 34px !important;
  }

  .vision__card-title {
    font-size: 20px;
  }

  .entry__two-col {
    flex-direction: column;
    gap: 70px;
  }

  .entry__strip {
    transform: translateX(-20px);
  }

  .product__artwork-wrap {
    height: auto;
  }

  .product__link-list {
    margin-bottom: 40px;
    position: relative;
  }

  .product__artwork {
    position: relative;
  }

  .product__video-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .product__video-left, .product__video-right {
    max-width: none;
  }

  .product__video-play-button-control {
    width: 68px;
    height: 68px;
  }

  .product__video {
    padding-top: 80px;
  }

  .message__card-right {
    padding-left: 24px;
  }

  .message__content {
    margin-bottom: 54px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .message__title {
    width: 100%;
    font-size: 34px;
  }

  .message__artwork {
    max-width: 220px;
  }

  .about__title {
    font-size: 34px;
  }

  .about__two-col {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__brand {
    width: 124px;
  }

  .button {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 13px;
  }

  .button.button--with-icon {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding-right: 12px;
  }

  .button.button--with-icon-compact {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding: 8px 8px 8px 16px;
  }

  .wrap-line.flow-mobile {
    display: inline;
  }

  .hero {
    padding-top: 140px;
  }

  .hero__title-desktop {
    font-size: 28px !important;
    display: none;
  }

  .hero__strip {
    height: 368px;
    margin-bottom: 80px;
  }

  .wim__title {
    font-size: 56px;
  }

  .wim__footer-deco-title {
    font-size: 96px;
    transform: translateY(60px);
  }

  .hero__shapes-fg {
    background-image: url('../images/hero-shapes-fg-mobile.png');
    height: 100%;
  }

  .hero__shapes-mg {
    background-image: url('../images/hero-shapes-mg-mobile.png');
    height: 100%;
  }

  .hero__shapes-bg {
    background-image: url('../images/hero-shapes-bg-mobile.png');
    height: 100%;
  }

  .wim__subtitle {
    font-size: 24px;
  }

  .wim__para {
    line-height: 1.8em;
  }

  .hero__title-mobile {
    font-size: 28px !important;
    display: block;
  }

  .hero__shapes-desktop {
    display: none;
  }

  .hero__shapes-mobile {
    min-width: 660px;
    max-width: 660px;
    height: 660px;
    display: block;
  }

  .wrap-line.break-mobile {
    display: block;
  }

  .wim__footer-title, .feature__title {
    font-size: 32px;
  }

  .feature__two-col-title {
    font-size: 20px;
  }

  .feature__strip {
    height: 344px;
  }

  .vision__title, .product__title {
    font-size: 32px !important;
  }

  .entry__title {
    font-size: 24px !important;
  }

  .vision__card-right {
    padding-right: 0;
  }

  .entry__para {
    margin-bottom: 32px;
  }

  .product__artwork-wrap {
    height: auto;
  }

  .product__link-list {
    max-width: none;
  }

  .product__artwork {
    display: none;
  }

  .product__artwork--mobile {
    display: block;
  }

  .product__deco-title {
    font-size: 120px;
  }

  .message__content {
    margin-bottom: 36px;
  }

  .message__title {
    font-size: 32px;
  }

  .message__para {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .message__entry-card {
    flex-flow: column-reverse;
  }

  .message__strip {
    height: 340px;
  }

  .message__strip-image {
    transform: translate(-25%);
  }

  .message__entry-card {
    padding-top: 64px;
    gap: 64px;
  }

  .message__card-title {
    font-size: 24px;
  }

  .message__card-para {
    margin-bottom: 32px;
  }

  .about__title {
    font-size: 32px;
  }

  .about__two-col {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

.scroll-left {
  animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.is-open {
  display: flex;
  opacity: 1;
}

.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.video-modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}

.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: 100%;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.is-open .video-modal__content {
  transform: scale(1);
}

.video-modal__content video {
  width: 100%;
  height: auto;
  display: block;
  outline: none;
}

.video-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-modal__close:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.video-modal__close:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .video-modal__container {
    padding: 20px;
  }
  
  .video-modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  
  .video-modal__close svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 479px) {
  .video-modal__container {
    padding: 15px;
  }
  
  .video-modal__content {
    border-radius: 4px;
  }
}
