@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background: #FFFFFF; }

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

a {
  color: #2457BF;
  text-decoration: underline;
  text-underline-offset: 0.12em; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700; }

p {
  margin: 0 0 16px;
  font-size: 16px;
  color: #333333; }
  p:last-child {
    margin-bottom: 0; }

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none; }

.layout-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px; }

main {
  padding-top: 80px; }

.layout-section {
  padding: 40px 0; }
  @media (min-width: 768px) {
    .layout-section {
      padding: 80px 0; } }
  .layout-section--content-bg {
    background: url("../../assets/img/content_bg.jpg") center center/cover no-repeat; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: opacity 0.2s ease; }
  .btn:hover {
    opacity: 0.9; }
  .btn--primary {
    background: #2457BF;
    color: #FFFFFF;
    border-color: #2457BF; }
  .btn--outline {
    background: #FFFFFF;
    color: #2457BF;
    border-color: #2457BF;
    border-width: 1px; }

.btn__arrow {
  display: inline-flex;
  margin-left: 4px; }

.btn__icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease, filter 0.2s ease; }

.btn--outline .btn__icon,
.btn-border .btn__icon {
  filter: brightness(0) saturate(100%) invert(27%) sepia(78%) saturate(1054%) hue-rotate(205deg) brightness(95%) contrast(97%); }

.btn--primary .btn__icon,
.btn-solid .btn__icon {
  filter: brightness(0) invert(1); }

.btn:hover .btn__icon,
.btn-solid:hover .btn__icon,
.btn-border:hover .btn__icon {
  transform: translateX(4px); }

.btn-border:hover .btn__icon {
  filter: brightness(0) invert(1); }

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 32px;
  min-width: 230px;
  background: #2457BF;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: background 0.2s ease; }
  .btn-solid:hover {
    background: #1e479d; }

button.btn-border {
  appearance: none;
  background: transparent;
  font: inherit;
  cursor: pointer; }

button.btn-border:disabled {
  cursor: wait;
  opacity: 0.7; }

.btn-border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  min-width: 230px;
  border: 1px solid #2457BF;
  color: #2457BF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease; }
  .btn-border span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
  .btn-border:hover {
    background: #2457BF;
    color: #FFFFFF; }
    .btn-border:hover span {
      color: #2457BF;
      border-color: #FFFFFF; }

.section-title {
  margin-bottom: 32px; }
  .section-title__main {
    font-size: 32px;
    color: #333333;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      .section-title__main {
        font-size: 40px; } }
  .section-title__sub {
    font-size: 16px;
    color: #888888; }

.page-hero {
  padding: 0; }
  @media (min-width: 768px) {
    .page-hero {
      padding: 80px 0 64px; } }
  .page-hero__heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 16px; }
  .page-hero__main {
    margin: 0;
    font-size: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    background: linear-gradient(89deg, #2457BF 9.03%, #81CCD5 95.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }
    @media (min-width: 768px) {
      .page-hero__main {
        font-size: 72px; } }
  .page-hero__line {
    width: 40px;
    height: 1px;
    background: #888888;
    flex-shrink: 0; }
  .page-hero__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px; }
  .page-hero__sub {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.04em; }
  .page-hero__desc {
    font-size: 16px;
    color: #888888;
    line-height: 1.7;
    letter-spacing: 0.04em;
    margin: 0; }

@media (max-width: 767px) {
  .page-hero.layout-section .layout-container {
    padding-bottom: 0; } }

.card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }

.tag {
  display: inline-block;
  padding: 4px 16px;
  font-size: 14px;
  border-radius: 4px;
  background: rgba(36, 87, 191, 0.15);
  color: #2457BF; }

.strength-case__tag,
.news__tag,
.patent-tech__card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #F0F0F0;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3; }

.patent-tech__card-tag,
.projects__card-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  color: #888888;
  letter-spacing: 0.02em;
  background: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 4px;
  line-height: 1.3; }

.header {
  width: 100%;
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(0);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
  .header.is-hidden-scroll {
    transform: translateY(-100%); }
  .header.is-scrolled {
    background: rgba(255, 255, 255, 0.8); }
    .header.is-scrolled:hover {
      background: white; }
  .header__inner {
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 64px;
    padding: 0 0 0 16px; }
    @media (min-width: 1024px) {
      .header__inner {
        padding: 0 0 0 32px; } }
  .header__logo {
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    height: 40px;
    margin-right: auto; }
    .header__logo img {
      display: block;
      height: 40px;
      width: auto;
      object-fit: contain;
      object-position: left center; }
  @media (max-width: 1023px) {
    .header__nav {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      background: #FFFFFF;
      padding: 32px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transform: translateY(-14px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, visibility 0s linear 0.38s; } }
  @media (min-width: 1024px) {
    .header__nav {
      display: flex;
      align-items: center;
      gap: 32px;
      height: 80px; } }
  .header__nav-item {
    position: relative;
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    padding-bottom: 4px;
    height: 60px;
    display: flex;
    align-items: center; }
    .header__nav-item::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: #2457BF;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.25s ease; }
    .header__nav-item:hover {
      color: #2457BF; }
      .header__nav-item:hover::after {
        transform: scaleX(1); }
  .header__cta {
    flex-shrink: 0;
    align-self: stretch;
    display: none;
    align-items: center;
    padding: 0 32px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    transition: background 0.25s ease; }
    @media (min-width: 1024px) {
      .header__cta {
        display: flex; } }
    .header__cta:hover {
      background: linear-gradient(89deg, #2457BF 9.03%, #81CCD5 95.07%);
      color: #FFFFFF;
      opacity: 1; }
  .header__nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    border-radius: 999px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500; }
    @media (min-width: 1024px) {
      .header__nav-cta {
        display: none; } }
  .header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0; }
    @media (min-width: 1024px) {
      .header__menu-btn {
        display: none; } }
  .header__menu-icon {
    width: 24px;
    height: 2px;
    background: #333333;
    position: relative;
    transition: background 0.25s ease; }
    .header__menu-icon::before, .header__menu-icon::after {
      content: "";
      position: absolute;
      left: 0;
      width: 24px;
      height: 2px;
      background: #333333;
      transition: transform 0.25s ease, top 0.25s ease, background 0.25s ease; }
    .header__menu-icon::before {
      top: -7px; }
    .header__menu-icon::after {
      top: 7px; }

.header.is-open .header__menu-icon {
  background: transparent; }
  .header.is-open .header__menu-icon::before, .header.is-open .header__menu-icon::after {
    top: 0; }
  .header.is-open .header__menu-icon::before {
    transform: rotate(45deg); }
  .header.is-open .header__menu-icon::after {
    transform: rotate(-45deg); }

@media (max-width: 1023px) {
  .header.is-open .header__nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, visibility 0s linear 0s; } }

.footer {
  background: #333333;
  color: #FFFFFF; }
  .footer__main {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding-top: 80px;
    padding-bottom: 80px; }
    @media (min-width: 768px) {
      .footer__main {
        flex-direction: row;
        gap: 64px; } }
  .footer__brand {
    flex-shrink: 0; }
    @media (min-width: 768px) {
      .footer__brand {
        min-width: 200px; } }
  .footer__logo {
    display: block; }
    .footer__logo img {
      height: 60px;
      width: auto;
      display: block; }
  .footer__nav-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 64px; }
    @media (min-width: 768px) {
      .footer__nav-wrap {
        flex: 1;
        justify-content: flex-end;
        gap: 32px 80px; } }
  .footer__nav-group {
    min-width: 140px; }
  .footer__nav-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    padding-bottom: 8px; }
  .footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .footer__nav-item {
    display: flex;
    flex-direction: column;
    gap: 2px; }
  .footer__nav-link {
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease; }
    .footer__nav-link::before {
      content: "-";
      margin-right: 8px;
      opacity: 0.6; }
    .footer__nav-link:hover {
      opacity: 1; }
  .footer__nav-sub {
    font-size: 12px;
    color: #FFFFFF;
    opacity: 0.35;
    letter-spacing: 0.04em;
    padding-left: 18px; }
  .footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center; }
    @media (min-width: 768px) {
      .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left; } }
  .footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px; }
    @media (min-width: 768px) {
      .footer__legal {
        justify-content: flex-start; } }
  .footer__legal-link {
    font-size: 13px;
    color: #FFFFFF;
    opacity: 0.6;
    transition: opacity 0.2s ease; }
    .footer__legal-link:hover {
      opacity: 1; }
  .footer__copyright {
    font-size: 13px;
    color: #FFFFFF;
    opacity: 0.5;
    margin: 0;
    white-space: nowrap; }

