/* ============================================
   Header Styles
   ============================================ */
.header {
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Raleway, Helvetica, sans-serif;
  background-color: var(--bg-color);
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0% 100%, 0% 3400%, 100% 0%, 0% 0%);
  background-color: var(--bg-color-invert);
  width: 33%;
  height: 100%;
  z-index: -1;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  height: 100%;
}


.header__logo.black-bg {
  background-color: var(--bg-color-invert);
}

.header__logo img {
  width: 160px;
  height: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header__nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.header__nav a {
  text-decoration: none;
  font-size: var(--font-size-body);
  font-weight: 900;
  transition: color 0.3s ease;
}

.header__lang-toggle {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.header__lang-toggle__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header__lang-toggle__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0 10px;
}

.header__lang-toggle__item.is-active {
  color: rgba(0, 0, 0, 0.5);
  cursor: default;
}

.header__lang-toggle__item:not(.is-active) a {
  color: var(--bg-color-invert);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header__lang-toggle__item:not(.is-active) a:hover {
  opacity: 0.7;
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background-color: var(--text-color-invert);
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__menu-toggle.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-toggle.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
    Section Styles
   ============================================ */
main {
  padding-top: 70px;
}


section {
  padding: 0 40px;
  max-width: 1280px;
  margin: 72px auto 0;
}

section .inner {
  margin: 0 auto;
}

section .inner h2 {
  font-size: var(--font-size-section-title);
}

section .inner p,
section .inner li {
  font-size: var(--font-size-body);
}

section .inner .item--title {
  font-size: var(--font-size-item-title);
  color: var(--text-color-invert);
}




  /* ============================================
   Image Styles
   ============================================ */
   .image {
    border-radius: 5px;
    border: 0;
    display: inline-block;
    position: relative;
  }

  .image img {
    border-radius: 5px;
    display: block;
  }

  .image.left, .image.right {
    max-width: 40%;
  }

  .image.left img, .image.right img {
    width: 100%;
  }

  .image.left {
    float: left;
    padding: 0 27px 18px 0;
    top: 5px;
  }

  .image.right {
    float: right;
    padding: 0 0 18px 27px;
    top: 5px;
  }

  .image.fit {
    display: block;
    margin: 0 0 36px 0;
    width: 100%;
  }

  .image.fit img {
    width: 100%;
  }

  .image.main {
    display: block;
    margin: 0 0 54px 0;
    width: 100%;
  }

  .image.main img {
    width: 100%;
  }

  .page--header {
    background-color: var(--bg-color-invert);
    padding: 0 40px;
  }

  .page--header .inner {
    padding: 54px 0 18px 0;
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
  }

  .page--header .inner::after {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    font-size: 128px;
    position: absolute;
    top: -64px;
    right: 0;
    height: 1px;
  }

  .page--title {
    font-weight: 900;
    font-size: var(--font-size-page-title);
    color: var(--text-color-invert);
    border-bottom: 1px solid #ccc;
  }

  @media screen and (max-width: 1024px) {
    .page--header .inner {
      padding: 36px 24px 18px;
      width: 100%;
    }

    .page--title {
      font-size: 30px;
    }
  }

  .section--title {
    font-size: var(--font-size-section-title);
    color: var(--text-color);
    margin-bottom: 18px;
  }


  /* ============================================
     Table Styles
     ============================================ */
  .table-wrapper {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }

  table {
    margin: 0 0 2em 0;
    width: 100%;
  }
  table tbody tr {
    border: solid 1px rgba(255, 255, 255, 0.125);
    border-left: 0;
    border-right: 0;
  }
  table tbody tr:nth-child(2n+1) {
    background-color: rgba(255, 255, 255, 0.025);
  }
  table td {
    padding: 0.75em 0.75em;
  }
  table th {
    color: var(--text-color);
    font-weight: 600;
    padding: 0 0.75em 0.75em 0.75em;
    text-align: left;
  }
  table th,
  table td {
    font-size: var(--font-size-body);
  }

  table.alt {
    border-collapse: separate;
  }
  table.alt tbody tr td {
    border: solid 1px rgba(255, 255, 255, 0.125);
    border-left-width: 0;
    border-top-width: 0;
  }
  table.alt tbody tr td:first-child {
    border-left-width: 1px;
  }
  table.alt tbody tr:first-child td {
    border-top-width: 1px;
  }
  table.alt thead {
    border-bottom: 0;
  }
  table.alt tfoot {
    border-top: 0;
  }

  /* ============================================
     Form Styles
     ============================================ */
  form {
    margin: 0 0 2em 0;
  }
  form > :last-child {
    margin-bottom: 0;
  }
  form > .fields {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 3em);
    margin: -1.5em 0 2em -1.5em;
  }
  form > .fields > .field {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    padding: 1.5em 0 0 1.5em;
    width: calc(100% - 1.5em);
  }
  form > .fields > .field.half {
    width: calc(50% - 0.75em);
  }
  form > .fields > .field.third {
    width: calc(100%/3 - 0.5em);
  }
  form > .fields > .field.quarter {
    width: calc(25% - 0.375em);
  }
  @media screen and (max-width: 480px) {
    form > .fields {
      width: calc(100% + 3em);
      margin: -1.5em 0 2em -1.5em;
    }
    form > .fields > .field {
      padding: 1.5em 0 0 1.5em;
      width: calc(100% - 1.5em);
    }
    form > .fields > .field.half {
      width: calc(100% - 1.5em);
    }
    form > .fields > .field.third {
      width: calc(100% - 1.5em);
    }
    form > .fields > .field.quarter {
      width: calc(100% - 1.5em);
    }
  }

  label {
    color: var(--text-color);
    display: block;
    font-family: Raleway, Helvetica, sans-serif;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 0.7em 0;
    text-transform: uppercase;
  }

  input[type=text],
  input[type=password],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.025);
    border-radius: 5px;
    border: none;
    border: solid 2px var(--border-color);
    color: inherit;
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    width: 100%;
  }
  input[type=text]:invalid,
  input[type=password]:invalid,
  input[type=email]:invalid,
  input[type=tel]:invalid,
  select:invalid,
  textarea:invalid {
    box-shadow: none;
  }
  input[type=text]:focus,
  input[type=password]:focus,
  input[type=email]:focus,
  input[type=tel]:focus,
  select:focus,
  textarea:focus {
    border-color: var(--secondary-accent-color);
  }

  select {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(255, 255, 255, 0.125)' /%3E%3C/svg%3E");
    background-size: 1.25rem;
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    height: 2.75em;
    padding-right: 2.75em;
    text-overflow: ellipsis;
  }
  select option {
    color: var(--text-color);
    background: #333333;
  }
  select:focus::-ms-value {
    background-color: transparent;
  }
  select::-ms-expand {
    display: none;
  }

  input[type=text],
  input[type=password],
  input[type=email],
  select {
    height: 2.75em;
  }

  textarea {
    padding: 0.75em 1em;
  }

  input[type=checkbox],
  input[type=radio] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
  }
  input[type=checkbox] + label,
  input[type=radio] + label {
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
    padding-left: 2rem;
    padding-right: 0.75rem;
    position: relative;
  }
  input[type=checkbox] + label:before,
  input[type=radio] + label:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }
  input[type=checkbox] + label:before,
  input[type=radio] + label:before {
    background: rgba(255, 255, 255, 0.025);
    border-radius: 5px;
    border: solid 2px rgba(255, 255, 255, 0.125);
    content: "";
    display: inline-block;
    font-size: 0.8em;
    height: 1.5rem;
    left: 0;
    line-height: 1.5rem;
    position: absolute;
    text-align: center;
    top: 0;
    width: 1.5rem;
    background: var(--bg-color);
    border-color: var(--border-color);
    color: var(--text-color);
  }
  input[type=checkbox]:checked + label:before,
  input[type=radio]:checked + label:before {
    content: "\f00c";
  }
  input[type=checkbox]:focus + label:before,
  input[type=radio]:focus + label:before {
    border-color: var(--secondary-accent-color);
  }

  input[type=checkbox] + label:before {
    border-radius: 5px;
  }

  input[type=radio] + label:before {
    border-radius: 100%;
  }

  ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
    opacity: 1;
  }

  :-moz-placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
    opacity: 1;
  }

  ::-moz-placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
    opacity: 1;
  }

  :-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
    opacity: 1;
  }

  input[type=submit],
  input[type=reset],
  input[type=button],
  button,
  .button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: transparent;
    border-radius: 5px;
    border: 0;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.125);
    color: var(--text-color);
    cursor: pointer;
    display: inline-block;
    font-family: Raleway, Helvetica, sans-serif;
    font-size: 0.8em;
    font-weight: 700;
    height: 3.75em;
    letter-spacing: 0.1em;
    line-height: 3.75em;
    padding: 0 2.25em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
  }
  input[type=submit]:hover,
  input[type=reset]:hover,
  input[type=button]:hover,
  button:hover,
  .button:hover {
    background-color: rgba(255, 255, 255, 0.025);
  }
  input[type=submit]:active,
  input[type=reset]:active,
  input[type=button]:active,
  button:active,
  .button:active {
    background-color: rgba(255, 255, 255, 0.075);
  }
  input[type=submit].icon:before,
  input[type=reset].icon:before,
  input[type=button].icon:before,
  button.icon:before,
  .button.icon:before {
    margin-right: 0.5em;
    color: rgba(255, 255, 255, 0.35);
  }
  input[type=submit].primary,
  input[type=reset].primary,
  input[type=button].primary,
  button.primary,
  .button.primary {
    background-color: #ffffff;
    box-shadow: none;
  }
  input[type=submit].primary:hover,
  input[type=reset].primary:hover,
  input[type=button].primary:hover,
  button.primary:hover,
  .button.primary:hover {
    background-color: white;
  }
  input[type=submit].primary:active,
  input[type=reset].primary:active,
  input[type=button].primary:active,
  button.primary:active,
  .button.primary:active {
    background-color: rgb(247.46475, 247.23525, 247.23525);
  }
  input[type=submit].primary.icon:before,
  input[type=reset].primary.icon:before,
  input[type=button].primary.icon:before,
  button.primary.icon:before,
  .button.primary.icon:before {
    color: rgb(195.5, 195.5, 195.5);
  }
  input[type=submit].fit,
  input[type=reset].fit,
  input[type=button].fit,
  button.fit,
  .button.fit {
    width: 100%;
  }
  input[type=submit].small,
  input[type=reset].small,
  input[type=button].small,
  button.small,
  .button.small {
    font-size: 0.6em;
  }
  input[type=submit].large,
  input[type=reset].large,
  input[type=button].large,
  button.large,
  .button.large {
    font-size: 1em;
  }
  input[type=submit].disabled, input[type=submit]:disabled,
  input[type=reset].disabled,
  input[type=reset]:disabled,
  input[type=button].disabled,
  input[type=button]:disabled,
  button.disabled,
  button:disabled,
  .button.disabled,
  .button:disabled {
    opacity: 0.25;
  }
  @media screen and (max-width: 480px) {
    input[type=submit],
    input[type=reset],
    input[type=button],
    button,
    .button {
      padding: 0;
    }
  }


  /* ============================================
     Footer Styles
     ============================================ */
  .footer {
    background-color: var(--bg-color-invert);
    color: var(--text-color-invert);
    margin: 117px 0 0 0;
    position: relative;
    padding-top: 54px;
    font-family: Raleway, Helvetica, sans-serif;
  }

  .footer .inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
  }

  .footer nav {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
  }

  .footer nav .logo {
    width: 200px;
  }

  .footer nav ul {
    display: flex;
    gap: 30px;
  }

  .footer nav ul li {
    list-style: none;
    font-size: var(--font-size-body);

  }

  .footer nav ul li a {
    color: var(--white) !important;
    font-weight: 400;
  }

  .footer .site-info {
    background-color: var(--white);
    font-size: var(--font-size-footer--site-info);
    line-height: 2;
  }

  .footer .site-info li {
    color: var(--text-color-invert);
    display: inline-block;
    font-size: var(--font-size-footer-body);
  }

  .footer .site-info li a {
    color: inherit;
    text-decoration: none;
  }

  .footer .copyright {
    border-top: solid 2px rgba(255, 255, 255, 0.125);
    margin: 16px auto 0;
    padding: 16px 0;
    width: 100%;
    text-align: center;
    font-size: var(--font-size-body);
  }

  /* ============================================
     Mobile Styles (Responsive Design)
     ============================================ */
  @media screen and (max-width: 1024px) {
    /* Header Mobile */
    .header {
      padding: 20px;
      background-color: var(--bg-color-invert);
    }

    .header__logo img {
      width: 160px;
    }

    .header__nav {
      display: none;
    }

    .header__menu-toggle {
      display: block;
    }

    .header {
      height: 70px;
    }

    main {
      padding-top: 69px;
    }

    /* Mobile Navigation */
    .mobile-nav--open {
      display: block !important;
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      height: calc(100vh - 70px);
      background-color: rgba(0, 0, 0, 0.95);
      z-index: 10000;
      animation: slideInMobileMenu 0.3s ease-out;
    }

    .mobile-nav--open .header__nav-menu {
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding-top: 60px;
      gap: 40px;
    }

    .mobile-nav--open a {
      font-size: 1rem;
      display: block;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
      color: var(--text-color-invert);
    }

    .mobile-nav--open a:hover {
      color: var(--accent-color);
      border-bottom-color: var(--accent-color);
    }

    body.mobile-menu-open {
      overflow: hidden;
    }

    .header__lang-toggle {
      margin-top: 40px;
      justify-content: center;
    }

    .header__lang-toggle__item.is-active {
      color: rgba(255, 255, 255, 0.5);
    }

    .header__lang-toggle__item:not(.is-active) a {
      color: var(--text-color-invert);
    }

    .header__lang-toggle__item:not(:last-child)::after {
      width: 1px;
      height: 14px;
      background-color: rgba(255, 255, 255, 0.3);
      margin: 0 10px;
    }

    .page--header {
      padding: 16px 0;
    }

    .page--header .inner::after {
      font-size: 64px;
      top: -32px;
    }

    section {
      padding: 0 24px;
      width: 100%;
      margin: 72px auto 0;
    }

    table td, table th {
      font-size: var(--font-size-body-mobile);
    }

    /* Footer Mobile */
    .footer {
      background-color: var(--bg-color-invert);
      background-size: auto, cover;
      background-position: center, center;
      margin-top: 45px;
      padding-top: 45px;
    }

    .footer .inner {
      padding: 0 16px;
      width: 100%;
    }

    .footer nav {
      display: block;
      margin: 45px;
    }

    .footer nav .logo {
      margin: 0 auto 45px;
    }

    .footer nav ul {
      display: flex;
      flex-wrap: wrap;
      gap: 23px;
    }

    .footer nav ul li {
      width: calc(50% - 45px);
    }

    .footer nav ul li a {
      font-family: Noto Sans JP;
      font-weight: 700;
      font-size: 12px;
      line-height: 36px;
      text-align: left;
      color: var(--text-color-invert);
    }

    .footer .inner .copyright {
      margin: auto;
    }
  }


