/**
 * A.NTiO Design A - Spigen Style
 * Clean, professional, trustworthy design
 * Rounded corners, English heading decorations
 */

/* ==========================================================================
   Color Variables
   ========================================================================== */

:root {
  --color-primary: #4687bd;
  --color-primary-dark: #2e70a7;
  --color-secondary: #62c1ce;
  --color-accent: #FF4500;
  --color-text: #111;
  --color-text-light: #666;
  --color-bg: #fff;
  --color-bg-gray: #f8f8f8;
  --color-border: #e0e0e0;
}

/* ==========================================================================
   Foundation
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: calc(100vw / 375 * 10);
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

@media (min-width: 768px) {
  html {
    font-size: calc(100vw / 1440 * 10);
    scroll-padding-top: 14rem;
  }
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #111;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.l-container {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .l-container {
    padding: 0 5rem;
  }
}

@media (min-width: 1200px) {
  .l-container {
    padding: 0 6rem;
  }
}

.l-section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .l-section {
    padding: 10rem 0;
  }
}

.l-section--gray {
  background-color: #f8f8f8;
}

.l-section__action {
  text-align: center;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .l-section__action {
    margin-top: 4.5rem;
  }
}

/* Header */
.l-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
  .l-header {
    background-color: var(--color-primary);
    border-bottom: none;
  }
}

.l-header__inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 1.6rem;
  max-width: 160rem;
  margin: 0 auto;
  background-color: #fff;
}

@media (min-width: 768px) {
  .l-header__inner {
    height: 7rem;
    padding: 0 5rem;
    background-color: transparent;
  }
}

@media (min-width: 1200px) {
  .l-header__inner {
    padding: 0 6rem;
  }
}

/* Main */
.l-main {
  min-height: 100vh;
}

/* Footer */
.l-footer {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 0;
}

.l-footer__top {
  padding: 6rem 0 3.5rem;
}

@media (min-width: 768px) {
  .l-footer__top {
    padding: 8rem 0 4rem;
  }
}

.l-footer__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-footer__logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.l-footer__logo-image {
  height: 15rem;
  width: auto;
}

.l-footer__logo {
  font-size: 3.2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.l-footer__logo-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .l-footer__logo-image {
    height: 20rem;
  }
  .l-footer__logo {
    font-size: 4rem;
  }
  .l-footer__logo-sub {
    font-size: 1.4rem;
  }
}

.l-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 3.5rem 0 4.5rem;
  border-bottom: 1px solid #e0e0e0;
}

@media (min-width: 768px) {
  .l-footer__nav {
    gap: 4rem;
    padding: 4rem 0 6rem;
  }
}

.l-footer__nav-group {
  display: flex;
  flex-direction: column;
}

.l-footer__nav-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .l-footer__nav-heading {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}

a.l-footer__nav-heading:hover {
  opacity: 0.6;
}

.l-footer__nav-sub {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .l-footer__nav-sub {
    gap: 1rem;
  }
}

.l-footer__nav-sub--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
}

@media (min-width: 768px) {
  .l-footer__nav-sub--row {
    gap: 1rem 3rem;
  }
}

.l-footer__nav-sub--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.5rem;
}

@media (min-width: 768px) {
  .l-footer__nav-sub--2col {
    grid-template-columns: repeat(8, auto);
    gap: 0.6rem 2.4rem;
  }
}

.l-footer__nav-link {
  font-size: 1.3rem;
  font-weight: 400;
  color: #666;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .l-footer__nav-link {
    font-size: 1.4rem;
  }
}

.l-footer__nav-link:hover {
  opacity: 0.6;
}

.l-footer__nav-group--inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2rem;
}

@media (min-width: 768px) {
  .l-footer__nav-group--inline {
    gap: 1.2rem 3rem;
  }
}

.l-footer__nav-link--inline {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: opacity 0.2s;
  position: relative;
}

@media (min-width: 768px) {
  .l-footer__nav-link--inline {
    font-size: 1.6rem;
  }
}

.l-footer__nav-link--inline:hover {
  opacity: 0.6;
}

.l-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 4.5rem 0 5rem;
}

@media (min-width: 768px) {
  .l-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 5rem 0 6rem;
  }
}

.l-footer__links-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .l-footer__links-wrap {
    flex-direction: row;
    gap: 3rem;
  }
}

.l-footer__stores {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .l-footer__stores {
    gap: 2rem;
  }
}

.l-footer__store-link {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .l-footer__store-link {
    font-size: 1.6rem;
  }
}

.l-footer__store-link:hover {
  opacity: 0.6;
}

.l-footer__external-icon {
  display: inline-block;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.l-footer__social {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.l-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: opacity 0.2s;
}

.l-footer__social-link svg {
  width: 2.4rem;
  height: 2.4rem;
}

@media (min-width: 768px) {
  .l-footer__social-link svg {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.l-footer__social-link:hover {
  opacity: 0.6;
}

.l-footer__copyright {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
}

/* ==========================================================================
   Component
   ========================================================================== */

/* Logo */
.c-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.c-logo__text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111;
}

.c-logo__sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0;
}

.c-logo__image {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .c-logo {
    gap: 0.8rem;
    background-color: #fff;
    height: 7rem;
    padding: 0 3rem;
    margin-left: -5rem;
    padding-left: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-logo__text {
    font-size: 2.4rem;
  }
  .c-logo__sub {
    font-size: 1rem;
  }
  .c-logo__image {
    height: 4.5rem;
  }
}

@media (min-width: 1200px) {
  .c-logo {
    margin-left: -6rem;
    padding-left: 6rem;
  }
}

/* Navigation */
.c-nav {
  display: none;
}

@media (min-width: 768px) {
  .c-nav {
    display: block;
  }
}

.c-nav__list {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.c-nav__link {
  font-size: 1.4rem;
  font-weight: 500;
  color: #111;
  transition: color 0.2s;
  position: relative;
}

@media (min-width: 768px) {
  .c-nav__link {
    color: #fff;
  }
}

.c-nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.2s;
}

@media (min-width: 768px) {
  .c-nav__link::after {
    background-color: #fff;
  }
}

.c-nav__link:hover::after {
  width: 100%;
}

.c-nav__link--no-link {
  cursor: default;
}

/* Mobile Navigation */
.c-nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  padding: 2rem;
  z-index: 999;
  overflow-x: hidden;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

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

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

.c-nav.is-open .c-nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.c-nav.is-open .c-nav__item {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.c-nav.is-open .c-nav__link {
  display: block;
  padding: 1.5rem 0;
  font-size: 1.6rem;
}

.c-nav.is-open .c-nav__link::after {
  display: none;
}

.c-nav.is-open .c-mega-menu {
  display: none !important;
}

/* Mobile Accordion */
.c-nav.is-open .c-nav__item--has-accordion .c-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-nav__accordion-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.c-nav.is-open .c-nav__accordion-toggle {
  display: flex;
}

.c-nav__accordion-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #111;
  border-radius: 50%;
}

.c-nav__accordion-icon-line {
  position: absolute;
  background-color: #111;
  transition: transform 0.3s, opacity 0.3s;
}

@media (min-width: 768px) {
  .c-nav__accordion-icon-line {
    background-color: #fff;
  }
}

.c-nav__accordion-icon-line--h {
  width: 1rem;
  height: 1px;
}

.c-nav__accordion-icon-line--v {
  width: 1px;
  height: 1rem;
}

.c-nav__accordion-toggle.is-active .c-nav__accordion-icon-line--v {
  transform: rotate(90deg);
  opacity: 0;
}

.c-nav__submenu {
  display: none;
  padding: 0 0 1.5rem;
}

.c-nav__submenu.is-open {
  display: block;
  animation: fadeIn 0.3s ease;
}

.c-nav__submenu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-nav__submenu-item {
  border-top: 1px solid #f5f5f5;
}

.c-nav__submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0 1.2rem 1.5rem;
  font-size: 1.4rem;
  color: #555;
  transition: color 0.2s;
}

.c-nav__submenu-link:hover {
  color: #111;
}

.c-nav__submenu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 1rem;
  color: #111;
  transition: border-color 0.2s;
}

.c-nav__submenu-link:hover .c-nav__submenu-arrow {
  border-color: #111;
}

/* Mobile Nav Footer */
.c-nav__footer {
  display: none;
}