.contact-cta {
  position: relative;
  overflow: hidden;
  margin-top: -30px;
  background-image: url("../../assets/img/cta_bg.png");
  background-size: cover;
  background-position: center right;
  border-top-left-radius: 50px;
  padding: 40px 0; }
  @media (min-width: 768px) {
    .contact-cta {
      padding: 80px 0; } }
  .contact-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 32px; }
    @media (min-width: 768px) {
      .contact-cta__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 64px; } }
  .contact-cta__content {
    flex: 1;
    min-width: 0; }
  .contact-cta__title {
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.04em;
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .contact-cta__title {
        font-size: 32px;
        margin-bottom: 32px; } }
  .contact-cta__desc {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 2;
    opacity: 0.95;
    margin-bottom: 0; }
  .contact-cta__btn {
    flex-shrink: 0; }
    @media (max-width: 767px) {
      .contact-cta__btn {
        width: 100%; } }
  .contact-cta__btn--stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100%; }
    @media (min-width: 768px) {
      .contact-cta__btn--stack {
        align-items: flex-end;
        width: auto; } }
    .contact-cta__btn--stack .contact-cta__pill {
      width: 100%; }
      @media (min-width: 768px) {
        .contact-cta__btn--stack .contact-cta__pill {
          width: auto;
          min-width: 260px; } }
  .contact-cta__pill {
    border-radius: 999px;
    padding: 16px 32px;
    gap: 8px;
    min-width: 220px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    box-sizing: border-box;
    background: #FFFFFF;
    color: #2457BF;
    border: 2px solid #FFFFFF; }
    @media (max-width: 767px) {
      .contact-cta__pill {
        width: 100%;
        min-width: 0;
        max-width: 100%; } }
    .contact-cta__pill .btn__icon {
      filter: brightness(0) saturate(100%) invert(27%) sepia(78%) saturate(1054%) hue-rotate(205deg) brightness(95%) contrast(97%); }
    .contact-cta__pill:hover {
      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(255, 255, 255, 0.92);
      opacity: 1; }
  .contact-cta__pill--primary {
    background: #2457BF;
    color: #FFFFFF;
    border: 2px solid #2457BF; }
    .contact-cta__pill--primary .btn__icon {
      filter: brightness(0) invert(1); }
    .contact-cta__pill--primary:hover {
      opacity: 0.92;
      background: #204daa;
      border-color: #204daa; }

.pre-footer-cta {
  background: #333333;
  padding: 32px 0; }
  .pre-footer-cta__inner {
    padding: 64px 64px;
    background: #454545;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center; }
    @media (min-width: 768px) {
      .pre-footer-cta__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 64px;
        text-align: left; } }
  .pre-footer-cta__content {
    flex: 1;
    min-width: 0; }
  .pre-footer-cta__title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      .pre-footer-cta__title {
        font-size: 22px; } }
  .pre-footer-cta__desc {
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.7;
    letter-spacing: 0.02em;
    margin-bottom: 0; }
  .pre-footer-cta__btn {
    flex-shrink: 0; }
  .pre-footer-cta__pill {
    border-radius: 999px;
    padding: 14px 36px;
    gap: 32px;
    min-width: 230px;
    justify-content: center;
    white-space: nowrap;
    font-size: 15px;
    letter-spacing: 0.04em;
    font-weight: 500; }

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 67px;
  height: 67px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease; }
  .pagetop.is-visible {
    opacity: 1;
    pointer-events: auto; }
  .pagetop.is-absolute {
    position: absolute; }
  .pagetop img {
    width: 67px;
    height: 67px;
    display: block; }

html.js-scroll main > section:not(.hero):not(.contact-cta):not(.pre-footer-cta):not(.error-404) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease; }
  html.js-scroll main > section:not(.hero):not(.contact-cta):not(.pre-footer-cta):not(.error-404).is-visible {
    opacity: 1;
    transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html.js-scroll main > section:not(.hero):not(.contact-cta):not(.pre-footer-cta):not(.error-404) {
    opacity: 1;
    transform: none;
    transition: none; } }
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease; }
  .js-fade.is-visible {
    opacity: 1;
    transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .js-fade {
    opacity: 1;
    transform: none;
    transition: none; } }
@keyframes heroBgIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateY(24px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateX(-32px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes heroSloganOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    visibility: hidden; } }
/* スローガン単体のライフサイクル: 入る → 維持 → 3.5sで消す */
@keyframes heroSloganLife {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; }
  67.5% {
    opacity: 1; }
  100% {
    opacity: 0;
    visibility: hidden; } }
@keyframes heroEvolutionIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes heroCharIn {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.hero {
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  position: relative;
  overflow: hidden; }
  @media (min-width: 768px) {
    .hero {
      min-height: 80vh; } }

.hero__top {
  flex: 0 0 55%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1e4a9e 0%, #2457BF 40%, #5ba3c4 85%, #81CCD5 100%);
  padding: 32px 32px;
  opacity: 0;
  animation: heroBgIn 0.8s ease forwards; }
  @media (max-width: 767px) {
    .hero__top .hero__title {
      font-size: 20px;
      min-height: 100px; }
    .hero__top .hero__title-evolution {
      font-size: clamp(32px, 10vw, 44px); } }

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto; }
  .hero__inner::before, .hero__inner::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: #FFFFFF;
    border-style: solid;
    border-width: 0; }
    @media (min-width: 768px) {
      .hero__inner::before, .hero__inner::after {
        width: 80px;
        height: 80px; } }
  .hero__inner::before {
    top: 0;
    left: 0;
    border-top-width: 1px;
    border-left-width: 1px; }
  .hero__inner::after {
    bottom: 0;
    right: 0;
    border-bottom-width: 1px;
    border-right-width: 1px; }

.hero__title {
  position: relative;
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.6; }
  @media (min-width: 768px) {
    .hero__title {
      min-height: 130px;
      font-size: 28px; } }

.hero__title-slogan {
  display: block;
  opacity: 0;
  /* JS の fillChars が inline style で上書きするまで非表示 */ }

.hero__title-evolution {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 56px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0;
  /* JS の fillChars が inline style で上書きするまで非表示 */ }

.hero__title-char {
  display: inline-block;
  opacity: 0;
  animation: heroCharIn 0.4s ease forwards;
  animation-delay: calc(var(--delay, 0) * 1ms); }

.hero__bottom {
  flex: 1;
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  aspect-ratio: 909/275; }
  @media (min-width: 768px) {
    .hero__bottom {
      min-height: 0; } }
  .hero__bottom--intro .hero__bg-layer.is-visible {
    animation: heroImageIn 0.8s ease 0.4s forwards; }

.hero__bg-stack {
  position: absolute;
  inset: 0;
  pointer-events: none; }

.hero__bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1); }
  .hero__bg-layer.is-visible {
    opacity: 1;
    z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .hero__bg-layer {
    transition: none; }

  .hero__bottom--intro .hero__bg-layer.is-visible {
    animation: none;
    opacity: 1;
    transform: none; } }
.news {
  background: url("../../assets/img/content_bg.jpg") center center/cover no-repeat;
  padding: 40px 0 0; }
  .news .layout-container {
    padding-bottom: 80px; }
  @media (min-width: 768px) {
    .news {
      padding: 80px 0 0; } }
  .news__header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 32px; }
  .news__title-en {
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2257C9;
    letter-spacing: 0.04em; }
    @media (min-width: 768px) {
      .news__title-en {
        font-size: 40px; } }
  .news__title-ja {
    font-size: 16px;
    font-weight: 600;
    color: #4A4A4A; }
  .news__box {
    background: #FFFFFF;
    padding: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1); }
    .news__box--single {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .news__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .news__more {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 0; }
  .news__more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; }
  .news__more-icon {
    transform: rotate(180deg); }
  .news__item {
    display: flex;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333;
    text-decoration: none;
    transition: background 0.2s ease; }
    .news__item:hover {
      background: #EBF2FF; }
    .news__item::after {
      content: "";
      flex-shrink: 0;
      width: 15px;
      height: 15px;
      margin-left: 32px;
      background-image: url("../../assets/img/icon_arrow.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      transition: transform 0.2s ease; }
    .news__item:hover::after {
      transform: translateX(5px); }
  .news__item-inner {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 32px; }
    @media (max-width: 767px) {
      .news__item-inner {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 32px;
        row-gap: 10px; } }
  .news__date {
    font-size: 16px;
    color: #888888;
    flex-shrink: 0; }
    @media (max-width: 767px) {
      .news__date {
        grid-column: 1;
        grid-row: 1; } }
  .news__tag {
    min-width: 120px;
    text-align: center;
    background: #6B7A99;
    color: #FFFFFF;
    flex-shrink: 0; }
    @media (max-width: 767px) {
      .news__tag {
        grid-column: 2;
        grid-row: 1;
        min-width: auto; } }
    .news__tag--press {
      background: #5289E2;
      white-space: nowrap; }
    .news__tag--tech {
      background: #34B9AC; }
    .news__tag--recruit {
      background: #977ECB; }
    .news__tag--info {
      background: #6B7A99; }
  .news__title {
    font-size: 16px;
    color: #333333;
    flex: 1;
    min-width: 0; }
    @media (max-width: 767px) {
      .news__title {
        grid-column: 1 / -1;
        grid-row: 2;
        flex: unset;
        width: auto; } }
  .news__pagination {
    margin-top: 32px;
    text-align: center; }
    .news__pagination .nav-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 12px; }
    .news__pagination .page-numbers {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      padding: 8px 12px;
      font-weight: 600;
      color: #333333;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 4px;
      transition: background 0.2s ease, color 0.2s ease; }
      .news__pagination .page-numbers:hover, .news__pagination .page-numbers.current {
        background: #2457bf;
        color: #FFFFFF;
        border-color: #2457bf; }
  .news__empty {
    margin: 0;
    padding: 32px;
    text-align: center;
    color: #888888; }

.news-single {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  padding: 32px;
  margin: 0;
  width: 100%;
  max-width: none;
  color: #333333;
  line-height: 1.9; }
  @media (min-width: 768px) {
    .news-single {
      padding: 64px; } }
  .news-single__header {
    margin-bottom: 32px; }
  .news-single__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    margin: 0 0 32px;
    font-size: 16px; }
  .news-single__title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin: 0; }
    @media (min-width: 768px) {
      .news-single__title {
        font-size: 24px; } }
  .news-single__content {
    margin-bottom: 32px; }
    .news-single__content :last-child {
      margin-bottom: 0; }
    .news-single__content p,
    .news-single__content ul,
    .news-single__content ol {
      margin: 0 0 16px; }
    .news-single__content a {
      color: #2457BF;
      text-decoration: underline;
      text-underline-offset: 2px; }
      .news-single__content a:hover {
        opacity: 0.85; }
    .news-single__content img {
      height: auto; }
  .news-single__link {
    margin: 0 0 32px; }
  .news-single__back {
    margin: 32px 0 0;
    text-align: center; }

.about-us {
  background: #FFFFFF;
  padding: 40px 0; }
  @media (min-width: 768px) {
    .about-us {
      padding: 80px 0; } }
  @media (min-width: 768px) {
    .about-us__inner {
      display: flex;
      gap: 64px;
      align-items: stretch; } }
  .about-us__content {
    margin-bottom: 32px; }
    @media (min-width: 768px) {
      .about-us__content {
        flex: 1;
        margin-bottom: 0;
        display: flex;
        flex-direction: column; } }
  .about-us__title {
    font-size: 28px;
    color: #333333;
    margin-bottom: 16px;
    letter-spacing: 0.04em; }
    @media (min-width: 768px) {
      .about-us__title {
        font-size: 40px; } }
  .about-us__text {
    font-size: 16px;
    color: #333333;
    margin-bottom: 32px;
    line-height: 1.8; }
  .about-us__features {
    display: flex;
    flex-direction: column; }
    @media (min-width: 768px) {
      .about-us__features {
        flex-direction: row; } }
  .about-us__feature {
    flex: 1;
    padding: 16px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; }
    .about-us__feature + .about-us__feature {
      border-top: 1px solid #E4E4E4; }
      @media (min-width: 768px) {
        .about-us__feature + .about-us__feature {
          border-top: none;
          border-left: 1px solid #E4E4E4; } }
  .about-us__feature-icon {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center; }
    .about-us__feature-icon img {
      width: 64px;
      height: 60px;
      object-fit: contain; }
  .about-us__feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #2457BF;
    margin: 0;
    line-height: 1.6; }
  .about-us__images {
    margin-top: 64px;
    position: relative;
    height: 260px; }
    @media (min-width: 768px) {
      .about-us__images {
        width: 44%;
        flex-shrink: 0;
        margin-top: 0;
        height: auto;
        min-height: 440px; } }
  .about-us__image {
    border-radius: 8px;
    overflow: hidden;
    position: absolute; }
    .about-us__image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
    .about-us__image:first-child {
      top: 0;
      left: 0;
      width: 82%;
      height: 62%; }
      @media (min-width: 768px) {
        .about-us__image:first-child {
          width: 82%;
          height: 62%; } }
    .about-us__image:last-child {
      bottom: 0;
      right: 0;
      width: 63%;
      height: 46%; }
      @media (min-width: 768px) {
        .about-us__image:last-child {
          width: 63%;
          height: 46%; } }

/* スクロールフェードイン */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease; }
  .js-fade.is-visible {
    opacity: 1;
    transform: translateY(0); }

.patent-tech {
  background: #2457BF;
  position: relative;
  overflow: hidden;
  padding-top: 0; }
  .patent-tech__header {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0; }
  .patent-tech__bg-text {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Roboto", sans-serif;
    font-size: clamp(48px, 9vw, 90px);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.12);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1; }
  .patent-tech__title {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.04em;
    margin: 0; }
    @media (min-width: 768px) {
      .patent-tech__title {
        font-size: 32px; } }
  .patent-tech__inner {
    position: relative;
    z-index: 1;
    padding-top: 64px;
    padding-bottom: 64px; }
    @media (min-width: 768px) {
      .patent-tech__inner {
        padding-top: 80px;
        padding-bottom: 80px; } }
  .patent-tech__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 64px;
    line-height: 1.8;
    letter-spacing: 0.02em; }
  .patent-tech__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px; }
    @media (min-width: 768px) {
      .patent-tech__cards {
        grid-template-columns: repeat(3, 1fr); } }
  .patent-tech__card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column; }
  .patent-tech__card-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap; }
  .patent-tech__card-title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px; }
    .patent-tech__card-title::before {
      position: absolute;
      content: "";
      width: 18px;
      height: 3px;
      background: #2457BF;
      top: 50%;
      transform: translateY(-50%);
      left: -24px; }
  .patent-tech__card-badge {
    white-space: nowrap;
    flex-shrink: 0; }
  .patent-tech__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px; }
  .patent-tech__card-tag {
    display: inline-flex; }
  .patent-tech__card-video {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #000; }
    .patent-tech__card-video iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: block; }
  .patent-tech__carousel {
    margin-bottom: 16px; }
  .patent-tech__carousel-track {
    display: flex;
    overflow: hidden;
    border-radius: 6px; }
  .patent-tech__carousel-slide {
    min-width: 100%;
    transition: transform 0.4s ease; }
    .patent-tech__carousel-slide .patent-tech__card-video {
      margin-bottom: 0; }
  .patent-tech__carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px; }
  .patent-tech__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(36, 87, 191, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease; }
    .patent-tech__carousel-dot.is-active {
      background: #2457BF;
      transform: scale(1.3); }
    .patent-tech__carousel-dot:hover:not(.is-active) {
      background: rgba(36, 87, 191, 0.5); }
  .patent-tech__card-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #F0F0F0;
    margin-bottom: 16px; }
    .patent-tech__card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
    .patent-tech__card-thumb--dual {
      display: flex;
      gap: 4px;
      aspect-ratio: 16 / 10; }
      .patent-tech__card-thumb--dual .patent-tech__card-thumb-item {
        flex: 1;
        position: relative;
        overflow: hidden; }
        .patent-tech__card-thumb--dual .patent-tech__card-thumb-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block; }
  .patent-tech__card-thumb-item {
    position: relative; }
  .patent-tech__card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #e00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; }
    .patent-tech__card-play::after {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 0 7px 14px;
      border-color: transparent transparent transparent #FFFFFF;
      margin-left: 4px; }
  .patent-tech__card-desc {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
    margin: 0 0 16px;
    flex: 1; }
  .patent-tech__card-link {
    font-size: 14px;
    color: #2457BF;
    display: block;
    text-align: right;
    letter-spacing: 0.02em; }
    .patent-tech__card-link:hover {
      text-decoration: underline; }

