﻿:root {
  --blue: #14337b;
  --text: #444444;
  --dark: #26292e;
  --cyan: #30c9cd;
  --violet: #330d69;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #ffffff;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sp-only {
  display: none;
}

.container {
  width: min(var(--container), calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.logo {
  width: 98px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 60px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.global-nav a {
  position: relative;
}

.global-nav a:not(.contact-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #ffffff;
  opacity: 0;
  transform: translateY(-50%);
}

.contact-link {
  min-width: 223px;
  height: 74px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  display: grid;
  place-items: center;
}

.menu-button {
  width: 30px;
  height: 20px;
  display: grid;
  gap: 6px;
  border: 0;
  padding: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  background: #ffffff;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-image: url("https://linxas.company/wp-content/uploads/2026/05/about/fd5d8d88-eded-43b0-bcbe-7330f43caaab.png");
  background-size: cover;
  background-position: center top;
}

.hero-inner {
  position: absolute;
  left: calc(50% - 680px);
  top: 130px;
  width: 660px;
}

.hero-title-row {
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 72px;
  line-height: 1.8;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #2580b3, #cbbacc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-row span {
  flex: 1;
  height: 2px;
  margin-left: 40px;
  background: linear-gradient(90deg, #47b8b5, #604486);
}

.hero-inner > p {
  margin: 0;
  width: 660px;
  padding: 30px;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  color: var(--blue);
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.section-label {
  display: grid;
  gap: 5px;
}

.section-label.centered {
  justify-items: center;
  text-align: center;
}

.label-en {
  display: inline-block;
  justify-self: start;
  width: max-content;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 3.45px;
  line-height: 1.2;
  color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-label.centered .label-en {
  justify-self: center;
}

.label-en.large {
  font-size: 35px;
  letter-spacing: 5.25px;
}

.label-ja {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #444444;
}

.body-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.28px;
}

.body-copy p {
  margin: 0;
}

.philosophy {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #f7fbfe;
}

.philosophy-bg {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0)),
    url("https://linxas.company/wp-content/uploads/2026/05/about/32bf30e7-9c26-47c8-a87c-2979c45bc711.png") center / cover;
}

.philosophy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(270deg, #ffffff, rgba(255,255,255,0.08));
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  padding-top: 78px;
}

.philosophy h2 {
  margin: 16px 0 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 51.023px;
  color: var(--blue);
  letter-spacing: 0.7px;
}

.philosophy .body-copy {
  width: 574px;
  font-size: 12px;
  font-weight: 500;
}

.message {
  padding: 77px 0 78px;
  background: #ffffff;
}

.message-grid {
  display: grid;
  grid-template-columns: 480px 574px;
  gap: 44px;
  align-items: start;
}

.message-photo {
  height: 650px;
  overflow: hidden;
}

.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.message h2 {
  margin: 15px 0 30px;
  color: var(--blue);
  font-size: 35px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.7px;
}

.signature {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
  margin: 20px 0 0;
  color: #26292e;
}

.signature span {
  color: #444446;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24px;
}

.signature strong {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.76px;
}

.values {
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 50% 50%, #e6f2ff 0, #f4fbfe 44%, #f6fafe 100%);
}

.values-lead {
  margin: 18px auto 26px;
  width: 574px;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
  letter-spacing: 0.28px;
}

.values-lead span {
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 175px);
  gap: 10px;
  justify-content: center;
}

.value-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(80, 168, 223, 0.3);
}

.value-card-small {
  width: auto;
  grid-column: span 2;
}

.value-card-wide {
  width: auto;
  grid-column: span 3;
  min-height: 380px;
}

.value-card-wide:nth-child(4) {
  grid-column: 1 / span 3;
  grid-row: 2;
}

.value-card-wide:nth-child(5) {
  grid-column: 4 / span 3;
  grid-row: 2;
  margin-top: 0;
}

.value-content {
  position: relative;
  z-index: 2;
  padding: 20px 15px;
  width: 270px;
}

.value-card-wide .value-content {
  width: 360px;
}

.value-number {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 1;
}

.value-en {
  margin: 0 0 4px;
  color: #444446;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.48px;
}

.value-card h3 {
  margin: 0 0 10px;
  color: #373737;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.value-body {
  margin: 0;
  color: var(--dark);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.24px;
  text-shadow: 1px 0 5px #ffffff;
}

.value-body span {
  display: block;
}

  .value-img {
    position: absolute;
    z-index: 1;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.img-01 {
  right: 0;
  bottom: 0;
  width: 168px;
  height: 400px;
}

.img-02 {
  right: 0;
  bottom: 0;
  width: 168px;
  height: 400px;
}

.img-03 {
  right: 0;
  bottom: 0;
  width: 168px;
  height: 400px;
}

.img-04 {
  right: 0;
  bottom: 0;
  width: 366px;
  height: 381px;
}

.img-05 {
  right: 0;
  bottom: 0;
  width: 366px;
  height: 381px;
}

.promise {
  height: 445px;
  margin: 5px 0;
  padding: 70px 0 0;
  background-image: url("https://linxas.company/wp-content/uploads/2026/05/about/promise-bg-composite.png");
  background-size: cover;
  background-position: center bottom;
  text-align: center;
}

.promise-heading {
  margin: 28px 0 20px;
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.7px;
}

.promise-copy {
  margin: 0;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.28px;
}

.promise-copy span {
  display: block;
}

.promise-emphasis {
  display: block;
  margin-top: 32px;
  margin-bottom: 0;
  color: #373737;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 5.6px;
  transform: skewX(-8deg) scaleY(0.99);
}

.inside-linxas {
  margin-bottom: 5px;
  padding: 80px 0;
  background: #f6fafe;
}

.inside-linxas-inner {
  display: grid;
  grid-template-columns: 590px 468px;
  gap: 41px;
  align-items: center;
  justify-content: center;
}

.inside-media {
  position: relative;
  overflow: hidden;
  width: 590px;
  aspect-ratio: 590 / 335;
  border-radius: 3.4px;
  box-shadow: 0 4px 16px rgba(20, 51, 123, 0.12);
  background: #e9f0f7;
}

.inside-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inside-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.inside-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 51, 123, 0.18);
}