.c-nav.is-open .c-nav__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 3rem;
}

.c-nav.is-open .c-nav__list {
  flex: 0 0 auto;
}

.c-nav__stores {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.c-nav__store-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.c-nav__store-link:hover {
  opacity: 0.6;
}

.c-nav__external-icon {
  display: inline-block;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.c-nav__social {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.c-nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: opacity 0.2s;
}

.c-nav__social-link svg {
  width: 2.2rem;
  height: 2.2rem;
}

.c-nav__social-link:hover {
  opacity: 0.6;
}

.c-nav__copyright {
  font-size: 1.2rem;
  font-weight: 500;
  color: #888;
}

/* Hamburger */
.c-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 2.4rem;
  height: 2.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #111;
  transition: all 0.3s;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Button - Pill Shape */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .c-button {
    padding: 1.6rem 4rem;
    font-size: 1.6rem;
  }
}

.c-button--primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.c-button--primary:hover {
  background-color: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
}

.c-button--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.c-button--outline:hover {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.c-button--white {
  background-color: #fff;
  color: #111;
  border-color: #fff;
}

.c-button--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* External Link Button - Primary */
.c-button--external {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  gap: 0.8rem;
}

.c-button--external:hover {
  background-color: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
}

/* External Link Button - White */
.c-button--external-white {
  background-color: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
  gap: 0.8rem;
}

.c-button--external-white:hover {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.c-button--external-white:hover .c-button__icon {
  color: #fff;
}

.c-button__icon {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

.c-button__icon svg {
  width: 100%;
  height: 100%;
}

/* Section Heading with English decoration */
.c-section-heading {
  text-align: left;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .c-section-heading {
    margin-bottom: 4.5rem;
  }
}

.c-section-heading__en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .c-section-heading__en {
    font-size: 4.8rem;
    margin-bottom: 0.5rem;
  }
}

.c-section-heading__ja {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .c-section-heading__ja {
    font-size: 2.4rem;
  }
}

/* ==========================================================================
   Project
   ========================================================================== */

/* Hero - Split Layout Fade Slider (LEXUS style) */
.p-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #fff;
}

@media (min-width: 768px) {
  .p-hero {
    height: 65vh;
    min-height: 50rem;
    max-height: 65rem;
  }
}

.p-hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .p-hero__slide {
    flex-direction: row;
  }
}

.p-hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

/* Content Area (Left) */
.p-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 5rem;
  background-color: #fff;
  color: #111;
}

@media (min-width: 768px) {
  .p-hero__content {
    width: 45%;
    padding: 6rem 5rem 6rem 6%;
  }
}

@media (min-width: 1200px) {
  .p-hero__content {
    padding: 8rem 6rem 8rem 8%;
  }
}

/* Visual Area (Right) */
.p-hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-hero__visual {
    width: 55%;
    height: 100%;
    aspect-ratio: auto;
  }
}

.p-hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #f5f5f5;
}

/* English Title (large) */
.p-hero__title-en {
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #111;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

@media (min-width: 768px) {
  .p-hero__title-en {
    font-size: 4.8rem;
    margin-bottom: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .p-hero__title-en {
    font-size: 5.6rem;
    margin-bottom: 1.5rem;
  }
}

.p-hero__slide.is-active .p-hero__title-en {
  opacity: 1;
  transform: translateY(0);
}

/* Japanese Title (sub) */
.p-hero__title-ja {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #666;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

@media (min-width: 768px) {
  .p-hero__title-ja {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
}

.p-hero__slide.is-active .p-hero__title-ja {
  opacity: 1;
  transform: translateY(0);
}

/* Description */
.p-hero__text {
  font-size: 1.4rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  color: #2a2a2a;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}

@media (min-width: 768px) {
  .p-hero__text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}

.p-hero__slide.is-active .p-hero__text {
  opacity: 1;
  transform: translateY(0);
}

/* Link */
.p-hero__link {
  display: inline-block;
  align-self: flex-start;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  background-color: var(--color-primary);
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s, background-color 0.2s;
}

@media (min-width: 768px) {
  .p-hero__link {
    font-size: 1.4rem;
    padding: 1.4rem 3.2rem;
  }
}

.p-hero__slide.is-active .p-hero__link {
  opacity: 1;
  transform: translateY(0);
}

.p-hero__link:hover {
  background-color: var(--color-primary-dark);
}

/* Slide Indicators */
.p-hero__indicators {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .p-hero__indicators {
    bottom: 4rem;
    left: 8%;
  }
}

@media (min-width: 1200px) {
  .p-hero__indicators {
    bottom: 5rem;
    left: 10%;
  }
}

.p-hero__indicator {
  width: 3.5rem;
  height: 0.3rem;
  background-color: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .p-hero__indicator {
    width: 4.5rem;
  }
}

.p-hero__indicator.is-active {
  background-color: var(--color-primary);
}

.p-hero__indicator:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

/* Hero Static Variant (for use within pages, not full viewport) */
.p-hero--static {
  height: auto;
}

@media (min-width: 768px) {
  .p-hero--static {
    height: auto;
    min-height: 0;
    max-height: none;
  }
}

.p-hero--static .p-hero__slide {
  position: relative;
}

@media (min-width: 768px) {
  .p-hero--static .p-hero__visual {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* Category Grid */
.p-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .p-category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
}

/* 6 column variant */
@media (min-width: 768px) {
  .p-category-grid--6col {
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
  }
}

.p-category-grid--6col .p-category-card__title {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .p-category-grid--6col .p-category-card__title {
    font-size: 1.6rem;
  }
}

.p-category-card {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.p-category-card__image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 1.6rem;
}

.p-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.p-category-card:hover .p-category-card__image img {
  transform: scale(1.05);
}

.p-category-card__content {
  padding: 1.8rem 0 0;
}

.p-category-card__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  .p-category-card__title {
    font-size: 2rem;
  }
}

.p-category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  background-color: #111;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .p-category-card__link {
    font-size: 1.3rem;
    padding: 1.1rem 2.4rem;
  }
}

.p-category-card:hover .p-category-card__link {
  background-color: #2a2a2a;
}

.p-category-card__external-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

/* Products Header */
.p-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .p-products-header {
    margin-bottom: 4.5rem;
  }
}

.p-products-header .c-section-heading {
  margin-bottom: 0;
}

/* Products Navigation */
.p-products-nav {
  display: flex;
  gap: 1rem;
}

.p-products-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}

.p-products-nav__btn:hover {
  background-color: #2a2a2a;
}

.p-products-nav__btn:disabled {
  background-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}

.p-products-nav__btn:disabled:hover {
  background-color: #e0e0e0;
  color: #999;
}

/* Products Slider */
.p-products-slider {
  position: relative;
  overflow: hidden;
}

.p-products-slider__track {
  display: flex;
  gap: 2.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.p-products-slider__track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .p-products-slider__track {
    gap: 3.5rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media (min-width: 1200px) {
  .p-products-slider__track {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

/* Product Card - Horizontal scroll style */
.p-product-card {
  flex-shrink: 0;
  width: 28rem;
  background-color: transparent;
}

@media (min-width: 768px) {
  .p-product-card {
    width: 32rem;
  }
}

.p-product-card__link {
  display: block;
}

.p-product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.8rem;
  background-color: #f5f5f5;
}

.p-product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, transform 0.4s;
}

.p-product-card__image img.is-active {
  opacity: 1;
  visibility: visible;
}

.p-product-card:hover .p-product-card__image img.is-active {
  transform: scale(1.05);
}

.p-product-card__body {
  padding: 1.8rem 0 0;
}

.p-product-card__category {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  background-color: #f0f0f0;
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
  margin-bottom: 1rem;
}

.p-product-card__name {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #111;
}

@media (min-width: 768px) {
  .p-product-card__name {
    font-size: 1.6rem;
  }
}

.p-product-card__desc {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .p-product-card__desc {
    font-size: 1.4rem;
  }
}

.p-product-card__link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  background-color: #111;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .p-product-card__link-text {
    font-size: 1.3rem;
    padding: 1.1rem 2.4rem;
  }
}

.p-product-card:hover .p-product-card__link-text {
  background-color: #2a2a2a;
}

.p-product-card__external-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-product-card__external-icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}

/* Features Section - Numbered Cards */
.p-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .p-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