.business-works {
  padding-top: 64px;
  padding-bottom: 64px; }
  .business-works__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px; }
    @media (min-width: 768px) {
      .business-works__grid {
        grid-template-columns: repeat(3, 1fr); } }
  .business-works__card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
  .business-works__thumb {
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    width: 100%;
    background: #E4E4E4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; }
    .business-works__thumb::before {
      content: "";
      width: 52px;
      height: 52px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat;
      opacity: 0.55; }
  .business-works__card:nth-child(1) .business-works__thumb, .business-works__card:nth-child(2) .business-works__thumb, .business-works__card:nth-child(3) .business-works__thumb, .business-works__card:nth-child(4) .business-works__thumb, .business-works__card:nth-child(5) .business-works__thumb, .business-works__card:nth-child(6) .business-works__thumb {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    .business-works__card:nth-child(1) .business-works__thumb::before, .business-works__card:nth-child(2) .business-works__thumb::before, .business-works__card:nth-child(3) .business-works__thumb::before, .business-works__card:nth-child(4) .business-works__thumb::before, .business-works__card:nth-child(5) .business-works__thumb::before, .business-works__card:nth-child(6) .business-works__thumb::before {
      display: none; }
  .business-works__card:nth-child(1) .business-works__thumb {
    background-image: url("../../assets/img/works_img01.jpg"); }
  .business-works__card:nth-child(2) .business-works__thumb {
    background-image: url("../../assets/img/works_img02.jpg"); }
  .business-works__card:nth-child(3) .business-works__thumb {
    background-image: url("../../assets/img/works_img03.jpg"); }
  .business-works__card:nth-child(4) .business-works__thumb {
    background-image: url("../../assets/img/works_img04.jpg"); }
  .business-works__card:nth-child(5) .business-works__thumb {
    background-image: url("../../assets/img/works_img05.jpg"); }
  .business-works__card:nth-child(6) .business-works__thumb {
    background-image: url("../../assets/img/works_img06.jpg"); }
  .business-works__body {
    padding: 22px 0 0;
    flex: 1;
    display: flex;
    flex-direction: column; }
  .business-works__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px; }
  .business-works__title {
    position: relative;
    margin: 0;
    min-width: 0;
    font-size: 16px;
    color: #333333;
    line-height: 1.45;
    letter-spacing: 0.02em; }
    .business-works__title::before {
      position: absolute;
      content: "";
      width: 18px;
      height: 3px;
      background: #2457BF;
      top: 50%;
      transform: translateY(-50%);
      left: -24px; }
  .business-works__desc {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7; }

.patent-tech--business {
  background: #2457BF;
  border-radius: 0 0 0 0; }
  .patent-tech--business .patent-tech__inner {
    padding-top: 0;
    padding-bottom: 64px; }
    @media (min-width: 768px) {
      .patent-tech--business .patent-tech__inner {
        padding-bottom: 80px; } }
  .patent-tech--business .patent-tech__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px; }
  .patent-tech--business .patent-tech__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start; }
    @media (min-width: 768px) {
      .patent-tech--business .patent-tech__card {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
        gap: 32px; } }
  .patent-tech--business .business-patent-tech__content {
    min-width: 0;
    order: 2; }
    @media (min-width: 768px) {
      .patent-tech--business .business-patent-tech__content {
        order: 0; } }
  .patent-tech--business .patent-tech__card-thumb {
    order: 1;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #E4E4E4; }
    @media (min-width: 768px) {
      .patent-tech--business .patent-tech__card-thumb {
        order: 0; } }
    .patent-tech--business .patent-tech__card-thumb img {
      width: 100%;
      height: auto;
      display: block; }
  .patent-tech--business .patent-tech__card-top {
    margin-bottom: 16px; }
  .patent-tech--business .patent-tech__card-badge {
    background: #F0F0F0;
    border: 1px solid #E4E4E4; }
  .patent-tech--business .patent-tech__card-desc {
    margin: 0 0 16px;
    line-height: 1.85; }
  .patent-tech--business .business-patent-tech__features {
    margin-bottom: 16px; }
  .patent-tech--business .business-patent-tech__features-label,
  .patent-tech--business .business-patent-tech__fields-label {
    margin: 0 0 8px;
    color: #333333;
    font-weight: 700; }
  .patent-tech--business .business-patent-tech__feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px 20px; }
    @media (min-width: 768px) {
      .patent-tech--business .business-patent-tech__feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)); } }
    .patent-tech--business .business-patent-tech__feature-list li {
      position: relative;
      padding-left: 1.1em;
      line-height: 1.65;
      color: #333333; }
      .patent-tech--business .business-patent-tech__feature-list li::before {
        content: "・";
        position: absolute;
        left: 0; }
  .patent-tech--business .business-patent-tech__fields {
    margin-bottom: 16px; }
  .patent-tech--business .patent-tech__card-tags {
    margin-bottom: 0; }
  .patent-tech--business .business-patent-tech__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px; }
  .patent-tech--business .business-patent-tech__btn {
    display: inline-flex;
    padding: 12px 22px;
    letter-spacing: 0.02em;
    gap: 10px; }
    .patent-tech--business .business-patent-tech__btn .btn__icon {
      width: 10px;
      height: 10px; }

.business-grout {
  background: #FFFFFF;
  padding-top: 64px;
  padding-bottom: 64px; }
  .business-grout__products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 12px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto; }
  .business-grout__product {
    margin: 0;
    padding: 0;
    list-style: none; }
  .business-grout__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: #333333;
    background: #f2f2f2;
    border: none;
    border-radius: 999px;
    cursor: default;
    user-select: none; }

.strength-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px; }

.strength-detail {
  display: flex;
  gap: 32px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  align-items: flex-start; }
  @media (min-width: 768px) {
    .strength-detail {
      padding: 32px 64px;
      gap: 64px; } }
  .strength-detail__num {
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(89deg, #2457BF 9.03%, #81CCD5 95.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 60px; }
    @media (min-width: 768px) {
      .strength-detail__num {
        font-size: 64px;
        width: 80px; } }
  .strength-detail__body {
    flex: 1; }
  .strength-detail__title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
    letter-spacing: 0.02em; }
  .strength-detail__text {
    font-size: 15px;
    color: #888888;
    line-height: 1.9;
    margin-bottom: 16px; }

.strength-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px; }
  @media (min-width: 768px) {
    .strength-numbers {
      grid-template-columns: repeat(4, 1fr);
      gap: 32px; } }