.inside-play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid var(--blue);
}

.inside-media.is-playing .inside-play {
  display: none;
}

.inside-media.is-playing .inside-poster {
  display: none;
}

.inside-text {
  width: 468px;
}

.inside-text h2 {
  margin: 14px 0 12px;
  color: var(--blue);
  font-size: 35px;
  font-weight: 500;
  line-height: 51.023px;
  letter-spacing: 0.7px;
}

.inside-text > p {
  margin: 0;
  color: #444444;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.28px;
}

.cta {
  position: relative;
  padding: 60px 40px;
  background-image: url("https://linxas.company/wp-content/uploads/2026/05/about/cta-section-bg.png");
  background-size: cover;
  background-position: center;
}

.cta-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 665px));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.cta-card {
  position: relative;
  min-height: 407px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: #ffffff;
  text-align: center;
  isolation: isolate;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 51, 123, 0.22);
}

.service-card::before {
  background-image: url("https://linxas.company/wp-content/uploads/2026/05/about/cta-service-bg.png");
}

.contact-card::before {
  background-image: url("https://linxas.company/wp-content/uploads/2026/05/about/cta-contact-bg.png");
}

.cta-title {
  font-family: "Outfit", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.cta-ja {
  margin-top: 20px;
  font-family: "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 1px;
}

.cta-text {
  margin-top: 30px;
  font-family: "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 1px;
}

.cta-button {
  margin-top: 40px;
  min-width: 220px;
  padding: 22px 62px;
  border: 2px solid #ffffff;
  border-radius: 30px;
  background: rgba(37, 128, 179, 0.3);
  font-family: "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1px;
}

.cta-button::after {
  content: "\2192";
  margin-left: 16px;
}

.site-footer {
  color: #ffffff;
  text-align: center;
}

.footer-main {
  display: grid;
  justify-items: center;
  padding: 60px 40px;
  background: linear-gradient(180deg, #647da9 0, #1365a1 50%, #0c509a 100%);
}

.footer-main img {
  width: 98px;
  margin-bottom: 29px;
}

.footer-main p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1px;
}

.footer-main nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.copyright {
  padding: 15px 40px;
  background: #373737;
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 1px;
  font-weight: 700;
}

@media (max-width: 900px) {
  html,
  body {
    scrollbar-width: none;
  }

  .value-card picture {
    display: contents;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
  }

  .container {
    width: calc(100% - 40px);
  }

  .sp-only {
    display: inline;
  }

  .site-header {
    height: 76px;
    padding: 15px 20px;
    background: linear-gradient(90deg, #ffffff 0, rgba(255,255,255,0.9) 48%, rgba(255,255,255,0.34) 68%, rgba(255,255,255,0) 88%);
    box-shadow: none;
  }

  .logo {
    width: 68px;
  }

  .global-nav {
    gap: 15px;
  }

  .global-nav a:not(.contact-link) {
    display: none;
  }

  .contact-link {
    position: relative;
    min-width: 35px;
    width: 35px;
    height: 30px;
    border: 2px solid #ffffff;
    display: grid;
    place-items: center;
    font-size: 0;
  }

  .contact-link::before {
    content: "";
    width: 15px;
    height: 11px;
    border: 2px solid #ffffff;
    border-radius: 1px;
    background: linear-gradient(90deg, #ffffff 0, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.28) 70%, rgba(255,255,255,0) 88%);
  }

  .contact-link::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    width: 11px;
    height: 8px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg) skew(12deg, 12deg);
    transform-origin: center;
  }

  .menu-button {
    width: 30px;
    height: 20px;
    gap: 6px;
  }

  .menu-button span {
    height: 3px;
    margin-left: auto;
  }

  .menu-button span:nth-child(1) {
    width: 20px;
  }

  .menu-button span:nth-child(2) {
    width: 25px;
  }

  .menu-button span:nth-child(3) {
    width: 30px;
  }

  .hero {
    height: 350px;
    background-size: auto 350px;
    background-position: center top;
  }

  .hero-inner {
    left: 20px;
    right: 20px;
    top: 84.8px;
    width: auto;
  }

  .hero-title-row {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 50px;
    line-height: 86.4px;
    letter-spacing: 1px;
    text-transform: none;
  }

  .hero-title-row span {
    width: 270px;
    flex: none;
    margin-left: 0;
  }

  .hero-inner > p {
    width: 270px;
    margin: 20px auto 0;
    padding: 21px;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 1px;
  }

  .section-label {
    gap: 5px;
  }

  .label-en {
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 2.4px;
  }

  .label-en.large {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 2.4px;
  }

  .label-ja {
    font-size: 10px;
    line-height: 15.4px;
    letter-spacing: 0.6px;
  }

  .body-copy {
    font-size: 10.8px;
    line-height: 1.95;
    letter-spacing: 0.22px;
  }

  .philosophy {
    height: auto;
    min-height: 356px;
    padding-bottom: 34px;
    background: #fdfdfe;
  }

  .philosophy-bg {
    top: 0;
    /* height: 356px; */
    padding-bottom: 34px;
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
      url("https://linxas.company/wp-content/uploads/2026/05/about/philosophy-sp-user.png") right bottom / 375px auto no-repeat;
  }

  .philosophy::after {
    content: none;
  }

  .philosophy-inner {
    padding-top: 40px;
  }

  .philosophy h2,
  .message h2,
  .promise-heading {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.4px;
  }

  .philosophy h2 {
    margin: 16px 0 20px;
  }

  .philosophy .body-copy {
    width: 335px;
    max-width: 100%;
    font-size: 10.8px;
    line-height: 1.95;
  }

  .message {
    padding: 40px 0 45px;
  }

  .message-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .message-photo {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 335 / 185;
    border-radius: 0;
  }

  .message-photo img {
    object-position: center 45%;
  }

  .message-text {
    order: 1;
  }

  .message h2 {
    margin: 10px 0 20px;
  }

  .message .body-copy {
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0;
  }

  .signature {
    margin-top: 16px;
  }

  .signature span {
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.2px;
  }

  .signature strong {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.64px;
  }

  .values {
    padding: 40px 0 47px;
    background: linear-gradient(180deg, #f7fbfe 0, #eef8ff 48%, #f7fbfe 100%);
  }

  .values .section-label.centered,
  .promise .section-label.centered {
    justify-items: start;
    text-align: left;
  }

  .values .section-label.centered .label-en,
  .promise .section-label.centered .label-en {
    justify-self: start;
  }

  .values-lead {
    width: min(337px, calc(100vw - 38px));
    margin: 12px 0 28px;
    font-size: 13px;
    line-height: 26px;
    text-align: left;
    letter-spacing: 0;
  }

  .values-lead span {
    display: block;
  }

  .values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-card,
  .value-card-small,
  .value-card-wide,
  .value-card-wide:nth-child(4),
  .value-card-wide:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin-top: 0;
    border-radius: 5px;
  }

  .value-card:nth-child(1) {
    min-height: 320px;
  }

  .value-card:nth-child(2) {
    min-height: 349px;
  }

  .value-card:nth-child(3),
  .value-card:nth-child(4) {
    min-height: 327px;
  }

  .value-card:nth-child(5) {
    min-height: 305px;
  }

  .value-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
    pointer-events: none;
  }

  .value-card:nth-child(4)::after,
  .value-card:nth-child(5)::after {
    content: none;
  }

  .value-content,
  .value-card-wide .value-content {
    width: 255px;
    padding: 20px 15px;
  }

  .value-card:nth-child(5) .value-content {
    width: 305px;
    padding-bottom: 14px;
  }

  .value-card:nth-child(5) h3 {
    font-size: 17px;
    letter-spacing: 0.12px;
    white-space: nowrap;
  }

  .value-number {
    margin-bottom: 5px;
    font-size: 35px;
    line-height: 38px;
  }

  .value-en {
    margin-bottom: 3px;
    font-size: 10px;
    letter-spacing: 0.4px;
  }

  .value-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.36px;
    white-space: normal;
  }

  .value-body {
    font-size: 10.8px;
    line-height: 1.95;
    letter-spacing: 0.22px;
  }

  .value-body span {
    display: block;
  }

  .value-img {
    z-index: 0;
    max-width: none;
  }

  .img-01 {
    right: 0;
    bottom: 0;
    width: 168px;
    height: 400px;
    object-fit: cover;
    opacity: 1;
  }

  .img-02 {
    right: -24px;
    bottom: 0;
    width: 168px;
    height: 400px;
    object-fit: cover;
    opacity: 1;
  }

  .img-03 {
    right: -8px;
    bottom: 0;
    width: 168px;
    height: 400px;
    object-fit: cover;
    opacity: 1;
  }

  .img-04 {
    right: 0;
    bottom: 0;
    width: 245px;
    height: auto;
    object-fit: contain;
    opacity: 1;
  }

  .img-05 {
    right: 0;
    bottom: 0;
    width: 245px;
    height: auto;
    object-fit: contain;
    opacity: 1;
  }

  .value-card:nth-child(5) .value-body {
    width: 248px;
  }

  .promise {
    height: auto;
    min-height: 360px;
    margin: 3px 0;
    padding: 40px 0 27px;
    background-image: url("https://linxas.company/wp-content/uploads/2026/05/about/sp-promise-bg-figma.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .promise-heading {
    width: min(100%, 272px);
    margin: 21px 0 20px;
  }

  .promise-copy {
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: left;
  }

  .promise-copy span {
    display: block;
  }

  .promise-emphasis {
    margin-top: 6px;
    font-size: 25px;
    line-height: 44.85px;
    letter-spacing: 3.5px;
    text-align: right;
  }

  .inside-linxas {
    margin-bottom: 3px;
    padding: 40px 0;
  }

  .inside-linxas-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .inside-media {
    order: 2;
    width: 100%;
    aspect-ratio: 335 / 190;
    border-radius: 3px;
  }

  .inside-play {
    width: 60px;
    height: 60px;
  }

  .inside-play span {
    margin-left: 5px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 15px;
  }

  .inside-text {
    order: 1;
    width: 100%;
  }

  .inside-text h2 {
    margin: 10px 0 16px;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.4px;
  }

  .inside-text > p {
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0;
  }

  .cta {
    padding: 40px 20px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-card {
    min-height: 305px;
    border-radius: 10px;
    padding: 32px 30px;
  }

  .cta-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .cta-ja {
    margin-top: 10px;
    font-size: 16px;
    line-height: 16px;
  }

  .cta-text {
    margin-top: 19px;
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: 1px;
  }

  .cta-button {
    margin-top: 20px;
    min-width: 0;
    padding: 16px 42px;
    font-size: 14px;
    line-height: 1;
  }

  .footer-main {
    padding: 44px 20px;
  }

  .footer-main img {
    width: 78px;
    margin-bottom: 19px;
  }

  .footer-main p {
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: 1px;
  }

  .footer-main nav {
    flex-wrap: wrap;
    gap: 15px 20px;
    width: 335px;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .copyright {
    padding: 14.5px 20px;
    font-size: 12.8px;
    line-height: 23.4px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(335px, calc(100vw - 40px));
  }
}