.p-feature {
  padding: 3.5rem 3rem;
  border: 1px solid #e8e8e8;
  border-radius: 1.6rem;
}

@media (min-width: 768px) {
  .p-feature {
    padding: 4.5rem 4rem;
  }
}

.p-feature__num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .p-feature__num {
    font-size: 5rem;
    margin-bottom: 2.5rem;
  }
}

.p-feature__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #111;
}

@media (min-width: 768px) {
  .p-feature__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

.p-feature__text {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .p-feature__text {
    font-size: 1.4rem;
  }
}

/* Banner */
.p-banner {
  position: relative;
  width: 100%;
  height: 32rem;
  overflow: hidden;
  border-radius: 1.6rem;
}

@media (min-width: 768px) {
  .p-banner {
    height: 40rem;
    border-radius: 2rem;
  }
}

.p-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(70, 135, 189, 0.7);
}

.p-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 60rem;
}

.p-banner__en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .p-banner__en {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}

.p-banner__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .p-banner__title {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}

.p-banner__text {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .p-banner__text {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
}

/* News List */
.p-news-list {
  background-color: #fff;
  border-radius: 1.6rem;
  overflow: hidden;
}

.p-news-item {
  border-bottom: 1px solid #f0f0f0;
}

.p-news-item:last-child {
  border-bottom: none;
}

.p-news-item__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 2rem;
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .p-news-item__link {
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 2.5rem 3rem;
  }
}

.p-news-item__link:hover {
  background-color: #f8f8f8;
}

.p-news-item__date {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #888;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-news-item__date {
    font-size: 1.4rem;
    min-width: 10rem;
  }
}

.p-news-item__category {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.4rem 1.2rem;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-news-item__category {
    font-size: 1.2rem;
  }
}

.p-news-item__title {
  font-size: 1.4rem;
  flex: 1;
  width: 100%;
  color: #111;
}

@media (min-width: 768px) {
  .p-news-item__title {
    font-size: 1.5rem;
    width: auto;
  }
}

/* CTA Section */
.p-cta {
  position: relative;
  padding: 6rem 2.5rem;
  overflow: hidden;
  border-radius: 2rem;
}

@media (min-width: 768px) {
  .p-cta {
    padding: 10rem 5rem;
    border-radius: 2.4rem;
  }
}