.strength-number {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid #E4E4E4;
  border-radius: 8px; }
  .strength-number__value {
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(89deg, #2457BF 9.03%, #81CCD5 95.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      .strength-number__value {
        font-size: 48px; } }
  .strength-number__unit {
    font-size: 14px; }
  .strength-number__label {
    font-size: 14px;
    color: #888888;
    margin: 0; }

.strength-page {
  padding-top: 0; }

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

.strength-feature__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center; }
  @media (max-width: 767px) {
    .strength-feature__row .strength-feature__image {
      order: -1; } }
  @media (min-width: 768px) {
    .strength-feature__row {
      grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
      gap: 64px; } }

@media (min-width: 768px) {
  .strength-feature__row--reverse {
    grid-template-columns: minmax(360px, 520px) minmax(0, 1fr); }
    .strength-feature__row--reverse .strength-feature__content {
      order: 2; }
    .strength-feature__row--reverse .strength-feature__image {
      order: 1; } }

.strength-feature__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #888888; }

.strength-feature__title {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 700;
  color: #333333;
  line-height: 1.45; }

.strength-feature__tagline {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #2457BF;
  line-height: 1.5;
  letter-spacing: 0.02em; }

.strength-feature__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.85; }

.strength-feature__stats {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0; }
  @media (max-width: 767px) {
    .strength-feature__stats {
      width: 100%;
      justify-content: center; } }

.strength-feature__btn {
  display: flex;
  justify-content: flex-end; }

.strength-feature__stat {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #F0F0F0;
  padding: 10px 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px; }
  @media (min-width: 768px) {
    .strength-feature__stat {
      padding: 12px 8px;
      gap: 6px; } }
  .strength-feature__stat img {
    width: 32px;
    height: auto;
    flex-shrink: 0; }
    @media (min-width: 768px) {
      .strength-feature__stat img {
        width: 40px; } }
  .strength-feature__stat .strength-feature__stat-label {
    margin: 0;
    color: #2457BF;
    text-align: center;
    line-height: 1.3; }
  .strength-feature__stat .strength-feature__stat-heading {
    margin: 0;
    color: #2457BF;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.35; }
  .strength-feature__stat .strength-feature__stat-label {
    font-size: 12px;
    font-weight: 400; }
  .strength-feature__stat .strength-feature__stat-heading {
    font-size: 18px;
    font-weight: 700; }
    @media (min-width: 768px) {
      .strength-feature__stat .strength-feature__stat-heading {
        font-size: 16px; } }
  @media (max-width: 767px) {
    .strength-feature__stat {
      flex: 0 0 calc((100% - 12px) / 2);
      max-width: 140px;
      width: calc((100% - 12px) / 2);
      aspect-ratio: 1;
      height: auto;
      padding: 6px 5px;
      gap: 4px; } }
  .strength-feature__stat:has(> img) {
    width: 200px;
    height: 200px;
    gap: 0;
    padding: 16px 14px; }
    @media (min-width: 768px) {
      .strength-feature__stat:has(> img) {
        padding: 18px 16px; } }
    .strength-feature__stat:has(> img) img {
      width: 44px;
      height: 44px;
      object-fit: contain;
      margin-bottom: 10px; }
    .strength-feature__stat:has(> img) .strength-feature__stat-label {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.4;
      letter-spacing: 0; }
    .strength-feature__stat:has(> img) .strength-feature__stat-heading {
      display: inline-block;
      margin-top: 6px;
      font-family: "Roboto", sans-serif;
      font-size: 48px;
      font-weight: 700;
      line-height: 1; }
      @media (min-width: 768px) {
        .strength-feature__stat:has(> img) .strength-feature__stat-heading {
          font-size: 54px; } }
      .strength-feature__stat:has(> img) .strength-feature__stat-heading small {
        font-size: 16px;
        font-weight: 700;
        margin-left: 2px;
        font-family: "Noto Sans JP", sans-serif; }
      .strength-feature__stat:has(> img) .strength-feature__stat-heading--sm-num {
        font-size: 36px; }
        @media (min-width: 768px) {
          .strength-feature__stat:has(> img) .strength-feature__stat-heading--sm-num {
            font-size: 40px; } }
        .strength-feature__stat:has(> img) .strength-feature__stat-heading--sm-num small {
          font-size: 14px; }
    @media (max-width: 767px) {
      .strength-feature__stat:has(> img) {
        flex: 0 0 calc((100% - 12px) / 2);
        max-width: 140px;
        width: calc((100% - 12px) / 2);
        aspect-ratio: 1;
        height: auto;
        padding: 8px 6px;
        gap: 0; }
        .strength-feature__stat:has(> img) img {
          width: 32px;
          height: 32px;
          margin-bottom: 4px; }
        .strength-feature__stat:has(> img) .strength-feature__stat-label {
          font-size: 12px;
          font-weight: 700;
          line-height: 1.25; }
        .strength-feature__stat:has(> img) .strength-feature__stat-heading {
          font-size: 32px;
          margin-top: 4px; }
          .strength-feature__stat:has(> img) .strength-feature__stat-heading small {
            font-size: 10px; }
          .strength-feature__stat:has(> img) .strength-feature__stat-heading--sm-num {
            font-size: 28px; }
            .strength-feature__stat:has(> img) .strength-feature__stat-heading--sm-num small {
              font-size: 11px; } }

.strength-feature__image {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05); }
  .strength-feature__image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block; }

.strength-management.layout-section {
  padding: 0; }

.strength-management__band {
  position: relative;
  z-index: 0;
  color: #333333;
  padding: 56px 0 72px;
  overflow: visible; }
  .strength-management__band .layout-container {
    position: relative;
    z-index: 1; }
  @media (max-width: 767px) {
    .strength-management__band {
      border-top-left-radius: 32px; }
      .strength-management__band::after {
        display: none; } }

.strength-management__head {
  text-align: left;
  margin-bottom: 32px; }

.strength-management__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35; }
  @media (min-width: 768px) {
    .strength-management__title {
      font-size: 32px; } }

.strength-management__desc {
  margin: 0;
  max-width: 36rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75; }

.strength-management__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px; }
  @media (min-width: 768px) {
    .strength-management__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px; } }

.strength-management__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 112px;
  margin: 0;
  padding: 20px 18px;
  background: #FFFFFF;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }

.strength-management__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px; }
  .strength-management__icon img {
    width: 28px;
    height: 28px;
    display: block; }

.strength-management__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
  text-align: left; }

.strength-cases {
  background: #F0F0F0; }

.strength-cases__list {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.strength-case {
  background: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 8px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px; }
  @media (min-width: 768px) {
    .strength-case {
      grid-template-columns: minmax(300px, 430px) 1fr;
      align-items: center;
      gap: 32px; } }

.strength-case__figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #E4E4E4; }

.strength-case__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 430 / 280;
  object-fit: cover;
  display: block; }

.strength-case__body {
  min-width: 0; }

.strength-case__tag {
  margin: 0 0 12px;
  min-width: 100px; }

.strength-case__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px; }

.strength-case__title-bar {
  flex-shrink: 0;
  width: 36px;
  border-radius: 999px;
  background: #2457BF; }

.strength-case__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  line-height: 1.45; }

.strength-case__specs {
  margin: 0;
  display: grid;
  grid-template-columns: 4.5em minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 0; }

.strength-case__specs dt,
.strength-case__specs dd {
  margin: 0;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #333333; }

.strength-case__specs dt {
  font-weight: 700; }

.strength-case__specs dd {
  font-weight: 400; }

.strength-case__specs dt:not(:first-of-type),
.strength-case__specs dd:not(:first-of-type) {
  border-top: 1px solid #E4E4E4; }

.strength-case__specs dt:first-of-type,
.strength-case__specs dd:first-of-type {
  padding-top: 0; }

.anniversary {
  --anniversary-arc-height: min(110px, 8.67vw);
  background: linear-gradient(to bottom, #2457BF var(--anniversary-arc-height), #FFFFFF var(--anniversary-arc-height));
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--anniversary-arc-height));
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center; }
  @media (min-width: 768px) {
    .anniversary {
      min-height: 720px; } }

.anniversary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--anniversary-arc-height);
  background: url("../../assets/img/anniversary__arc.svg") top center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 0; }

.anniversary::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: calc(var(--anniversary-arc-height) - 2px);
  height: 4px;
  background: #FFFFFF;
  pointer-events: none;
  z-index: 0; }

.anniversary__photos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1; }

.anniversary__photo {
  position: absolute;
  overflow: hidden;
  border-radius: 5px;
  display: none; }
  .anniversary__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  @media (min-width: 768px) {
    .anniversary__photo {
      display: block; } }

.anniversary__photo--1 {
  left: 0;
  top: 60px;
  width: 383px;
  height: 296px; }

.anniversary__photo--2 {
  left: 32px;
  top: 450px;
  width: 169px;
  height: 189px; }

.anniversary__photo--3 {
  left: 229px;
  top: 600px;
  width: 236px;
  height: 170px; }

.anniversary__photo--4 {
  right: 67px;
  top: 62px;
  width: 222px;
  height: 147px; }

.anniversary__photo--5 {
  right: 0;
  top: 268px;
  width: 390px;
  height: 291px; }

.anniversary__photo--6 {
  right: 122px;
  top: 600px;
  width: 262px;
  height: 175px; }

.anniversary__content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px 0; }
  @media (min-width: 768px) {
    .anniversary__content {
      padding: 80px 0 200px; } }

.anniversary__badge-img {
  width: 140px;
  height: auto;
  display: block;
  margin: 0 auto 16px; }

.anniversary__title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin-bottom: 32px; }
  @media (min-width: 768px) {
    .anniversary__title {
      font-size: 36px; } }

.anniversary__text {
  font-size: 16px;
  color: #333333;
  line-height: 2.2;
  margin-bottom: 64px; }

@keyframes projectsScroll {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
.projects {
  background: #F0F0F0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px; }
  @media (min-width: 768px) {
    .projects {
      flex-direction: row;
      align-items: center; } }

.projects__intro {
  flex-shrink: 0;
  padding: 64px 40px; }
  @media (min-width: 768px) {
    .projects__intro {
      width: 340px;
      padding: 80px 40px; } }
  @media (min-width: 1200px) {
    .projects__intro {
      width: calc((100vw - 1200px) / 2 + 340px);
      padding-top: 80px;
      padding-bottom: 80px;
      padding-left: calc((100vw - 1200px) / 2 + 40px);
      padding-right: 40px; } }

.projects__title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin: 0 0 4px; }
  @media (min-width: 768px) {
    .projects__title {
      font-size: 40px; } }

.projects__title-en {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2457BF;
  letter-spacing: 0.1em;
  margin: 0 0 32px; }

.projects__desc {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin: 0 0 64px; }

.projects__carousel-wrap {
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
  padding: 40px 0; }
  @media (min-width: 768px) {
    .projects__carousel-wrap {
      padding: 80px 0; } }
  .projects__carousel-wrap:hover .projects__carousel-track {
    animation-play-state: paused; }

.projects__carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: projectsScroll 50s linear infinite; }