@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.actions {
  text-align: right;
}

.external-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.external-link::after {
  content: "";
  margin: 2px;
  background-image: url("./images/icon-external-link.svg");
  background-size: contain;
  display: inline-flex;
  width: var(--font-size-body);
  height: var(--font-size-body);
}

.kv {
  position: relative;
  height: 720px;
  border-bottom: 2px solid var(--border-color);
}

.black-trapezoid {
  position: absolute;
  width: 33%;
  height: 790px;
  top: -70px;
  clip-path: polygon(0% 100%, 0% 300%, 100% 0%, 0% 0%);
  background: var(--bg-color-invert);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trapezoid-logo {
  position: absolute;
  top: calc(50% - 160px);
  right: 25%;
  width: 20vw;
  max-width: 400px;
  animation: fadeIn 1.5s ease-in 1.5s forwards;
}

.trapezoid-logo.hide {
  opacity: 0 !important;
}

.trapezoid-logo.show {
  opacity: 1 !important;
}

.kv-catch {
  position: absolute;
  top: calc(50% - 220px);
  right: 5%;
  font-size: clamp(2rem, 4vw, var(--font-size-kv));
  font-weight: 900;
  background: linear-gradient(120deg, #15007F 0%, #15007F 40%, #2e95f0 80%);
  text-align: right;
  font-feature-settings: "palt";
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Raleway, Helvetica, sans-serif;
  z-index: 1010;
  opacity: 0;
  animation: slideLeftCatch 1s ease-in 3s forwards;
}

.kv-catch img {
  width: 250px;
}

.kv .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.kv .background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reveal-black {
  position: fixed;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background: black;
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideLeftReveal 1.5s ease-in-out 1.5s forwards;
  clip-path: polygon(0% 0%, 100% 0%, 0% 500%, 0% 100%);
  will-change: transform, opacity;
}

.reveal-logo {
  position: fixed;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 35vw;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards, fadeOut 1s ease-out 1.5s forwards;
  z-index: 10010;
}

@keyframes slideLeftReveal {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-110%);
  }
}