.p-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(120, 180, 255, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(180, 140, 255, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(100, 220, 200, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(255, 180, 200, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #f8f9ff 0%, #fff5f8 50%, #f0fff8 100%);
  z-index: 0;
}

.p-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-cta__en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .p-cta__en {
    font-size: 5rem;
    margin-bottom: 0.5rem;
  }
}

.p-cta__title {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .p-cta__title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}

.p-cta__text {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .p-cta__text {
    font-size: 1.6rem;
    margin-bottom: 4.5rem;
  }
}

.p-cta__button {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background-color: #111;
  padding: 1.6rem 4rem;
  border-radius: 50px;
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .p-cta__button {
    font-size: 1.5rem;
    padding: 1.8rem 5rem;
  }
}

.p-cta__button:hover {
  background-color: #2a2a2a;
}

/* Dual CTA Section (2 Column Layout) */
.p-cta-dual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .p-cta-dual {
    flex-direction: row;
    gap: 3rem;
  }
}

.p-cta-dual__item {
  position: relative;
  flex: 1;
  padding: 6rem 2.5rem;
  overflow: hidden;
  border-radius: 2rem;
}

@media (min-width: 768px) {
  .p-cta-dual__item {
    padding: 8rem 4rem;
    border-radius: 2.4rem;
  }
}

.p-cta-dual__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* Contact CTA Background - Aurora gradient (blue/purple/teal) */
.p-cta-dual__item--contact .p-cta-dual__bg {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(120, 180, 255, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(180, 140, 255, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(100, 220, 200, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(255, 180, 200, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #f8f9ff 0%, #fff5f8 50%, #f0fff8 100%);
}

/* Franchise CTA Background - Aurora gradient (orange/yellow/pink) */
.p-cta-dual__item--franchise .p-cta-dual__bg {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 200, 120, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255, 160, 100, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(255, 220, 100, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(255, 140, 180, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #fffaf5 0%, #fff8f0 50%, #fffdfa 100%);
}

.p-cta-dual__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-cta-dual__en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .p-cta-dual__en {
    font-size: 4.2rem;
    margin-bottom: 0.5rem;
  }
}

.p-cta-dual__title {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .p-cta-dual__title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}

.p-cta-dual__text {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .p-cta-dual__text {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}

.p-cta-dual__button {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-primary);
  padding: 1.6rem 3.5rem;
  border-radius: 50px;
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .p-cta-dual__button {
    font-size: 1.5rem;
    padding: 1.8rem 4.5rem;
  }
}

.p-cta-dual__button:hover {
  background-color: var(--color-primary-dark);
}

/* CTA Box (Simple centered box) */
.p-cta-box {
  background-color: #fff;
  padding: 4rem 2.5rem;
  border-radius: 1.2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .p-cta-box {
    padding: 6rem 4rem;
  }
}

.p-cta-box__title {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .p-cta-box__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}

.p-cta-box__text {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .p-cta-box__text {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}

/* ==========================================================================
   Utility
   ========================================================================== */

.u-text-center {
  text-align: center;
}

/* Margin Bottom */
.u-mb-2 { margin-bottom: 0.8rem; }
.u-mb-3 { margin-bottom: 1.2rem; }
.u-mb-4 { margin-bottom: 1.6rem; }
.u-mb-5 { margin-bottom: 2rem; }
.u-mb-6 { margin-bottom: 2.4rem; }
.u-mb-8 { margin-bottom: 3.2rem; }
.u-mb-10 { margin-bottom: 4rem; }

/* Margin Top */
.u-mt-2 { margin-top: 0.8rem; }
.u-mt-3 { margin-top: 1.2rem; }
.u-mt-4 { margin-top: 1.6rem; }
.u-mt-5 { margin-top: 2rem; }
.u-mt-6 { margin-top: 2.4rem; }
.u-mt-8 { margin-top: 3.2rem; }
.u-mt-10 { margin-top: 4rem; }
.u-mt-40 {
  margin-top: 4rem;
}

.u-sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

/* ==========================================================================
   Dropdown Component - Lexus Style
   ========================================================================== */

/* Navigation item with dropdown */
.c-nav__item--has-dropdown {
  position: relative;
}

/* Hover bridge - prevents gap between menu item and dropdown */
.c-nav__item--has-dropdown::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 50vh;
  background: transparent;
  z-index: 99;
}

/* Dropdown container - positioned at header bottom */
.c-dropdown {
  position: fixed;
  top: 6rem;
  left: 0;
  min-width: 24rem;
  max-width: 32rem;
  width: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 100;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.06);
  padding: 1.5rem 2rem;
}

@media (min-width: 768px) {
  .c-dropdown {
    top: 7rem;
  }
}

/* Show dropdown on hover */
.c-nav__item--has-dropdown:hover .c-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dropdown link item */
.c-dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  transition: background-color 0.2s ease;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.c-dropdown__link:last-child {
  border-bottom: none;
}

.c-dropdown__link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Dropdown text */
.c-dropdown__text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #111;
  letter-spacing: 0.02em;
}

/* Dropdown arrow */
.c-dropdown__arrow {
  font-size: 1.2rem;
  font-weight: 400;
  color: #999;
  margin-left: 1.5rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.c-dropdown__link:hover .c-dropdown__arrow {
  color: #111;
  transform: translateX(0.3rem);
}

/* Mobile: hide dropdown completely */
@media (max-width: 767px) {
  .c-dropdown {
    display: none;
  }

  .c-nav__item--has-dropdown {
    position: static;
  }
}

/* ==========================================================================
   Mega Menu (Museum Style)
   ========================================================================== */

/* Mega menu container - full-width background, content right-aligned */
.c-mega-menu {
  position: fixed;
  top: 6rem;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 5;
  background-color: #fff;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.08);
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .c-mega-menu {
    top: 7rem;
    padding: 3rem 0;
  }
}

/* Inner container - right-aligned (default) */
.c-mega-menu__inner {
  max-width: 160rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .c-mega-menu__inner {
    padding: 0 5rem;
  }
}

/* Business mega menu - cards aligned under "事業内容" nav item */
.c-mega-menu--business .c-mega-menu__inner {
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
}

.c-mega-menu--business .c-mega-menu__grid {
  /* margin-left is set dynamically via JavaScript */
}

/* Grid layout for cards - compact, right-aligned */
.c-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(14rem, 16rem));
  gap: 1.5rem;
}

/* 2 items grid */
.c-mega-menu__grid--2col {
  grid-template-columns: repeat(2, minmax(14rem, 16rem));
}

/* Horizontal row layout */
.c-mega-menu__grid--row {
  grid-template-columns: repeat(6, minmax(14rem, 16rem));
  gap: 1.5rem;
}

/* 5 items row layout */
.c-mega-menu__grid--5col {
  grid-template-columns: repeat(5, minmax(14rem, 16rem));
  gap: 1.5rem;
}

/* Products grid - all categories */
.c-mega-menu__grid--products {
  grid-template-columns: repeat(auto-fill, minmax(13rem, 15rem));
  column-gap: 1.2rem;
  row-gap: 1.2rem;
  width: 100%;
  justify-content: center;
}

/* Products mega menu - with sections */
.c-mega-menu--products .c-mega-menu__inner {
  flex-direction: column;
  align-items: center;
  padding: 0 5rem;
}

.c-mega-menu__section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  text-align: right;
  padding-right: 1rem;
}

/* Submenu header item */
.c-nav__submenu-item--header {
  font-size: 1.2rem;
  font-weight: 600;
  color: #999;
  padding: 1rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.c-nav__submenu-item--header:not(:first-child) {
  margin-top: 1rem;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

/* Show mega menu on hover */
/* Hover bridge - prevents hover from being lost when moving to mega menu */
.c-nav__item--has-mega-menu {
  position: relative;
}

.c-nav__item--has-mega-menu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -3rem;
  right: -3rem;
  height: 5rem;
  background: transparent;
  pointer-events: auto;
}

/* Mega menu visible states */
.c-nav__item--has-mega-menu:hover .c-mega-menu,
.c-mega-menu:hover,
.c-mega-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Ensure pointer-events is always auto when JS class is applied (no transition delay) */
.c-mega-menu.is-visible {
  transition-property: opacity, transform;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Individual card */
.c-mega-menu__card {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
}

.c-mega-menu__card:hover {
  transform: translateY(-0.3rem);
}

/* Image wrapper for positioning arrow */
.c-mega-menu__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

/* Tag on image */
.c-mega-menu__tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.3rem 0.8rem;
  background-color: rgba(70, 135, 189, 0.85);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.3rem;
  z-index: 1;
}

/* Image with aspect ratio - compact */
.c-mega-menu__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.c-mega-menu__card:hover .c-mega-menu__image {
  transform: scale(1.05);
}

/* Arrow button in bottom right - smaller */
.c-mega-menu__arrow {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background-color: #0066cc;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 102, 204, 0.25);
}

.c-mega-menu__card:hover .c-mega-menu__arrow {
  background-color: #0052a3;
  transform: translateX(0.2rem);
}

/* Title below image - smaller */
.c-mega-menu__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  text-align: left;
  letter-spacing: 0.02em;
  padding: 0.8rem 0;
  background: transparent;
}

/* Arrow next to title */
.c-mega-menu__title-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  background-color: #fff;
  color: #111;
  border: 1px solid #111;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.c-mega-menu__card:hover .c-mega-menu__title-arrow {
  background-color: #f5f5f5;
  transform: translateX(0.2rem);
}

/* Mega Menu Section */
.c-mega-menu__section {
  width: 100%;
}

.c-mega-menu__section--separated {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.c-mega-menu__section-header {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary, #4687bd);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0.02em;
  text-align: left;
  width: 100%;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--color-primary, #4687bd);
}

/* Mega Menu Link Grid */
.c-mega-menu__link-grid {
  display: grid;
  gap: 1rem;
}

.c-mega-menu__link-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.c-mega-menu__link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem;
  background-color: var(--color-primary, #4687bd);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.4rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  min-height: 4.8rem;
}

.c-mega-menu__link-item:hover {
  background-color: var(--color-primary-dark, #2e70a7);
  transform: translateY(-0.2rem);
}

/* Mobile: hide mega menu completely */
@media (max-width: 767px) {
  .c-mega-menu {
    display: none;
  }

  .c-nav__item--has-mega-menu {
    position: static;
  }
}

/* ==========================================================================
   Scroll Reveal Animation (Lexus Style)
   ========================================================================== */

/* Image reveal with wipe mask effect */
.js-reveal-image {
  position: relative;
  overflow: hidden;
}

.js-reveal-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #111;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
  z-index: 2;
}

.js-reveal-image.is-revealed::before {
  transform: scaleX(0);
}

.js-reveal-image img {
  transform: scale(1.2);
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.js-reveal-image.is-revealed img {
  transform: scale(1);
}

/* Text fade up animation */
.js-reveal-text {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-reveal-text.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for text */
.js-reveal-text[data-delay="1"] { transition-delay: 0.1s; }
.js-reveal-text[data-delay="2"] { transition-delay: 0.2s; }
.js-reveal-text[data-delay="3"] { transition-delay: 0.3s; }
.js-reveal-text[data-delay="4"] { transition-delay: 0.4s; }

/* Section reveal - subtle fade up */
.js-section-reveal {
  opacity: 0;
  transform: translateY(6rem);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-section-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Card reveal with stagger */
.js-reveal-card {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-reveal-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for cards */
.js-reveal-card:nth-child(1) { transition-delay: 0s; }
.js-reveal-card:nth-child(2) { transition-delay: 0.1s; }
.js-reveal-card:nth-child(3) { transition-delay: 0.2s; }
.js-reveal-card:nth-child(4) { transition-delay: 0.3s; }
.js-reveal-card:nth-child(5) { transition-delay: 0.4s; }
.js-reveal-card:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   Headings (H1-H5)
   ========================================================================== */

.c-heading-1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .c-heading-1 {
    font-size: 4.8rem;
  }
}

.c-heading-2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .c-heading-2 {
    font-size: 3.6rem;
  }
}

.c-heading-3 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .c-heading-3 {
    font-size: 2.8rem;
  }
}

.c-heading-4 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #111;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .c-heading-4 {
    font-size: 2.2rem;
  }
}

.c-heading-5 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: #111;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .c-heading-5 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Image Card Link (Image with Text Overlay)
   ========================================================================== */

.p-image-card {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1.6rem;
}

.p-image-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.p-image-card:hover .p-image-card__image {
  transform: scale(1.05);
}

.p-image-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(46, 112, 167, 0.9) 0%, rgba(70, 135, 189, 0.4) 60%, rgba(70, 135, 189, 0.1) 100%);
}

.p-image-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  color: #fff;
}

@media (min-width: 768px) {
  .p-image-card__content {
    padding: 2rem;
  }
}

.p-image-card__en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .p-image-card__en {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
}

.p-image-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .p-image-card__title {
    font-size: 2rem;
  }
}

.p-image-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-top: 0.8rem;
  transition: gap 0.3s;
}

.p-image-card__external-icon {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  vertical-align: middle;
  stroke: currentColor;
  transition: transform 0.3s;
}

.p-image-card:hover .p-image-card__external-icon {
  transform: translate(0.1rem, -0.1rem);
}

@media (min-width: 768px) {
  .p-image-card__link {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }
}

.p-image-card__link-arrow {
  transition: transform 0.3s;
}

.p-image-card:hover .p-image-card__link {
  gap: 0.8rem;
}

.p-image-card:hover .p-image-card__link-arrow {
  transform: translateX(0.2rem);
}

/* Vertical (Portrait) variant */
.p-image-card--vertical .p-image-card__image {
  aspect-ratio: 3 / 4;
}

/* Wide (Banner) variant */
.p-image-card--wide .p-image-card__image {
  aspect-ratio: 21 / 9;
}

@media (min-width: 768px) {
  .p-image-card--wide .p-image-card__image {
    aspect-ratio: 3 / 1;
  }
}

/* ==========================================================================
   Products Grid
   ========================================================================== */