.projects__card {
  flex: 0 0 260px;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: block; }
  .projects__card:nth-child(odd) {
    margin-bottom: 48px; }
  .projects__card:nth-child(even) {
    margin-top: 48px; }
  .projects__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
    transform: translateY(-4px); }

.projects__card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #E4E4E4; }
  .projects__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }

.projects__card-category {
  width: fit-content;
  margin: 0 0 6px;
  letter-spacing: 0.02em; }

.projects__card-title {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  line-height: 1.5; }

.recruit {
  background: linear-gradient(120deg, #FFF 51.8%, #E1EEF0 84.86%);
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .recruit {
      flex-direction: row;
      align-items: stretch;
      min-height: 500px; } }

.recruit__inner {
  flex: 1;
  min-width: 0;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; }
  @media (min-width: 768px) {
    .recruit__inner {
      padding: 80px 64px 80px 32px; } }
  @media (min-width: 1200px) {
    .recruit__inner {
      padding-left: calc((100vw - 1200px) / 2 + 32px);
      padding-right: 64px; } }

.recruit__eyebrow {
  display: inline-block;
  font-size: 16px;
  color: #333333;
  font-weight: 700;
  border: 1px solid #333333;
  padding: 6px 14px;
  letter-spacing: 0.04em;
  margin-bottom: 16px; }

.recruit__title {
  font-size: 26px;
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 32px; }
  @media (min-width: 768px) {
    .recruit__title {
      font-size: 36px;
      margin-bottom: 32px; } }
  .recruit__title em {
    font-style: normal;
    background: linear-gradient(89deg, #2457BF 9.03%, #81CCD5 95.07%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; }

.recruit__lead {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 32px; }

.recruit__features {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 32px; }
  @media (min-width: 768px) {
    .recruit__features {
      flex-direction: row; } }

.recruit__feature {
  flex: 1;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px; }
  .recruit__feature + .recruit__feature {
    border-top: 1px solid #E4E4E4; }
    @media (min-width: 768px) {
      .recruit__feature + .recruit__feature {
        border-top: none;
        border-left: 1px solid #E4E4E4; } }

.recruit__feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #2457BF;
  margin: 0;
  line-height: 1.6; }

.recruit__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center; }
  .recruit__feature-icon img {
    width: 64px;
    height: 60px;
    object-fit: contain; }

.recruit__inner > .btn-solid {
  align-self: center; }
  @media (max-width: 767px) {
    .recruit__inner > .btn-solid {
      align-self: stretch;
      width: 100%;
      min-width: 0;
      box-sizing: border-box; } }

.recruit__visual {
  flex-shrink: 0;
  background-image: url("../../assets/img/recruit_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 260px; }
  @media (min-width: 768px) {
    .recruit__visual {
      width: 38%;
      height: auto; } }

.recruit-section-head {
  text-align: center;
  margin-bottom: 64px; }
  @media (min-width: 768px) {
    .recruit-section-head {
      margin-bottom: 60px; } }

.recruit-section-head__en {
  display: inline-block;
  max-width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin: 0 0 10px;
  background: linear-gradient(89deg, #2457BF 9.03%, #81CCD5 95.07%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone; }

.recruit-section-head__ja {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.06em; }

.recruit-section-head__lead {
  margin: 12px auto 0;
  max-width: 640px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.75; }

.recruit-page-message__body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center; }
  .recruit-page-message__body p {
    margin: 0 0 1.5em;
    font-size: 15px;
    color: #333333;
    line-height: 2; }
    .recruit-page-message__body p:last-child {
      margin-bottom: 0; }

.recruit-numbers {
  background: #2457BF;
  position: relative;
  overflow: hidden;
  padding: 0;
  padding-bottom: 64px;
  color: #FFFFFF; }
  @media (min-width: 768px) {
    .recruit-numbers {
      padding-bottom: 96px; } }

.recruit-numbers__inner {
  position: relative;
  z-index: 1;
  padding-top: 0; }
  @media (min-width: 768px) {
    .recruit-numbers__inner {
      padding-top: 80px; } }

.recruit-numbers__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px; }
  @media (max-width: 767px) {
    .recruit-numbers__grid {
      gap: 12px;
      justify-items: center; } }
  @media (min-width: 768px) {
    .recruit-numbers__grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 64px;
      max-width: 1000px;
      margin: 0 auto; } }

.recruit-numbers__item {
  background: #FFFFFF;
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 220px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12); }
  @media (max-width: 767px) {
    .recruit-numbers__item {
      width: min(140px, 100%);
      max-width: 140px;
      height: auto;
      margin: 0;
      padding: 8px 6px;
      justify-self: center;
      box-sizing: border-box; } }

.recruit-numbers__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px; }
  @media (max-width: 767px) {
    .recruit-numbers__icon {
      margin-bottom: 4px; } }

.recruit-numbers__icon-img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain; }
  @media (max-width: 767px) {
    .recruit-numbers__icon-img {
      width: 28px;
      height: 28px; } }

.recruit-numbers__label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #2457BF;
  line-height: 1.4;
  margin-bottom: 6px; }
  @media (max-width: 767px) {
    .recruit-numbers__label {
      font-size: 11px;
      line-height: 1.25;
      margin-bottom: 4px; } }

.recruit-numbers__value {
  font-family: "Roboto", sans-serif;
  font-size: 74px;
  font-weight: 700;
  color: #2457BF;
  line-height: 1; }
  .recruit-numbers__value small {
    font-size: 16px;
    font-weight: 700;
    margin-left: 2px; }
  @media (max-width: 767px) {
    .recruit-numbers__value {
      font-size: 28px; }
      .recruit-numbers__value small {
        font-size: 10px; } }

.recruit-benefits-schedule-band {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 80px); }

.recruit-benefits {
  background: transparent; }

.recruit-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 88px;
  padding-top: 24px; }
  @media (min-width: 768px) {
    .recruit-benefits__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 64px;
      padding-top: 32px; } }

.recruit-benefit-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  padding: 88px 32px 32px;
  text-align: left; }
  @media (min-width: 768px) {
    .recruit-benefit-card {
      padding: 76px 32px 64px; } }

.recruit-benefit-card__icon-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #2457BF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 10px; }
  @media (min-width: 768px) {
    .recruit-benefit-card__icon-wrap {
      width: 150px;
      height: 150px;
      gap: 6px;
      padding: 16px 12px; } }

.recruit-benefit-card__icon {
  width: 40px;
  height: auto;
  flex-shrink: 0; }
  @media (min-width: 768px) {
    .recruit-benefit-card__icon {
      width: 48px; } }

.recruit-benefit-card__circle-title {
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.02em; }
  @media (min-width: 768px) {
    .recruit-benefit-card__circle-title {
      font-size: 16px; } }

.recruit-benefit-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  color: #333333;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.04em; }
  .recruit-benefit-card__list li {
    position: relative;
    padding-left: calc(13px + 10px); }
    .recruit-benefit-card__list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.5em;
      width: 13px;
      height: 13px;
      background: url("../../assets/img/icon_check.svg") center/contain no-repeat; }
    .recruit-benefit-card__list li:not(:last-child) {
      margin-bottom: 0.35em; }

.recruit-schedule-section {
  background: transparent; }

.recruit-schedule {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  padding: 32px 32px; }
  @media (min-width: 768px) {
    .recruit-schedule {
      padding: 64px 80px;
      max-width: 880px;
      margin: 0 auto; } }

.recruit-schedule__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 26px; }
  .recruit-schedule__list::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 14px;
    bottom: 84px;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(0deg, #2457bf 0%, #81ccd5 100%); }
  @media (min-width: 768px) {
    .recruit-schedule__list {
      padding-left: 30px; }
      .recruit-schedule__list::before {
        left: 7px;
        bottom: 40px; } }

.recruit-schedule__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px 20px;
  align-items: start;
  padding: 32px 0 32px 16px;
  border-bottom: 1px solid #E4E4E4; }
  .recruit-schedule__item:first-child {
    padding-top: 0; }
  .recruit-schedule__item:last-child {
    padding-bottom: 0;
    border-bottom: none; }
  @media (max-width: 767px) {
    .recruit-schedule__item {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      gap: 8px 0;
      align-items: stretch; } }
  @media (min-width: 768px) {
    .recruit-schedule__item {
      gap: 20px 28px;
      padding: 36px 0; } }

.recruit-schedule__marker {
  position: absolute;
  left: -25px;
  top: calc(32px + 12px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2457BF;
  z-index: 1; }
  .recruit-schedule__item:first-child .recruit-schedule__marker {
    top: 10px; }
  @media (min-width: 768px) {
    .recruit-schedule__marker {
      left: -28px;
      top: calc(32px + 4px + 12px); }
      .recruit-schedule__item:first-child .recruit-schedule__marker {
        top: 10px; } }

.recruit-schedule__time {
  grid-column: 1;
  grid-row: 1;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  min-width: 90px;
  color: #2457BF;
  margin: 0;
  line-height: 1.15; }

.recruit-schedule__body {
  grid-column: 2;
  grid-row: 1; }
  @media (max-width: 767px) {
    .recruit-schedule__body {
      grid-column: 1;
      grid-row: 2; } }

.recruit-schedule__title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 6px;
  line-height: 1.5; }

.recruit-schedule__desc {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.75;
  margin: 0; }

.recruit-voice__title-en {
  background: linear-gradient(0deg, #2457bf 0%, #81ccd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; }

.recruit-voice__list {
  display: flex;
  flex-direction: column;
  gap: 80px; }
  @media (min-width: 768px) {
    .recruit-voice__list {
      gap: 128px; } }

.recruit-voice__item {
  display: grid;
  gap: 64px;
  align-items: center;
  grid-template-areas: "meta" "blob" "text"; }
  @media (min-width: 768px) {
    .recruit-voice__item {
      grid-template-columns: minmax(180px, 220px) minmax(240px, 300px) minmax(0, 1fr);
      grid-template-areas: "meta blob text";
      gap: 64px 32px;
      align-items: center; } }
  @media (min-width: 1000px) {
    .recruit-voice__item {
      gap: 64px 48px; } }

@media (min-width: 768px) {
  .recruit-voice__item--alt {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px) minmax(180px, 220px);
    grid-template-areas: "text blob meta"; } }

.recruit-voice__meta {
  grid-area: meta; }
  @media (min-width: 768px) {
    .recruit-voice__meta {
      align-self: start;
      padding-top: 8px; } }

.recruit-voice__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 0 0 14px;
  line-height: 1; }

.recruit-voice__label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2457BF; }