@keyframes slideLeftCatch {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes slideInMobileMenu {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  row-gap: 30px;
}

.products li {
  background-color: var(--bg-color-invert);
  border-radius: 10px;
  width: 30%;
  border: 1px solid var(--border-color);
}

.products li a {
  display: block;
  border: none;
}

.products li img {
  border-radius: 8px 8px 0 0;
  width: 100%;
}

.products li .product-info {
  color: var(--text-color-invert);
  padding: 16px 24px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 48px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ul.news {
  margin-bottom: 30px;
}

.news li {
  border-bottom: 1px solid #cccccc;
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  color: #111;
}

.news li:first-of-type {
  border-top: 1px solid #cccccc;
}

.news li a {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 15px 30px;
  transition: opacity .3s;
}

.news li a p {
  line-height: 30px;
  margin-bottom: 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .kv {
    height: 480px;
  }

  .kv .background {
    height: 100%;
    top: 20px;
  }

  .kv-catch {
    top: 50px;
  }

  .kv-catch img {
    width: 150px;
  }

  .kv .black-trapezoid {
    height: calc(100% + 70px);
  }

  .kv .trapezoid-logo {
    left: 16px;
    top: 45%;
  }

  .section {
    margin: 45px 0;
  }

  .section .inner {
    padding: 36px 12px 18px;
    width: 100%;
  }

  .products li {
    margin: 16px 12px;
    width: 100%;
  }

  .news li a {
    display: block;
  }
}

.facilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 30px;
  gap: 60px;
}

.facilities li {
  background-color: var(--bg-color-invert);
  border-radius: 10px;
  width: 30%;
  border: 1px solid var(--border-color);
}

.facilities li img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.facilities li .facility-info {
  color: var(--text-color-invert);
  padding: 16px 24px;
}

.facilities--page table .border-bottom {
  border-bottom: 1px solid var(--secondary-border-color);
}

form .submit-button {
  background: var(--bg-color);
  border: 2px solid var(--border-color);
}

.company--page .page--header .inner::after {
  content: "COMPANY";
}

.facilities--page .page--header .inner::after {
  content: "FACILITIES";
}

.products--page .page--header .inner::after {
  content: "PRODUCTS";
}

.news--page .page--header .inner::after {
  content: "NEWS";
}

.contact--page .page--header .inner::after {
  content: "CONTACT";
}

.privacy-policy--page .page--header .inner::after {
  content: "PRIVACY POLICY";
}

.company--page .motto {
  width: 480px;
  margin: 32px auto;
}

.company--page .motto img {
  width: 100%;
}

.company--page table tr {
  border-bottom: 1px solid var(--secondary-border-color);
}

@media screen and (max-width: 1024px) {
  .company--page .motto {
    width: 90%;
    margin: 24px auto;
  }
}

form .required label::after {
  content: "必須";
  background-color: var(--accent-color);
  color: var(--text-color-invert);
  margin-left: 8px;
  font-size: var(--font-size-body-small);
  padding: 3px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  form .required label::after {
    font-size: var(--font-size-body-small-mobile);
  }
}

form .alert {
  color: #ff0000;
  margin: 8px 0;
  font-size: var(--font-size-body);
}
@media screen and (max-width: 1024px) {
  form .alert {
    font-size: var(--font-size-body-mobile);
  }
}