.p-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .p-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.p-products-grid--3col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .p-products-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-products-grid--4col {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .p-products-grid--4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

/* Product card in grid should be flexible width */
.p-products-grid .p-product-card {
  width: 100%;
}

/* ==========================================================================
   Product Card
   ========================================================================== */

.c-card--product {
  display: block;
  background-color: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.c-card--product:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.c-card--product .c-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.c-card--product .c-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.c-card--product:hover .c-card__image img {
  transform: scale(1.05);
}

.c-card--product .c-card__body {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .c-card--product .c-card__body {
    padding: 2rem;
  }
}

.c-card--product .c-card__category {
  display: inline-block;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.c-card--product .c-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  .c-card--product .c-card__title {
    font-size: 1.5rem;
  }
}

.c-card--product .c-card__price {
  font-size: 1.3rem;
  color: #666;
}

/* ==========================================================================
   Section Gray Background
   ========================================================================== */

.l-section--gray {
  background-color: #f8f8f8;
}

/* ==========================================================================
   Accordion Component
   ========================================================================== */

.c-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 1.2rem;
  overflow: hidden;
}

.c-accordion__item {
  border-bottom: 1px solid #e0e0e0;
}

.c-accordion__item:last-child {
  border-bottom: none;
}

.c-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2rem 2.5rem;
  background-color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .c-accordion__header {
    padding: 2.5rem 3rem;
  }
}

.c-accordion__header:hover {
  background-color: #f8f8f8;
}

.c-accordion__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .c-accordion__title {
    font-size: 1.6rem;
  }
}

.c-accordion__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  margin-left: 1.5rem;
  border: 1px solid #111;
  border-radius: 50%;
}

.c-accordion__icon::before,
.c-accordion__icon::after {
  content: '';
  position: absolute;
  background-color: #111;
  transition: opacity 0.3s ease;
}

.c-accordion__icon::before {
  width: 1rem;
  height: 1px;
}

.c-accordion__icon::after {
  width: 1px;
  height: 1rem;
}

.c-accordion__item.is-open .c-accordion__icon::after {
  opacity: 0;
}

.c-accordion__body {
  display: none;
  padding: 0 2.5rem 2rem;
  background-color: #fff;
}

@media (min-width: 768px) {
  .c-accordion__body {
    padding: 0 3rem 2.5rem;
  }
}

.c-accordion__item.is-open .c-accordion__body {
  display: block;
  animation: fadeIn 0.3s ease;
}

.c-accordion__content {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
}

@media (min-width: 768px) {
  .c-accordion__content {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Timeline Component
   ========================================================================== */

.c-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .c-timeline {
    gap: 3rem;
  }
}

.c-timeline__item {
  padding: 2.5rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 1.2rem;
}

@media (min-width: 768px) {
  .c-timeline__item {
    padding: 3rem;
  }
}

.c-timeline__year {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #111;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .c-timeline__year {
    font-size: 1.3rem;
    padding: 0.6rem 1.4rem;
    margin-bottom: 1.8rem;
  }
}

.c-timeline__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .c-timeline__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

.c-timeline__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
}

@media (min-width: 768px) {
  .c-timeline__text {
    font-size: 1.5rem;
  }
}

/* Timeline Compact */
.c-timeline--compact {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e0e0e0;
}

.c-timeline--compact .c-timeline__item {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.6rem;
  padding: 1.6rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  align-items: baseline;
}

@media (min-width: 768px) {
  .c-timeline--compact .c-timeline__item {
    grid-template-columns: 12rem 1fr;
    gap: 3rem;
    padding: 2rem 0;
  }
}

.c-timeline--compact .c-timeline__year {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .c-timeline--compact .c-timeline__year {
    font-size: 1.5rem;
  }
}

.c-timeline--compact .c-timeline__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-timeline--compact .c-timeline__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .c-timeline--compact .c-timeline__title {
    font-size: 1.6rem;
  }
}

.c-timeline--compact .c-timeline__text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #666;
}

@media (min-width: 768px) {
  .c-timeline--compact .c-timeline__text {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   Table Component
   ========================================================================== */

.c-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  overflow: hidden;
}

.c-table th,
.c-table td {
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}

@media (min-width: 768px) {
  .c-table th,
  .c-table td {
    padding: 1.8rem 2.5rem;
    font-size: 1.5rem;
  }
}

.c-table th {
  font-weight: 600;
  color: #111;
  background-color: #f8f8f8;
}

.c-table td {
  color: #333;
  background-color: #fff;
}

.c-table tr:last-child th,
.c-table tr:last-child td {
  border-bottom: none;
}

.c-table tbody tr:hover td {
  background-color: #fafafa;
}

/* Definition List Style Table */
.c-table--dl th {
  width: 30%;
  vertical-align: top;
}

@media (max-width: 767px) {
  .c-table--dl th,
  .c-table--dl td {
    display: block;
    width: 100%;
  }

  .c-table--dl th {
    padding-bottom: 0.5rem;
    border-bottom: none;
  }

  .c-table--dl td {
    padding-top: 0.5rem;
  }

  .c-table--dl tr {
    display: block;
    border-bottom: 1px solid #e0e0e0;
  }

  .c-table--dl tr:last-child {
    border-bottom: none;
  }
}

/* Striped Table */
.c-table--striped tbody tr:nth-child(even) td {
  background-color: #f8f8f8;
}

.c-table--striped tbody tr:nth-child(even):hover td {
  background-color: #f0f0f0;
}

/* ==========================================================================
   Text Link Component
   ========================================================================== */

.c-text-link {
  color: #0066cc;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  transition: color 0.2s, text-decoration 0.2s;
}

.c-text-link:hover {
  color: #004499;
  text-decoration: none;
}

/* External Link */
.c-text-link--external {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.c-text-link--external::after {
  content: '';
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* PDF Link */
.c-text-link--pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.c-text-link--pdf::before {
  content: '';
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e63946'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z'/%3E%3Cpath d='M14 2v6h6' fill='none' stroke='%23e63946' stroke-width='1.5'/%3E%3Ctext x='7' y='17' font-size='6' font-weight='bold' fill='%23fff'%3EPDF%3C/text%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.c-text-link--pdf::after {
  content: '(PDF)';
  font-size: 1.2rem;
  color: #888;
  margin-left: 0.2rem;
}

/* ==========================================================================
   Breadcrumb Component
   ========================================================================== */

.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .c-breadcrumb {
    padding: 2rem 0;
  }
}

.c-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  color: #666;
}

@media (min-width: 768px) {
  .c-breadcrumb__item {
    font-size: 1.3rem;
  }
}

.c-breadcrumb__item:not(:last-child)::after {
  content: '>';
  margin-left: 0.5rem;
  color: #999;
}

.c-breadcrumb__link {
  color: #666;
  transition: color 0.2s;
}

.c-breadcrumb__link:hover {
  color: #111;
  text-decoration: underline;
}

.c-breadcrumb__item:last-child {
  color: #111;
  font-weight: 500;
}

/* Breadcrumb Bar - Wrapper for placing under header */
.l-breadcrumb-bar {
  position: sticky;
  top: 5rem;
  z-index: 999;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
  .l-breadcrumb-bar {
    top: 7rem;
  }
}

.l-breadcrumb-bar .c-breadcrumb {
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .l-breadcrumb-bar .c-breadcrumb {
    padding: 2rem 0;
  }
}

/* Dark variant (for use with dark headers or on colored backgrounds) */
.l-breadcrumb-bar--dark {
  background-color: #111;
  border-bottom-color: #333;
}

.l-breadcrumb-bar--dark .c-breadcrumb__item,
.l-breadcrumb-bar--dark .c-breadcrumb__link {
  color: rgba(255, 255, 255, 0.7);
}

.l-breadcrumb-bar--dark .c-breadcrumb__item:last-child {
  color: #fff;
}

.l-breadcrumb-bar--dark .c-breadcrumb__item:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.5);
}

.l-breadcrumb-bar--dark .c-breadcrumb__link:hover {
  color: #fff;
}

/* Transparent variant (overlays on images) */
.l-breadcrumb-bar--transparent {
  background-color: transparent;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.l-breadcrumb-bar--transparent .c-breadcrumb__item,
.l-breadcrumb-bar--transparent .c-breadcrumb__link {
  color: rgba(255, 255, 255, 0.7);
}

.l-breadcrumb-bar--transparent .c-breadcrumb__item:last-child {
  color: #fff;
}

.l-breadcrumb-bar--transparent .c-breadcrumb__item:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.5);
}

.l-breadcrumb-bar--transparent .c-breadcrumb__link:hover {
  color: #fff;
}