.recruit-voice__num {
  font-family: "Roboto", sans-serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.85;
  background: linear-gradient(0deg, #2457bf 0%, #81ccd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-right: 16px; }

.recruit-voice__name {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 4px;
  line-height: 1.45;
  letter-spacing: 0.02em; }

.recruit-voice__name-en {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #333333;
  margin: 0 0 14px;
  line-height: 1.4; }

.recruit-voice__rule {
  border: 0;
  height: 1px;
  margin: 0 0 14px;
  background: #E4E4E4; }

.recruit-voice__position {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.75; }

.recruit-voice__blob {
  grid-area: blob;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 1;
  overflow: hidden; }
  .recruit-voice__blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block; }
  @media (min-width: 768px) {
    .recruit-voice__blob {
      margin: 0;
      max-width: none;
      width: 100%; } }

.recruit-voice__blob--a {
  border-radius: 58% 42% 40% 60% / 52% 45% 55% 48%;
  aspect-ratio: 1; }

.recruit-voice__blob--b {
  border-radius: 48% 52% 48% 52% / 68% 38% 62% 42%;
  aspect-ratio: 280 / 300; }
  .recruit-voice__blob--b img {
    object-position: center 20%; }

.recruit-voice__text {
  grid-area: text;
  position: relative;
  margin: 0;
  padding: 8px 8px 8px 12px;
  color: #333333; }
  @media (min-width: 768px) {
    .recruit-voice__text {
      padding: 12px 16px 20px 8px; } }

.recruit-voice__headline {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  color: #333333;
  letter-spacing: 0.02em; }

.recruit-voice__body {
  position: relative;
  z-index: 1;
  margin: 0 0 1em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #333333; }
  .recruit-voice__body:last-of-type {
    margin-bottom: 0; }

.recruit-voice__quote-mark {
  position: absolute;
  z-index: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: #E4E4E4;
  opacity: 0.65;
  pointer-events: none;
  user-select: none; }

.recruit-voice__quote-mark--open {
  top: -0.15em;
  left: -4px; }

.recruit-voice__quote-mark--close {
  bottom: -0.2em;
  right: 0; }

.recruit-job {
  background: #FFFFFF; }

.recruit-spec {
  max-width: 880px;
  margin: 0 auto; }

.recruit-spec__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid #E4E4E4; }
  @media (min-width: 768px) {
    .recruit-spec__row {
      grid-template-columns: 220px 1fr;
      gap: 32px;
      align-items: center; } }

.recruit-spec__dt {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin: 0; }

.recruit-spec__dd {
  font-size: 15px;
  color: #333333;
  line-height: 1.7;
  margin: 0; }

.history-timeline {
  list-style: none;
  padding: 0;
  margin: 0; }
  .history-timeline li {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed #2457BF; }

.history-timeline__year {
  font-weight: 700;
  color: #2457BF;
  flex-shrink: 0; }

.faq-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 64px; }
  @media (min-width: 768px) {
    .faq-categories {
      grid-template-columns: repeat(4, 1fr);
      gap: 32px; } }

.faq-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  padding: 20px 16px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  gap: 8px; }
  .faq-category:hover {
    border-color: #2457BF;
    box-shadow: 0 4px 16px rgba(36, 87, 191, 0.12); }

.faq-category__title {
  font-size: 16px;
  font-weight: 700;
  color: #2457BF;
  margin: 0;
  line-height: 1.5; }

.faq-category__count {
  font-size: 14px;
  margin: 0; }

.faq-category__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px; }
  .faq-category__arrow img {
    width: 10px;
    height: 10px;
    transform: rotate(90deg);
    filter: invert(28%) sepia(72%) saturate(900%) hue-rotate(200deg) brightness(90%) contrast(100%); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px; }

.faq-list__heading {
  font-size: 20px;
  color: #2457BF;
  margin: 64px 0 32px; }

.faq-item {
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #F0F0F0;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden; }

.faq-item__trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 32px;
  text-align: left;
  background: none;
  border: none;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
  transition: background 0.15s ease; }
  @media (max-width: 767px) {
    .faq-item__trigger {
      padding: 16px; } }
  .faq-item__trigger:hover {
    background: rgba(36, 87, 191, 0.03); }

.faq-item__q {
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #2457BF;
  line-height: 1;
  width: 40px; }
  @media (max-width: 767px) {
    .faq-item__q {
      font-size: 32px;
      width: 32px; } }

.faq-item__text {
  flex: 1;
  line-height: 1.6; }

.faq-item__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center; }
  .faq-item__arrow img {
    width: 10px;
    height: 10px;
    filter: invert(28%) sepia(72%) saturate(900%) hue-rotate(200deg) brightness(90%) contrast(100%);
    transition: none; }

.faq-item.is-open .faq-item__arrow img {
  transform: rotate(90deg); }

.faq-item__body {
  display: block;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 32px;
  padding-left: calc(16px + 32px);
  box-sizing: border-box;
  transition: none; }
  @media (max-width: 767px) {
    .faq-item__body {
      padding-left: 0; } }

.faq-item.is-open .faq-item__body {
  max-height: 3200px;
  padding-bottom: 32px; }

.faq-item__answer {
  color: #888888;
  line-height: 1.8;
  margin: 0;
  border-top: 1px solid #E4E4E4;
  padding-top: 16px; }
  .faq-item__answer p {
    margin: 0; }

.faq-list__empty {
  margin: 0 0 32px;
  text-align: center;
  color: #888888;
  font-size: 16px; }

.faq-single {
  max-width: 800px;
  margin: 0 auto; }
  .faq-single__article {
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
    padding: 32px; }
    @media (min-width: 768px) {
      .faq-single__article {
        padding: 64px; } }
  .faq-single__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px; }
  .faq-single__label {
    flex-shrink: 0;
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #2457BF;
    line-height: 1;
    width: 40px; }
    @media (max-width: 767px) {
      .faq-single__label {
        font-size: 32px;
        width: 32px; } }
  .faq-single__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    letter-spacing: 0.04em; }
    @media (min-width: 768px) {
      .faq-single__title {
        font-size: 24px; } }
  .faq-single__content {
    color: #888888;
    line-height: 1.8; }
    .faq-single__content p,
    .faq-single__content ul,
    .faq-single__content ol {
      margin: 0 0 1em; }
    .faq-single__content a {
      color: #2457BF;
      text-decoration: underline;
      text-underline-offset: 2px; }
      .faq-single__content a:hover {
        opacity: 0.85; }
    .faq-single__content img {
      height: auto; }
  .faq-single__back {
    margin: 64px 0 0;
    text-align: center; }

.privacy-policy {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  padding: 32px;
  color: #333333;
  line-height: 1.9; }
  @media (min-width: 768px) {
    .privacy-policy {
      padding: 64px; } }
  .privacy-policy__title {
    margin: 0 0 32px;
    font-size: 24px;
    color: #2457BF; }
  .privacy-policy h3 {
    margin: 32px 0 16px;
    font-size: 18px;
    color: #333333; }
  .privacy-policy p {
    margin: 0 0 16px;
    color: #333333; }
  .privacy-policy ol {
    margin: 0 0 16px;
    padding-left: 1.4em;
    list-style: decimal; }
  .privacy-policy li {
    margin: 0 0 0.35em; }

.cases-main {
  padding-top: 32px;
  padding-bottom: 64px; }
  @media (min-width: 768px) {
    .cases-main {
      padding-top: 64px;
      padding-bottom: 80px; } }
  .cases-main .layout-container {
    display: flex;
    flex-direction: column;
    gap: 64px; }

.cases-filter {
  margin: 0;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }

.cases-filter__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 16px 32px;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  .cases-filter__list li {
    flex-shrink: 0; }
  .cases-filter__list--tags:not(:first-child) {
    border-top: 1px solid #E4E4E4; }

.cases-filter__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 26px;
  color: #333333;
  background: #F0F0F0;
  border: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  cursor: pointer; }
  .cases-filter__item:hover {
    background: #E4E4E4;
    color: #2457BF; }
  .cases-filter__item:focus-visible {
    outline: 2px solid #2457BF;
    outline-offset: 2px; }
  .cases-filter__item--active {
    background: #2457BF;
    color: #FFFFFF; }
    .cases-filter__item--active:hover {
      background: #2457BF;
      color: #FFFFFF; }

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: stretch; }
  @media (min-width: 768px) {
    .cases-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 64px; } }
  @media (min-width: 1000px) {
    .cases-grid {
      grid-template-columns: repeat(3, 1fr); } }
  .cases-grid > li {
    display: flex;
    min-height: 0; }

.cases-grid .patent-tech__card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease; }
  .cases-grid .patent-tech__card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px); }

.cases-grid .patent-tech__card-title {
  position: relative;
  flex-shrink: 0;
  margin-top: 0;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5; }
  .cases-grid .patent-tech__card-title::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 3px;
    background: #2457BF;
    top: 50%;
    transform: translateY(-50%);
    left: -24px; }

.cases-grid .patent-tech__card-tags {
  flex: 1 1 auto;
  align-content: flex-start;
  margin-top: 0;
  margin-bottom: 0; }

.cases-empty {
  margin: 0;
  text-align: center;
  color: #888888; }

.cases-pagination {
  margin-top: 64px;
  text-align: center; }
  .cases-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px; }
  .cases-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 8px 12px;
    font-weight: 600;
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease; }
    .cases-pagination .page-numbers:hover, .cases-pagination .page-numbers.current {
      background: #2457bf;
      color: #FFFFFF;
      border-color: #2457bf; }

.case-single {
  max-width: 960px;
  margin: 0 auto; }
  .case-single__thumb {
    margin: 0 0 32px;
    border-radius: 8px;
    overflow: hidden;
    background: #E4E4E4; }
    .case-single__thumb img {
      width: 100%;
      height: auto;
      display: block; }
  .case-single__tags {
    margin-bottom: 32px; }
  .case-single__title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 32px;
    line-height: 1.5; }
  .case-single__content {
    color: #333333;
    line-height: 1.8; }
    .case-single__content p,
    .case-single__content ul,
    .case-single__content ol {
      margin: 0 0 1em; }
    .case-single__content a {
      color: #2457BF;
      text-decoration: underline;
      text-underline-offset: 2px; }
      .case-single__content a:hover {
        opacity: 0.85; }
    .case-single__content img {
      height: auto; }
  .case-single__back {
    margin: 64px 0 0;
    text-align: center; }

.contact-form-wrap {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px 16px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05); }
  @media (min-width: 768px) {
    .contact-form-wrap {
      padding: 64px; } }

.contact-form__row {
  margin-bottom: 32px; }
.contact-form__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px; }
.contact-form__required {
  background: #c00;
  color: #FFFFFF;
  font-size: 12px;
  padding: 2px 8px;
  margin-left: 8px; }
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #E4E4E4;
  border-radius: 4px;
  background: #FFFFFF;
  color: #333333; }
  .contact-form__input::placeholder, .contact-form__textarea::placeholder {
    color: #ccc;
    opacity: 1; }
.contact-form__textarea {
  min-height: 120px;
  resize: vertical; }
.contact-form__help {
  font-size: 14px;
  color: #888888;
  margin: 0 0 8px; }
.contact-form__panel {
  display: none; }
  .contact-form__panel.is-active {
    display: block; }
.contact-form__uploads {
  background: rgba(36, 87, 191, 0.12);
  border-radius: 8px;
  padding: 16px 32px;
  margin-top: 16px; }
.contact-form__uploads-title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 6px; }
.contact-form__uploads-desc {
  font-size: 14px;
  color: #888888;
  margin: 0 0 16px; }
.contact-form__notice {
  background: #F0F0F0;
  border-radius: 4px;
  padding: 16px;
  margin: 32px 0; }
  .contact-form__notice p {
    font-size: 14px;
    color: #333333;
    margin: 0;
    line-height: 1.7; }
  .contact-form__notice a {
    color: #2457BF;
    text-decoration: underline; }
  .contact-form__notice .contact-form__required {
    margin-left: 0;
    margin-right: 8px; }
.contact-form__submit {
  text-align: center;
  display: grid;
  justify-items: center;
  row-gap: 10px; }
  .contact-form__submit > p {
    display: contents;
    margin: 0; }
  .contact-form__submit .wpcf7-spinner {
    grid-row: 1;
    margin: 0; }
  .contact-form__submit .wpcf7-submit,
  .contact-form__submit button[type="submit"] {
    grid-row: 2; }
.contact-form__after-note {
  margin-top: 32px; }
.contact-form__after-title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin: 16px 0 8px; }
.contact-form__after-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
  margin: 0; }
.contact-form__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px; }
  @media (min-width: 768px) {
    .contact-form__tabs {
      gap: 16px; } }
  .contact-form__tabs .wpcf7-form-control-wrap {
    display: flex;
    flex: 1;
    min-width: 0;
    margin: 0; }
  .contact-form__tabs .wpcf7-radio {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none; }
    @media (min-width: 768px) {
      .contact-form__tabs .wpcf7-radio {
        gap: 16px; } }
  .contact-form__tabs .wpcf7-list-item {
    flex: 1;
    margin: 0;
    min-width: 0; }
  .contact-form__tabs input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none; }
  .contact-form__tabs .wpcf7-list-item > label {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 4px;
    background: #F0F0F0;
    color: #2457BF;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center; }
    .contact-form__tabs .wpcf7-list-item > label:hover {
      background: #E4E4E4;
      color: #333333; }
    .contact-form__tabs .wpcf7-list-item > label:has(input[type="radio"]:checked) {
      background: #2457BF;
      color: #FFFFFF; }
    .contact-form__tabs .wpcf7-list-item > label .wpcf7-list-item-label {
      font-weight: inherit;
      color: inherit;
      pointer-events: none; }
    @media (max-width: 767px) {
      .contact-form__tabs .wpcf7-list-item > label {
        padding: 16px 8px; } }
.contact-form__tab {
  flex: 1;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 4px;
  background: #F0F0F0;
  color: #2457BF;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease; }
  @media (max-width: 767px) {
    .contact-form__tab {
      padding: 16px 8px; } }
  .contact-form__tab:hover:not(.contact-form__tab--active) {
    background: #E4E4E4;
    color: #333333; }
  .contact-form__tab--active {
    background: #2457BF;
    color: #FFFFFF; }

.contact-upload + .contact-upload {
  margin-top: 16px; }
.contact-upload__label {
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px; }
.contact-upload__drop {
  display: block;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative; }
  .contact-upload__drop:hover {
    border-color: rgba(36, 87, 191, 0.35);
    background: rgba(255, 255, 255, 0.9); }
  .contact-upload__drop input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer; }
.contact-upload__hint {
  display: block;
  font-size: 14px;
  color: #888888;
  line-height: 1.6; }

.contact-complete__status {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px;
  line-height: 1.6; }
.contact-complete__message {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin: 0 0 32px; }
.contact-complete__action {
  margin: 0;
  display: flex;
  justify-content: center; }
.contact-complete__back {
  width: 100%;
  max-width: 300px;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box; }

@media (min-width: 768px) {
  .contact-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start; } }

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.contact-info {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05); }
  .contact-info h2 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2457BF; }
  .contact-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px; }
    .contact-info p:last-child {
      margin-bottom: 0; }
  .contact-info a[href^="mailto:"] {
    color: #2457BF;
    word-break: break-all; }

.contact-form-wrap--cf7 .wpcf7 form.wpcf7-form {
  margin: 0; }
.contact-form-wrap--cf7 .wpcf7 .contact-form__panel {
  display: block; }
.contact-form-wrap--cf7 .wpcf7 label,
.contact-form-wrap--cf7 .wpcf7 .wpcf7-form-control-wrap {
  display: block; }
.contact-form-wrap--cf7 .wpcf7 .contact-form__tabs .wpcf7-form-control-wrap {
  display: flex;
  flex: 1;
  min-width: 0; }
.contact-form-wrap--cf7 .wpcf7 .contact-form__tabs label {
  display: flex; }
.contact-form-wrap--cf7 .wpcf7 label .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px; }
.contact-form-wrap--cf7 .wpcf7 label.contact-upload__drop .wpcf7-form-control-wrap {
  margin-top: 0; }
.contact-form-wrap--cf7 .wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-radio) {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #E4E4E4;
  border-radius: 4px;
  background: #FFFFFF;
  box-sizing: border-box; }
  .contact-form-wrap--cf7 .wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-radio)::placeholder {
    color: #ccc;
    opacity: 1; }
.contact-form-wrap--cf7 .wpcf7 textarea.wpcf7-form-control {
  min-height: 120px;
  resize: vertical; }
.contact-form-wrap--cf7 .wpcf7 .wpcf7-list-item {
  margin: 0 0 8px; }
.contact-form-wrap--cf7 .wpcf7 .contact-form__tabs .wpcf7-list-item {
  margin: 0; }
.contact-form-wrap--cf7 .wpcf7 .wpcf7-list-item-label {
  font-weight: 700;
  color: #333333; }
.contact-form-wrap--cf7 .wpcf7 .contact-form__tabs .wpcf7-list-item-label {
  font-weight: inherit;
  color: inherit; }
.contact-form-wrap--cf7 .wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 300px;
  min-width: 0;
  padding: 14px 32px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  background: #2457BF;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  text-decoration: none; }
  .contact-form-wrap--cf7 .wpcf7 .wpcf7-submit::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    background: url("../../assets/img/icon_arrow.svg") no-repeat center/contain;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease; }
  .contact-form-wrap--cf7 .wpcf7 .wpcf7-submit:hover {
    background: #1e479d;
    opacity: 1; }
    .contact-form-wrap--cf7 .wpcf7 .wpcf7-submit:hover::after {
      transform: translateX(4px); }
  .contact-form-wrap--cf7 .wpcf7 .wpcf7-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed; }
.contact-form-wrap--cf7 .wpcf7 .wpcf7-spinner {
  margin: 0; }

.contact-confirm__back {
  margin: 0 0 32px; }

.contact-confirm__back-link {
  font-size: 15px;
  font-weight: 700;
  color: #2457BF;
  text-decoration: underline; }
  .contact-confirm__back-link:hover {
    opacity: 0.85; }

.contact-info__urgent {
  background: #4D4D4D;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px; }
  .contact-info__urgent-title {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 16px;
    margin: 0; }
  .contact-info__urgent-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.6; }

.company-philosophy__inner {
  display: grid;
  gap: 32px; }
  @media (max-width: 767px) {
    .company-philosophy__inner {
      grid-template-columns: 1fr;
      gap: 16px; } }
  @media (min-width: 768px) {
    .company-philosophy__inner {
      grid-template-columns: 1fr 440px;
      align-items: center;
      gap: 120px; } }
@media (max-width: 767px) {
  .company-philosophy__content {
    display: contents; } }
.company-philosophy__title {
  font-size: 40px;
  color: #333333;
  letter-spacing: 0.04em;
  margin: 0 0 16px; }
  @media (max-width: 767px) {
    .company-philosophy__title {
      font-size: 32px; } }
  @media (max-width: 767px) {
    .company-philosophy__title {
      order: 1; } }
.company-philosophy__sub {
  font-size: 16px;
  color: #2457BF;
  font-weight: 700;
  margin: 0 0 32px; }
  @media (max-width: 767px) {
    .company-philosophy__sub {
      order: 2; } }
.company-philosophy__text {
  color: #333333;
  line-height: 1.9;
  margin: 0 0 16px; }
  @media (max-width: 767px) {
    .company-philosophy__text {
      order: 4; } }
.company-philosophy__sign {
  margin: 0;
  color: #333333;
  font-weight: 700; }
  @media (max-width: 767px) {
    .company-philosophy__sign {
      order: 5; } }
.company-philosophy__photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05); }
  @media (max-width: 767px) {
    .company-philosophy__photo {
      order: 3; } }
  .company-philosophy__photo img {
    width: 100%;
    height: auto;
    display: block; }

.company-values {
  margin-top: 64px; }
  .company-values__title {
    text-align: center;
    font-size: 20px;
    color: #333333;
    margin: 0 0 8px; }
  .company-values__lead {
    text-align: center;
    color: #333333;
    margin: 0 auto 32px;
    max-width: 720px; }
  .company-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; }
    @media (min-width: 768px) {
      .company-values__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px; } }