/* ==========================================================================
   List Component
   ========================================================================== */

/* Unordered List */
.c-list {
  padding-left: 0;
}

.c-list__item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #333;
}

@media (min-width: 768px) {
  .c-list__item {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}

.c-list__item:last-child {
  margin-bottom: 0;
}

.c-list__item::before {
  content: '';
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #111;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .c-list__item::before {
    top: 1rem;
  }
}

/* Ordered List */
.c-list--ordered {
  list-style: none;
  counter-reset: list-counter;
}

.c-list--ordered .c-list__item {
  padding-left: 2.5rem;
}

.c-list--ordered .c-list__item::before {
  counter-increment: list-counter;
  content: counter(list-counter) '.';
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
}

@media (min-width: 768px) {
  .c-list--ordered .c-list__item::before {
    font-size: 1.6rem;
  }
}

/* Check List */
.c-list--check .c-list__item::before {
  content: '';
  top: 0.4rem;
  width: 1.6rem;
  height: 1.6rem;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0;
}

@media (min-width: 768px) {
  .c-list--check .c-list__item::before {
    top: 0.5rem;
  }
}

/* ==========================================================================
   Pagination Component
   ========================================================================== */

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .c-pagination {
    gap: 1rem;
  }
}

.c-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #111;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.6rem;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .c-pagination__item {
    min-width: 4.4rem;
    height: 4.4rem;
    font-size: 1.5rem;
  }
}

.c-pagination__item:hover {
  background-color: #f5f5f5;
  border-color: #111;
}

.c-pagination__item.is-active {
  background-color: #111;
  border-color: #111;
  color: #fff;
}

.c-pagination__item.is-disabled {
  color: #ccc;
  background-color: #f8f8f8;
  border-color: #e0e0e0;
  cursor: not-allowed;
  pointer-events: none;
}

.c-pagination__ellipsis {
  color: #888;
  padding: 0 0.5rem;
}

/* ==========================================================================
   Page Header (Sub-page Main Visual)
   ========================================================================== */

/* Level 2 - Category pages (製品一覧, 会社概要 etc.) */
.p-page-header {
  position: relative;
  padding: 4rem 0 3rem;
  background-color: #f8f8f8;
}

@media (min-width: 768px) {
  .p-page-header {
    padding: 6rem 0 4rem;
  }
}

.p-page-header__inner {
  position: relative;
  z-index: 1;
}

.p-page-header__title-en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .p-page-header__title-en {
    font-size: 4.8rem;
    margin-bottom: 0.6rem;
  }
}

.p-page-header__title-ja {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .p-page-header__title-ja {
    font-size: 2.4rem;
  }
}

/* Level 2 - Primary color background variant */
.p-page-header--image {
  padding: 8rem 0 6rem;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-page-header--image {
    padding: 12rem 0 8rem;
  }
}

.p-page-header--image .p-page-header__bg {
  display: none;
}

.p-page-header--image .p-page-header__title-en,
.p-page-header--image .p-page-header__title-ja {
  color: #fff;
}

/* Level 3 - Detail pages (製品詳細, 記事詳細 etc.) */
.p-page-header--compact {
  position: relative;
  padding: 3rem 0;
  background-color: #f8f8f8;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-page-header--compact {
    padding: 0;
    min-height: 20rem;
  }
}

.p-page-header--compact .p-page-header__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .p-page-header--compact .p-page-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 20rem;
  }
}

.p-page-header--compact .p-page-header__content {
  flex: 1;
}

@media (min-width: 768px) {
  .p-page-header--compact .p-page-header__content {
    padding: 4rem 0;
  }
}

.p-page-header--compact .p-page-header__title-en {
  font-size: 2.4rem;
  margin-bottom: 0.2rem;
}

@media (min-width: 768px) {
  .p-page-header--compact .p-page-header__title-en {
    font-size: 3.6rem;
  }
}

.p-page-header--compact .p-page-header__title-ja {
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .p-page-header--compact .p-page-header__title-ja {
    font-size: 2rem;
  }
}

.p-page-header--compact .p-page-header__image {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-page-header--compact .p-page-header__image {
    width: 40%;
    max-width: 45rem;
    margin: 0;
    aspect-ratio: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
  }
}

.p-page-header--compact .p-page-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Feature Grid / Card (会社概要 - 強み)
   ========================================================================== */

.p-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .p-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* 4 column variant */
@media (min-width: 768px) {
  .p-feature-grid--4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.p-feature-card {
  padding: 3rem 2rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  text-align: center;
}

@media (min-width: 768px) {
  .p-feature-card {
    padding: 4rem 2.5rem;
  }
}

.p-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  background-color: rgba(70, 135, 189, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
}

.p-feature-card__icon svg {
  width: 50%;
  height: 50%;
}

@media (min-width: 768px) {
  .p-feature-card__icon {
    width: 7rem;
    height: 7rem;
  }
}

.p-feature-card__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .p-feature-card__title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
}

.p-feature-card__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
  text-align: left;
}

@media (min-width: 768px) {
  .p-feature-card__text {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Access Section (会社概要 - アクセス)
   ========================================================================== */

.p-access {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .p-access {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
  }
}

.p-access__info {
  padding: 2rem;
  background-color: #fff;
  border-radius: 0.8rem;
}

@media (min-width: 768px) {
  .p-access__info {
    padding: 3rem;
  }
}

.p-access__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .p-access__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.p-access__address {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
}

@media (min-width: 768px) {
  .p-access__address {
    font-size: 1.5rem;
  }
}

.p-access__map {
  width: 100%;
}

.p-access__map iframe {
  width: 100%;
  height: 30rem;
  border: none;
  border-radius: 0.8rem;
}

@media (min-width: 768px) {
  .p-access__map iframe {
    height: 35rem;
  }
}

.p-access__map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30rem;
  background-color: #e0e0e0;
  border-radius: 0.8rem;
  color: #666;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .p-access__map-placeholder {
    height: 35rem;
  }
}

/* ==========================================================================
   Narrow Container (記事詳細用)
   ========================================================================== */

.l-container--narrow {
  max-width: 80rem;
}

/* ==========================================================================
   Article (お知らせ詳細)
   ========================================================================== */

.p-article__header {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e0e0e0;
}

@media (min-width: 768px) {
  .p-article__header {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
  }
}

.p-article__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.p-article__date {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #666;
}

@media (min-width: 768px) {
  .p-article__date {
    font-size: 1.4rem;
  }
}

.p-article__category {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  background-color: #111;
  border-radius: 0.3rem;
}

@media (min-width: 768px) {
  .p-article__category {
    font-size: 1.2rem;
  }
}

.p-article__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
}

@media (min-width: 768px) {
  .p-article__title {
    font-size: 3rem;
    line-height: 1.4;
  }
}

/* Article Content */
.p-article__content {
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
}

@media (min-width: 768px) {
  .p-article__content {
    font-size: 1.6rem;
  }
}

.p-article__content p {
  margin-bottom: 2rem;
}

.p-article__content h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  padding-bottom: 1rem;
  border-bottom: 2px solid #111;
}

@media (min-width: 768px) {
  .p-article__content h2 {
    font-size: 2.2rem;
    margin-top: 5rem;
  }
}

.p-article__content h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: #111;
}

@media (min-width: 768px) {
  .p-article__content h3 {
    font-size: 1.8rem;
  }
}

.p-article__content ul,
.p-article__content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.p-article__content li {
  margin-bottom: 0.8rem;
}

.p-article__content a {
  color: #0066cc;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.p-article__content a:hover {
  color: #004499;
}

.p-article__content strong {
  font-weight: 600;
  color: #111;
}

/* Article Figure */
.p-article__figure {
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .p-article__figure {
    margin: 4rem 0;
  }
}

.p-article__figure img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

.p-article__figure figcaption {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #666;
  text-align: center;
}

/* Article Footer */
.p-article__footer {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

@media (min-width: 768px) {
  .p-article__footer {
    margin-top: 6rem;
    padding-top: 5rem;
  }
}

/* ==========================================================================
   Policy Content (プライバシーポリシー等)
   ========================================================================== */

.p-policy-content {
  max-width: 90rem;
  margin: 0 auto;
}

.p-policy-section {
  margin-bottom: 4rem;
}

.p-policy-section:last-of-type {
  margin-bottom: 0;
}

.p-policy-section p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
}

@media (min-width: 768px) {
  .p-policy-section p {
    font-size: 1.6rem;
  }
}

.p-policy-section .c-list {
  list-style: none;
  padding-left: 0;
}

.p-policy-section .c-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}

@media (min-width: 768px) {
  .p-policy-section .c-list li {
    font-size: 1.6rem;
  }
}

.p-policy-section .c-list li::before {
  content: '';
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .p-policy-section .c-list li::before {
    top: 1rem;
  }
}

/* ==========================================================================
   Form Component (お問い合わせフォーム)
   ========================================================================== */

.c-form {
  max-width: 70rem;
  margin: 0 auto;
}

.c-form__group {
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .c-form__group {
    margin-bottom: 3rem;
  }
}

.c-form__label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
}

@media (min-width: 768px) {
  .c-form__label {
    font-size: 1.5rem;
  }
}

.c-form__required {
  display: inline-block;
  margin-left: 0.8rem;
  padding: 0.2rem 0.6rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  background-color: #e63946;
  border-radius: 0.3rem;
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-size: 1.5rem;
  font-family: inherit;
  color: #333;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 0.6rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

@media (min-width: 768px) {
  .c-form__input,
  .c-form__select,
  .c-form__textarea {
    padding: 1.6rem 1.8rem;
    font-size: 1.6rem;
  }
}

.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

.c-form__input::placeholder,
.c-form__textarea::placeholder {
  color: #999;
}

.c-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  padding-right: 4rem;
  cursor: pointer;
}

.c-form__textarea {
  resize: vertical;
  min-height: 15rem;
}

.c-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.c-form__checkbox input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  margin-top: 0.2rem;
  accent-color: #111;
  cursor: pointer;
}

.c-form__checkbox label {
  font-size: 1.4rem;
  color: #333;
  cursor: pointer;
}

@media (min-width: 768px) {
  .c-form__checkbox label {
    font-size: 1.5rem;
  }
}

.c-form__checkbox a {
  color: #0066cc;
  text-decoration: underline;
}

.c-form__checkbox a:hover {
  color: #004499;
}

.c-form__submit {
  margin-top: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .c-form__submit {
    margin-top: 5rem;
  }
}

/* Large Button Variant */
.c-button--large {
  padding: 1.8rem 5rem;
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .c-button--large {
    padding: 2rem 6rem;
    font-size: 1.7rem;
  }
}

/* ===========================================
   Business Page Styles
   =========================================== */

/* Business Intro */
.p-business-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}

.p-business-intro__lead {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .p-business-intro__lead {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}

.p-business-intro__text {
  font-size: 1.4rem;
  line-height: 2;
  color: #666;
}

@media (min-width: 768px) {
  .p-business-intro__text {
    font-size: 1.6rem;
  }
}

/* Business Cards */
.p-business-cards {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .p-business-cards {
    gap: 4rem;
  }
}

.p-business-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.p-business-card:hover {
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.12);
  transform: translateY(-0.4rem);
}

@media (min-width: 768px) {
  .p-business-card {
    flex-direction: row;
  }

  .p-business-card:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.p-business-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-business-card__image-wrapper {
    width: 50%;
    aspect-ratio: auto;
    min-height: 40rem;
  }
}

.p-business-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.p-business-card:hover .p-business-card__image {
  transform: scale(1.05);
}

.p-business-card__content {
  padding: 2.4rem;
}

@media (min-width: 768px) {
  .p-business-card__content {
    width: 50%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.p-business-card__number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0066cc;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .p-business-card__number {
    font-size: 1.4rem;
  }
}

.p-business-card__en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  .p-business-card__en {
    font-size: 1.2rem;
  }
}

.p-business-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
  .p-business-card__title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
}

.p-business-card__text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .p-business-card__text {
    font-size: 1.5rem;
  }
}

.p-business-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.p-business-card__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 0.6rem;
}

.p-business-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.6rem;
  height: 0.6rem;
  background: #0066cc;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .p-business-card__list li {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}

.p-business-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #0066cc;
  transition: gap 0.3s ease;
}

.p-business-card:hover .p-business-card__link {
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .p-business-card__link {
    font-size: 1.4rem;
  }
}

.p-business-card__link-arrow {
  transition: transform 0.3s ease;
}

.p-business-card:hover .p-business-card__link-arrow {
  transform: translateX(0.4rem);
}

/* Business Detail Section */
.p-business-detail {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .p-business-detail {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }
}

.p-business-detail__image {
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-business-detail__image {
    width: 50%;
  }
}

.p-business-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-business-detail__content {
  width: 100%;
}

@media (min-width: 768px) {
  .p-business-detail__content {
    width: 50%;
  }
}

.p-business-detail__label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0066cc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .p-business-detail__label {
    font-size: 1.2rem;
  }
}

.p-business-detail__title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .p-business-detail__title {
    font-size: 2.6rem;
  }
}

.p-business-detail__text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .p-business-detail__text {
    font-size: 1.5rem;
  }
}

.p-business-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-business-detail__list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.p-business-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.8rem;
  height: 0.8rem;
  background: #0066cc;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .p-business-detail__list li {
    font-size: 1.5rem;
  }
}

/* Feature Grid 3 Column Variant */
.p-feature-grid--3col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .p-feature-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Two Column Section (Image + Text) */
.p-two-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .p-two-column {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }

  .p-two-column--reverse {
    flex-direction: row-reverse;
  }
}

.p-two-column__image {
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-two-column__image {
    width: 50%;
    flex-shrink: 0;
  }
}

.p-two-column__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.p-two-column__content {
  width: 100%;
}

@media (min-width: 768px) {
  .p-two-column__content {
    width: 50%;
  }
}

.p-two-column__number {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0066cc;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .p-two-column__number {
    font-size: 1.4rem;
  }
}

.p-two-column__en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  .p-two-column__en {
    font-size: 1.2rem;
  }
}

.p-two-column__title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.6rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .p-two-column__title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
}

.p-two-column__text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .p-two-column__text {
    font-size: 1.5rem;
    margin-bottom: 2.4rem;
  }
}

.p-two-column__content .c-list {
  margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
  .p-two-column__content .c-list {
    margin-bottom: 3rem;
  }
}

.p-two-column__content .c-section-heading {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .p-two-column__content .c-section-heading {
    margin-bottom: 2.4rem;
  }
}

.p-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
}

.p-two-column__list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.p-two-column__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.6rem;
  height: 0.6rem;
  background: #0066cc;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .p-two-column__list li {
    font-size: 1.5rem;
  }

  .p-two-column__list {
    margin-bottom: 3rem;
  }
}

/* Workflow Section */
.p-workflow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: workflow;
}

@media (min-width: 768px) {
  .p-workflow {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2rem;
  }
}

.p-workflow__item {
  position: relative;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  counter-increment: workflow;
}

@media (min-width: 768px) {
  .p-workflow__item {
    padding: 3rem 2rem;
  }
}

.p-workflow__number {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background-color: rgba(70, 135, 189, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 0.4rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .p-workflow__number {
    font-size: 1.6rem;
    padding: 0.5rem 1.4rem;
    margin-bottom: 2rem;
  }
}

.p-workflow__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .p-workflow__title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
}

.p-workflow__text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #666;
}

@media (min-width: 768px) {
  .p-workflow__text {
    font-size: 1.4rem;
  }
}

.p-workflow--4col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .p-workflow--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Products Grid Center */
.p-products-grid--center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .p-products-grid--center {
    gap: 3rem;
  }
}

.p-products-grid--center .p-product-card {
  width: 100%;
}

@media (min-width: 768px) {
  .p-products-grid--center .p-product-card {
    width: calc(25% - 2.25rem);
    max-width: 28rem;
  }
}

/* ==========================================================================
   p-thanks - Thank You Page
   ========================================================================== */

.p-thanks {
  text-align: center;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .p-thanks {
    padding: 8rem 0;
  }
}

.p-thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  margin-bottom: 2.5rem;
  color: #222;
}

@media (min-width: 768px) {
  .p-thanks__icon {
    width: 10rem;
    height: 10rem;
    margin-bottom: 3rem;
  }
}

.p-thanks__icon svg {
  width: 100%;
  height: 100%;
}

.p-thanks__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #222;
}

@media (min-width: 768px) {
  .p-thanks__title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
}