.company-value {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  padding: 32px;
  text-align: center; }
  .company-value__label {
    margin: 0 0 8px;
    font-weight: 700;
    color: #2457BF;
    letter-spacing: 0.04em; }
  .company-value__desc {
    margin: 0;
    color: #888888;
    font-size: 14px;
    line-height: 1.7; }

.company-mission__heading {
  text-align: center;
  margin-bottom: 64px; }
  .company-mission__heading .section-title__main {
    margin-bottom: 8px; }
  .company-mission__heading .section-title__sub {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #2457BF;
    letter-spacing: 0.08em;
    margin: 0 0 32px; }

.company-mission__lead {
  margin: 0 auto;
  max-width: 760px;
  color: #333333;
  font-size: 16px;
  line-height: 1.9; }

.company-mission {
  position: relative; }
  .company-mission__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start; }
    @media (min-width: 768px) {
      .company-mission__cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px; } }
  .company-mission__card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
    padding: 32px;
    min-height: 120px;
    position: relative; }
  .company-mission__card-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    position: relative; }
    .company-mission__card-title::before {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: -32px;
      width: 20px;
      height: 3px;
      background: #2457BF; }
  .company-mission__card-text {
    margin: 0;
    color: #888888;
    font-size: 14px;
    line-height: 1.8; }
  @media (min-width: 768px) {
    .company-mission__card--wide {
      grid-column: 2 / span 1; } }

.company-profile-section {
  background: #FFFFFF;
  padding-top: 64px;
  padding-bottom: 64px; }
  .company-profile-section__header {
    text-align: center;
    margin-bottom: 64px; }
  .company-profile-section__title {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.04em;
    margin: 0 0 8px; }
    @media (max-width: 767px) {
      .company-profile-section__title {
        font-size: 32px; } }
  .company-profile-section__en {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2457BF;
    margin: 0;
    letter-spacing: 0.08em; }

.company-profile {
  margin: 0;
  border-top: 1px solid #E4E4E4; }
  .company-profile__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    border-bottom: 1px solid #E4E4E4; }
    @media (min-width: 768px) {
      .company-profile__row {
        grid-template-columns: 180px 1fr;
        gap: 32px;
        align-items: start; } }
  .company-profile__dt {
    margin: 0;
    padding: 16px 0 0;
    font-weight: 700;
    color: #333333;
    font-size: 16px; }
    @media (min-width: 768px) {
      .company-profile__dt {
        padding: 32px 16px 32px 0; } }
  .company-profile__dd {
    margin: 0;
    padding: 0 0 16px;
    color: #333333;
    font-size: 16px;
    line-height: 1.8; }
    @media (min-width: 768px) {
      .company-profile__dd {
        padding: 32px 0; } }
    .company-profile__dd a {
      color: #2457BF; }
  .company-profile__name-ja {
    display: block;
    font-weight: 500; }
  .company-profile__name-en {
    display: block;
    font-size: 14px;
    color: #888888;
    margin-top: 4px; }
  .company-profile__biz-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px; }
    @media (min-width: 768px) {
      .company-profile__biz-cols {
        grid-template-columns: 1fr 1fr;
        gap: 64px; } }
  .company-profile__list {
    margin: 0;
    padding-left: 1.2em;
    list-style: disc;
    color: #333333;
    line-height: 1.9; }
    .company-profile__list li {
      margin-bottom: 4px; }
  .company-profile__permits {
    list-style: none;
    margin: 0;
    padding: 0; }
  .company-profile__permit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: none; }
    @media (min-width: 768px) {
      .company-profile__permit {
        justify-content: space-between;
        gap: 32px;
        border-bottom: 1px solid #E4E4E4; } }
    .company-profile__permit:first-child {
      padding-top: 0; }
    .company-profile__permit:last-child {
      padding-bottom: 0; }
      @media (min-width: 768px) {
        .company-profile__permit:last-child {
          border-bottom: none; } }
  .company-profile__permit-text {
    flex: 1;
    min-width: 0; }
  .company-profile__pdf {
    flex-shrink: 0;
    padding: 4px 16px;
    font-size: 14px;
    font-weight: 700;
    min-width: auto; }
  .company-profile__row--permits .company-profile__dd {
    padding-bottom: 16px; }

.company-history {
  position: relative;
  margin-top: 0;
  padding-top: calc(6.9178082192% + 32px);
  padding-bottom: 80px;
  background-image: url("../../assets/img/company_anniversary_arc.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto; }
  .company-history__header {
    text-align: center;
    margin-bottom: 64px; }
  .company-history__badge {
    display: block;
    width: 200px;
    max-width: 52vw;
    height: auto;
    margin: 0 auto 32px; }
  .company-history__title {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.04em;
    margin: 0 0 16px; }
    @media (max-width: 767px) {
      .company-history__title {
        font-size: 32px; } }
  .company-history__lead {
    margin: 0;
    font-size: 16px;
    color: #333333;
    line-height: 1.7; }
  .company-history__timeline {
    position: relative;
    margin-top: 64px;
    padding: 32px 0 16px; }
  .company-history__timeline::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 3px;
    background: #2457BF;
    transform: none; }
    @media (min-width: 768px) {
      .company-history__timeline::before {
        left: 50%;
        transform: translateX(-50%); } }
  .company-history__item {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 16px 0 16px 48px; }
    @media (min-width: 768px) {
      .company-history__item {
        width: 50%;
        padding: 16px 0; } }
  .company-history__item::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(24px + 1.5px - 7px);
    width: 14px;
    height: 14px;
    background: #2457BF;
    border-radius: 50%;
    transform: none;
    box-shadow: 0 0 0 4px rgba(36, 87, 191, 0.2);
    z-index: 2; }
    @media (min-width: 768px) {
      .company-history__item::before {
        left: auto;
        right: auto;
        transform: none; } }
  @media (min-width: 768px) {
    .company-history__item--left::before {
      left: auto;
      right: 0;
      transform: translateX(50%); } }
  @media (min-width: 768px) {
    .company-history__item--right::before {
      left: 0;
      right: auto;
      transform: translateX(-50%); } }
  .company-history__card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
    padding: 32px;
    text-align: left; }
  @media (min-width: 768px) {
    .company-history__item--left {
      padding-right: 64px; } }
  @media (min-width: 768px) {
    .company-history__item--right {
      margin-left: 50%;
      padding-left: 64px; } }
  .company-history__year {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #2457BF;
    margin: 0 0 8px;
    line-height: 1.2; }
  .company-history__text {
    margin: 0;
    color: #333333;
    line-height: 1.75;
    font-size: 15px; }
  .company-history__item.js-fade {
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }

.company-partners__header {
  text-align: center;
  margin-bottom: 64px; }
  .company-partners__header .section-title__main {
    margin-bottom: 8px; }
  .company-partners__header .section-title__sub {
    color: #2457BF;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 0 0 32px; }
.company-partners__lead {
  margin: 0 auto;
  max-width: 640px;
  font-size: 16px;
  color: #888888;
  line-height: 1.75; }
.company-partners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px; }
  @media (min-width: 768px) {
    .company-partners__grid {
      grid-template-columns: 1fr 1fr;
      gap: 64px; } }
.company-partners__card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  padding: 32px 32px 36px; }
  @media (min-width: 768px) {
    .company-partners__card {
      padding: 32px 64px; } }
.company-partners__card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em; }
  .company-partners__card-title::before {
    content: "";
    width: 28px;
    height: 3px;
    flex-shrink: 0;
    background: #2457BF;
    border-radius: 1px; }
.company-partners__list {
  margin: 0;
  padding-left: 1.25em;
  list-style: disc;
  color: #333333;
  font-size: 15px;
  line-height: 1.85; }
  .company-partners__list li:not(:last-child) {
    margin-bottom: 0.65em; }
.company-partners__note {
  margin: 64px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13px;
  color: #888888;
  line-height: 1.7; }

.company-access__header {
  text-align: center;
  margin-bottom: 64px; }
  .company-access__header .section-title__main {
    margin-bottom: 8px; }
  .company-access__header .section-title__sub {
    color: #2457BF;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 0 0 32px; }
.company-access__lead {
  margin: 0;
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  letter-spacing: 0.02em; }
.company-access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px; }
  @media (min-width: 768px) {
    .company-access__grid {
      grid-template-columns: 1.15fr 0.85fr;
      align-items: start;
      gap: 64px; } }
.company-access__map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  background: #F0F0F0; }
  .company-access__map iframe {
    display: block;
    width: 100%;
    height: 340px;
    border: 0; }
    @media (min-width: 768px) {
      .company-access__map iframe {
        height: 380px; } }
.company-access__info {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0; }
.company-access__block:not(:last-child) {
  margin-bottom: 64px; }
  @media (min-width: 768px) {
    .company-access__block:not(:last-child) {
      margin-bottom: 72px; } }
.company-access__subhead {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 700;
  color: #2457BF;
  letter-spacing: 0.04em; }
.company-access__text {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.85; }
.company-access__list {
  margin: 0;
  padding-left: 1.5em;
  list-style: disc;
  list-style-position: outside;
  color: #333333;
  font-size: 15px;
  line-height: 1.85; }
  .company-access__list li {
    display: list-item; }
    .company-access__list li:not(:last-child) {
      margin-bottom: 0.5em; }

.error-404 {
  background: #FFFFFF;
  display: flex;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px; }
  @media (min-width: 768px) {
    .error-404 {
      padding-top: 80px;
      padding-bottom: 80px;
      min-height: min(72vh, 760px); } }
  @media (max-width: 767px) {
    .error-404 {
      min-height: min(64vh, 560px); } }
  .error-404 .layout-container {
    width: 100%; }
  .error-404__inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto; }
  .error-404__title {
    margin: 0 0 32px;
    font-family: "Roboto", sans-serif;
    font-size: clamp(2.25rem, 7.5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.15;
    background: linear-gradient(89deg, #2457BF 9.03%, #81CCD5 95.07%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; }
  .error-404__lead {
    margin: 0 0 64px;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    line-height: 1.75; }
  .error-404__actions {
    margin: 0; }
    .error-404__actions .btn--primary {
      color: #FFFFFF;
      text-decoration: none; }
      .error-404__actions .btn--primary:hover, .error-404__actions .btn--primary:focus-visible {
        color: #FFFFFF; }

.strength-case,
.patent-tech__card,
.business-works__card {
  padding: 24px; }

.projects__card-body {
  padding: 24px; }

.strength-case__title-bar,
.business-works__title::before {
  height: 3px; }

.patent-tech .patent-tech__card-title::before {
  height: 3px; }

/*# sourceMappingURL=style.css.map */