.p-thanks__text {
  font-size: 1.4rem;
  line-height: 2;
  color: #333;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .p-thanks__text {
    font-size: 1.6rem;
  }
}

.p-thanks__note {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .p-thanks__note {
    font-size: 1.4rem;
    margin-bottom: 5rem;
  }
}

.p-thanks__action {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Product Lineup (business-film)
   ========================================================================== */

.p-product-lineup {
  max-width: 80rem;
  margin: 0 auto;
}

.p-product-lineup__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  list-style: none;
}

@media (min-width: 768px) {
  .p-product-lineup__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.p-product-lineup__item {
  display: flex;
  align-items: center;
  padding: 1.6rem 2rem;
  background-color: #fff;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p-product-lineup__item::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #0066cc;
  border-radius: 50%;
  margin-right: 1.2rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-product-lineup__item {
    padding: 2rem 2.5rem;
    font-size: 1.5rem;
  }
}

.p-product-lineup__item:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}

/* Product Card Link Style */
.p-product-card--link {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-product-card--link:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.12);
}

.p-product-card--link .p-product-card__image {
  overflow: hidden;
}

.p-product-card--link .p-product-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-product-card--link:hover .p-product-card__image img {
  transform: scale(1.05);
}

.p-product-card--link .p-product-card__title {
  padding: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

@media (min-width: 768px) {
  .p-product-card--link .p-product-card__title {
    padding: 2rem;
    font-size: 1.6rem;
  }
}

/* Product Grid */
.p-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .p-product-grid {
    gap: 3rem;
  }
}

.p-product-grid--4col {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .p-product-grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Image Cards Grid - 4 columns */
.p-image-cards--4col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .p-image-cards--4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Image Cards Grid - 2 columns */
.p-image-cards--2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .p-image-cards--2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}

/* Large image card */
.p-image-card--large .p-image-card__image {
  aspect-ratio: 3 / 2;
}

@media (min-width: 768px) {
  .p-image-card--large .p-image-card__image {
    aspect-ratio: 16 / 9;
  }
}

.p-image-card__desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.6rem;
}

@media (min-width: 768px) {
  .p-image-card__desc {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
}

/* Film List Wrap */
.p-film-list-wrap {
  background: #f8f8f8;
  border-radius: 1.2rem;
  padding: 2.4rem 2rem;
  margin-top: 4rem;
}

.p-film-list-wrap__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .p-film-list-wrap {
    padding: 3.2rem 3.6rem;
  }

  .p-film-list-wrap__title {
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
  }
}

/* Film List */
.p-film-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.p-film-list__item {
  padding: 1.2rem 1.6rem;
  font-size: 1.4rem;
  position: relative;
  padding-left: 2.8rem;
}

.p-film-list__item::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: #2563eb;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .p-film-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
  }

  .p-film-list__item {
    font-size: 1.5rem;
    padding: 1.6rem 1.8rem 1.6rem 3rem;
  }

  .p-film-list__item::before {
    left: 1.4rem;
  }
}

/* Corporate Intro */
.p-corporate-intro {
  text-align: center;
}

.p-corporate-intro__lead {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .p-corporate-intro__lead {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
}

.p-corporate-intro__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .p-corporate-intro__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.p-corporate-intro__card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .p-corporate-intro__card {
    padding: 3rem 2.5rem;
  }
}

.p-corporate-intro__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: 50%;
  color: #0066cc;
}

@media (min-width: 768px) {
  .p-corporate-intro__card-icon {
    width: 7rem;
    height: 7rem;
    margin-bottom: 2rem;
  }
}

.p-corporate-intro__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .p-corporate-intro__card-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
}

.p-corporate-intro__card-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #666;
}

@media (min-width: 768px) {
  .p-corporate-intro__card-text {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   About Story
   ========================================================================== */

.p-about-story {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .p-about-story {
    gap: 6rem;
  }
}

.p-about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .p-about-story__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.p-about-story__card {
  padding: 2.4rem;
  background-color: #f8f9fa;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .p-about-story__card {
    padding: 3.2rem;
    gap: 2rem;
  }
}

.p-about-story__num {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  letter-spacing: -0.02em;
  line-height: 1;
}

@media (min-width: 768px) {
  .p-about-story__num {
    font-size: 5rem;
  }
}

.p-about-story__card-title {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
}

@media (min-width: 768px) {
  .p-about-story__card-title {
    font-size: 1.9rem;
  }
}

.p-about-story__card-text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #555;
}

@media (min-width: 768px) {
  .p-about-story__card-text {
    font-size: 1.5rem;
  }
}

.p-about-story__highlight {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #111;
  font-weight: 500;
  padding: 1.6rem;
  background-color: #fff;
  border-left: 3px solid #111;
  border-radius: 0 0.6rem 0.6rem 0;
}

@media (min-width: 768px) {
  .p-about-story__highlight {
    font-size: 1.5rem;
    padding: 2rem;
  }
}

.p-about-story__cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #111 0%, #333 100%);
  border-radius: 1.2rem;
  color: #fff;
}

@media (min-width: 768px) {
  .p-about-story__cta {
    padding: 6rem 4rem;
  }
}

.p-about-story__cta-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .p-about-story__cta-label {
    font-size: 1.3rem;
  }
}

.p-about-story__cta-tagline {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
  .p-about-story__cta-tagline {
    font-size: 3.2rem;
  }
}

.p-about-story__cta-text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .p-about-story__cta-text {
    font-size: 1.5rem;
  }
}

.p-about-story__cta--secondary {
  margin-top: 2.4rem;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

@media (min-width: 768px) {
  .p-about-story__cta--secondary {
    margin-top: 3.2rem;
  }
}

/* ==========================================================================
   Strengths
   ========================================================================== */

.p-strengths {
  width: 100%;
}

.p-strengths__intro {
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .p-strengths__intro {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}

.p-strengths__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .p-strengths__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.p-strengths__card {
  padding: 2.4rem;
  background-color: #f8f9fa;
  border-radius: 1.2rem;
}

@media (min-width: 768px) {
  .p-strengths__card {
    padding: 3rem;
  }
}

.p-strengths__num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(70, 135, 189, 0.2);
  line-height: 1;
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .p-strengths__num {
    font-size: 4rem;
    margin-bottom: 1.6rem;
  }
}

.p-strengths__card-text {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
  color: #333;
}

@media (min-width: 768px) {
  .p-strengths__card-text {
    font-size: 1.5rem;
  }
}

/* Company Links */
.p-company-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .p-company-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.p-company-links__card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 2.4rem;
}

@media (min-width: 768px) {
  .p-company-links__card {
    padding: 3.2rem;
  }
}

.p-company-links__heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .p-company-links__heading {
    font-size: 2.2rem;
  }
}

.p-company-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
}

.p-company-links__link {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  text-decoration: underline;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .p-company-links__link {
    font-size: 1.5rem;
  }
}

.p-company-links__link:hover {
  opacity: 0.6;
}

.p-company-links__icon {
  margin-left: 0.4rem;
}

.p-company-links__social {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.p-company-links__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: opacity 0.2s;
}

.p-company-links__social-link:hover {
  opacity: 0.6;
}

/* ===========================
   Contact Form 7 override
   =========================== */
.wpcf7-form {
  max-width: 70rem;
  margin: 0 auto;
}
.wpcf7-form .hidden-fields-container {
  border: 0;
  padding: 0;
  margin: 0;
}
.wpcf7 form .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1.2rem 1.6rem;
  border-width: 0.2rem;
  border-radius: 0.4rem;
  font-size: 1.4rem;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #c00;
  background: #fff3f3;
  color: #c00;
}
.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.6rem;
  color: #c00;
  font-size: 1.3rem;
  font-weight: 500;
}
.wpcf7-form-control.wpcf7-not-valid {
  border-color: #c00 !important;
  background-color: #fff5f5;
}
.wpcf7-spinner {
  vertical-align: middle;
}

/* ===========================
   Accessibility
   =========================== */
.u-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap;
  border: 0;
}
.c-skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 100000;
  padding: 1rem 2rem;
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 0 0 0.4rem 0.4rem;
  transition: top 0.2s;
}
.c-skip-link:focus {
  top: 0;
  outline: 3px solid #ffd700;
  outline-offset: 2px;
}
/* キーボードフォーカスを明瞭にする */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #2e70a7;
  outline-offset: 2px;
}
