/* ==========================================================================
   共通コンポーネント（全ページで読み込み）
   ※ 元: Next.js の CSS Modules（SCSS）を素のCSSに変換
   ========================================================================== */

/* --------------------------------------------------------------------------
   .header（元: src/components/common/Header/Header.module.scss）
   -------------------------------------------------------------------------- */

/* Mobile vw calculations based on 480px design width */
/* Formula: value / 480 * 100 = vw */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: var(--header-z-index);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
  .header {
    height: 15vw; /* ~72px / 480px */
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--padding-x-desktop);
}

@media (max-width: 1024px) {
  .header__container {
    padding: 0 var(--padding-x-tablet);
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 0 var(--padding-x-mobile);
  }
}

@media (max-width: 640px) {
  .header__container {
    padding: 0 4.79vw; /* 23px / 480px */
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

@media (max-width: 640px) {
  .header__logo {
    gap: 2.5vw; /* 12px / 480px */
  }
}

.header__logo-icon {
  width: 37px;
  height: auto;
}

@media (max-width: 640px) {
  .header__logo-icon {
    width: 6.25vw; /* 30px / 480px */
  }
}

.header__logo-text {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: oblique;
  font-size: 30px;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

@media (max-width: 640px) {
  .header__logo-text {
    font-size: 4.93vw; /* 23.65px / 480px */
  }
}

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

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__nav-en {
  font-family: var(--font-heading-en);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-nav-en);
  color: var(--color-text-primary);
  line-height: 1.2;
}

.header__nav-ja {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-nav-ja);
  color: var(--color-text-primary);
  margin-top: 2px;
}

.header__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 45px;
  background: transparent;
  border: 1px solid var(--color-text-secondary);
  font-family: var(--font-heading-en);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-nav-en);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.header__contact-btn:hover {
  background: var(--color-text-primary);
  color: var(--color-white);
  border-color: var(--color-text-primary);
}

/* Mobile Menu Button */
.header__mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .header__mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .header__mobile-menu-btn {
    width: 8.33vw; /* 40px / 480px */
    height: 8.33vw;
  }
}

.header__hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all 0.3s ease;
}

.header__hamburger::before,
.header__hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all 0.3s ease;
}

.header__hamburger::before {
  top: -8px;
}

.header__hamburger::after {
  bottom: -8px;
}

.header__hamburger.is-active {
  background: transparent;
}

.header__hamburger.is-active::before {
  top: 0;
  transform: rotate(45deg);
}

.header__hamburger.is-active::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (max-width: 640px) {
  .header__hamburger {
    width: 6.25vw; /* 30px / 480px */
    height: 0.42vw; /* 2px / 480px */
  }

  .header__hamburger::before,
  .header__hamburger::after {
    width: 6.25vw;
    height: 0.42vw;
  }

  .header__hamburger::before {
    top: -1.67vw; /* -8px / 480px */
  }

  .header__hamburger::after {
    bottom: -1.67vw;
  }
}

/* Mobile Menu */
.header__mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

@media (max-width: 1024px) {
  .header__mobile-menu {
    display: block;
  }
}

@media (max-width: 640px) {
  .header__mobile-menu {
    top: 15vw; /* Match mobile header height */
  }
}

.header__mobile-menu.is-open {
  transform: translateX(0);
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 40px var(--padding-x-mobile);
}

@media (max-width: 640px) {
  .header__mobile-nav {
    padding: 8.33vw 4.79vw; /* 40px 23px / 480px */
  }
}

.header__mobile-nav-link {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  text-decoration: none;
}

@media (max-width: 640px) {
  .header__mobile-nav-link {
    padding: 4.17vw 0; /* 20px / 480px */
  }
}

.header__mobile-nav-en {
  font-family: var(--font-heading-en);
  font-weight: var(--font-weight-regular);
  font-size: 24px;
  color: var(--color-text-primary);
}

@media (max-width: 640px) {
  .header__mobile-nav-en {
    font-size: 5vw; /* 24px / 480px */
  }
}

.header__mobile-nav-ja {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .header__mobile-nav-ja {
    font-size: 2.92vw; /* 14px / 480px */
    margin-top: 0.83vw; /* 4px / 480px */
  }
}

.header__mobile-nav-section {
  border-bottom: 1px solid color-mix(in srgb, var(--color-text-secondary) 20%, transparent);
}

.header__mobile-sub-menu {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .header__mobile-sub-menu {
    padding-left: 3.33vw; /* 16px / 480px */
    margin-bottom: 1.67vw; /* 8px / 480px */
  }
}

.header__mobile-sub-link {
  display: block;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--color-text-secondary) 10%, transparent);
}

.header__mobile-sub-link:last-child {
  border-bottom: none;
}

@media (max-width: 640px) {
  .header__mobile-sub-link {
    padding: 2.5vw 0; /* 12px / 480px */
    font-size: 2.92vw; /* 14px / 480px */
  }
}

.header__mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 16px 32px;
  background: var(--color-text-primary);
  color: var(--color-white);
  font-family: var(--font-heading-en);
  font-size: 20px;
  text-decoration: none;
}

@media (max-width: 640px) {
  .header__mobile-contact-btn {
    margin-top: 8.33vw; /* 40px / 480px */
    padding: 3.33vw 6.67vw; /* 16px 32px / 480px */
    font-size: 4.17vw; /* 20px / 480px */
  }
}

/* --------------------------------------------------------------------------
   .breadcrumb（元: src/components/common/Breadcrumb/Breadcrumb.module.scss）
   -------------------------------------------------------------------------- */

.breadcrumb {
  padding: 0;
  margin-top: 50px;
}

@media (max-width: 640px) {
  .breadcrumb {
    margin-top: 2rem;
  }
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 16px;
}

@media (max-width: 640px) {
  .breadcrumb__list {
    gap: 0.5rem;
  }
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.breadcrumb__link {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

@media (max-width: 640px) {
  .breadcrumb__link {
    font-size: 3.3vw;
    line-height: 1.5;
  }
}

.breadcrumb__link:hover {
  opacity: 0.7;
}

.breadcrumb__current {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  color: var(--color-text-primary);
}

@media (max-width: 640px) {
  .breadcrumb__current {
    font-size: 3.3vw;
    line-height: 1.5;
  }
}

.breadcrumb__separator {
  display: inline-block;
  width: 6px;
  height: 18px;
  position: relative;
}

.breadcrumb__separator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 18px;
  background-color: var(--color-text-primary);
  transform: translate(-50%, -50%) rotate(30deg);
}

/* --------------------------------------------------------------------------
   .headline（元: src/components/common/Headline/Headline.module.scss）
   -------------------------------------------------------------------------- */

.headline {
  margin-bottom: 30px;
}

@media (max-width: 640px) {
  .headline {
    margin-bottom: 1rem;
  }
}

.headline__section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: var(--color-blue);
  margin-bottom: 0.75em;
}

.headline__section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.55;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .headline__section-title {
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   .data-list（元: src/components/common/DataList/DataList.module.scss）
   -------------------------------------------------------------------------- */

.data-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .data-list {
    gap: 32px;
    margin-bottom: 32px;
  }
}

.data-list__data-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .data-list__data-item {
    grid-template-columns: 5.6em 1fr;
    gap: 1em;
    padding-left: 1em;
  }
}

.data-list__data-label {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.4;
  height: 100%;
  display: grid;
  align-items: center;
  place-content: center start;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-right: 1px solid #74e2e1;
}

@media (max-width: 768px) {
  .data-list__data-label {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .data-list__data-label {
    font-size: 3.3vw;
  }
}

.data-list__data-content p {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .data-list__data-content p {
    font-size: 15px;
  }
}

/* --------------------------------------------------------------------------
   .pricing-table（元: src/components/common/PricingTable/PricingTable.module.scss）
   -------------------------------------------------------------------------- */

.pricing-table {
  width: 100%;
  margin-bottom: 16px;
}

.pricing-table__pricing-row {
  display: grid;
  grid-template-columns: 160px 1fr 200px;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.pricing-table__pricing-row:first-child {
  border-top: 1px solid var(--color-border);
}

@media (max-width: 1024px) {
  .pricing-table__pricing-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.pricing-table__pricing-name {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text-primary);
  white-space: pre-line;
}

@media (max-width: 768px) {
  .pricing-table__pricing-name {
    font-size: 16px;
  }
}

.pricing-table__pricing-description {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-table__pricing-description {
    font-size: 15px;
  }
}

.pricing-table__pricing-price {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text-primary);
  text-align: right;
  margin: 0;
  white-space: pre-line;
}

@media (max-width: 1024px) {
  .pricing-table__pricing-price {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .pricing-table__pricing-price {
    font-size: 16px;
  }
}

.pricing-table__pricing-note {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1;
  color: var(--color-text-secondary);
  text-align: right;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .pricing-table__pricing-note {
    font-size: 2.8vw;
    text-align: left;
    margin-top: 1rem;
  }
}

/* --------------------------------------------------------------------------
   .process-flow（元: src/components/common/ProcessFlow/ProcessFlow.module.scss）
   -------------------------------------------------------------------------- */

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-block: 50px;
  position: relative;
  /* 右にはみ出す円の装飾 */
}

.process-flow::before {
  content: "";
  position: absolute;
  right: calc(50% - 50vw);
  top: 50%;
  transform: translateY(-50%);
  width: 80vw;
  aspect-ratio: 800/516;
  background-image: url("/images/common/ring.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 640px) {
  .process-flow::before {
    width: 200vw;
  }
}

.process-flow__process-step {
  display: grid;
  gap: 2em;
  padding: 20px 0;
  position: relative;
  align-items: baseline;
  /* 矢印の縦線 */
}

.process-flow__process-step::after {
  content: "";
  position: absolute;
  left: 0.75em;
  top: 1.8em;
  width: 1px;
  height: calc(100% - 2.8em - 6px);
  background: #000;
}

.process-flow__process-step {
  /* 矢印の先端（下向き三角形） */
}

.process-flow__process-step::before {
  content: "";
  position: absolute;
  left: calc(0.75em - 3px);
  bottom: calc(1em + 2px);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #000;
}

.process-flow__process-step:last-child::after,
.process-flow__process-step:last-child::before {
  display: none;
}

@media (max-width: 768px) {
  .process-flow__process-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
}

.process-flow__process-step-number {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 16px;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  position: absolute;
}

@media (max-width: 768px) {
  .process-flow__process-step-number {
    font-size: 14px;
  }
}

.process-flow__process-step-title {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text-primary);
  padding-left: 1.5em;
  width: 10em;
}

@media (max-width: 768px) {
  .process-flow__process-step-title {
    font-size: 16px;
    padding-left: 1.6em;
  }
}

@media (max-width: 640px) {
  .process-flow__process-step-title {
    font-size: 3.3vw;
  }
}

.process-flow__process-step-content {
  grid-column: 3;
}

.process-flow__process-step-content p {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .process-flow__process-step-content p {
    font-size: 15px;
    padding-left: 1.6em;
  }
}

@media (max-width: 640px) {
  .process-flow__process-step-content p {
    font-size: 3.3vw;
  }
}

@media (max-width: 768px) {
  .process-flow__process-step-content {
    grid-column: 1;
    margin-top: 8px;
  }
}

/* --------------------------------------------------------------------------
   .two-column-images（元: src/components/common/TwoColumnImages/TwoColumnImages.module.scss）
   -------------------------------------------------------------------------- */

.two-column-images {
  display: flex;
  justify-content: center;
  gap: 0;
}

@media (max-width: 768px) {
  .two-column-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .two-column-images {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4vw;
    width: 90%;
    margin-inline: auto;
  }
}

.two-column-images__image {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 555/350;
}

@media (max-width: 1024px) {
  .two-column-images__image {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .two-column-images__image {
    height: auto;
  }
}

/* --------------------------------------------------------------------------
   .contact-cta（元: src/components/common/ContactCTA/ContactCTA.module.scss）
   -------------------------------------------------------------------------- */

/* Mobile vw calculations based on 480px design width */
/* Formula: value / 480 * 100 = vw */
.contact-cta {
  padding: 80px 0;
  background: var(--color-background);
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 60px 0;
    padding-bottom: 80px;
  }
}

@media (max-width: 640px) {
  .contact-cta {
    padding: 12.5vw 0; /* 60px / 480px */
    padding-bottom: 16.67vw; /* 80px / 480px */
  }
}

.contact-cta__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x-desktop);
}

@media (max-width: 1024px) {
  .contact-cta__container {
    padding: 0 var(--padding-x-tablet);
  }
}

@media (max-width: 768px) {
  .contact-cta__container {
    padding: 0 var(--padding-x-mobile);
  }
}

@media (max-width: 640px) {
  .contact-cta__container {
    padding: 0 5.83vw; /* 28px / 480px */
  }
}

.contact-cta__content {
  text-align: center;
}

.contact-cta__title-row {
  display: grid;
}

.contact-cta__line {
  display: block;
  width: 1px;
  height: 87px;
  background: var(--color-text-primary);
}

.contact-cta__title-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-cta__title-link:hover {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .contact-cta__title-link {
    gap: 5vw;
  }
}

.contact-cta__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-light);
  font-size: 40px;
  line-height: normal;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-cta__title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .contact-cta__title {
    font-size: 7vw;
  }
}

.contact-cta__description {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-body);
  line-height: 37px;
  color: var(--color-text-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .contact-cta__description {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (max-width: 640px) {
  .contact-cta__description {
    font-size: 3vw;
    line-height: 5vw;
  }
}

/* --------------------------------------------------------------------------
   .anchor-links（元: src/components/common/AnchorLinks/AnchorLinks.module.scss）
   -------------------------------------------------------------------------- */

.anchor-links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 23px;
  row-gap: 16px;
  margin-top: 87px;
  padding-left: 28px;
  border-left: 2px solid #74e2e1;
  max-width: 540px;
}

@media (max-width: 768px) {
  .anchor-links {
    flex-direction: column;
    gap: 16px;
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
}

.anchor-links__anchor-link {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 17px;
  line-height: 1;
  color: var(--color-blue);
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.anchor-links__anchor-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .anchor-links__anchor-link {
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------------
   .category-tag（元: src/components/common/CategoryTag/CategoryTag.module.scss）
   -------------------------------------------------------------------------- */

/* Mobile vw calculations based on 480px design width */
/* Formula: value / 480 * 100 = vw */
.category-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--tag-width);
  height: var(--tag-height);
  padding: 0 16px;
  background: transparent;
  border: 1px solid var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: var(--font-size-tag);
  color: var(--color-text-primary);
}

@media (max-width: 640px) {
  .category-tag {
    min-width: 31.25vw; /* 150px / 480px */
    height: 6.35vw; /* 30.456px / 480px */
    padding: 0 3.33vw; /* 16px / 480px */
    font-size: 3.125vw; /* 15px / 480px */
    line-height: 7.71vw; /* 37px / 480px */
  }
}

/* --------------------------------------------------------------------------
   .all-services（元: src/components/home/AllServices/AllServices.module.scss）
   -------------------------------------------------------------------------- */

/* Mobile vw calculations based on 480px design width */
/* Formula: value / 480 * 100 = vw */
.all-services {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .all-services {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .all-services {
    padding: 16.67vw 0; /* 80px / 480px */
  }
}

.all-services__container {
  margin: 0;
  padding: 0;
}

.all-services__title {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .all-services__title {
    margin-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .all-services__title {
    margin-bottom: 8.33vw; /* 40px / 480px */
  }
}

.all-services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

@media (max-width: 640px) {
  .all-services__cards {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   .page-hero（元: src/components/common/PageHero/PageHero.module.scss）
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
  padding-bottom: 16px;
  background: transparent;
  overflow: hidden;
  z-index: 1;
}

.page-hero__container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 24px var(--padding-x-desktop) 0;
}

@media (max-width: 1024px) {
  .page-hero__container {
    padding: 20px var(--padding-x-tablet) 0;
  }
}

@media (max-width: 768px) {
  .page-hero__container {
    padding: 16px var(--padding-x-mobile) 0;
  }
}

.page-hero__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-hero);
  line-height: 1;
  color: var(--color-text-primary);
}

@media (max-width: 1024px) {
  .page-hero__title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .page-hero__title {
    font-size: 40px;
  }
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 20px;
  line-height: 1;
  color: var(--color-text-primary);
  margin-top: 14px;
}

@media (max-width: 768px) {
  .page-hero__subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* --------------------------------------------------------------------------
   .section-title（元: src/components/common/SectionTitle/SectionTitle.module.scss）
   -------------------------------------------------------------------------- */

/* Mobile vw calculations based on 480px design width */
/* Formula: value / 480 * 100 = vw */
.section-title {
  font-family: var(--font-heading-en);
  font-weight: var(--font-weight-thin);
  font-size: var(--font-size-section-title);
  color: var(--color-text-primary);
  line-height: normal;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 50px;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 12.5vw; /* 60px / 480px */
  }
}

/* --------------------------------------------------------------------------
   .footer（元: src/components/common/Footer/Footer.module.scss）
   -------------------------------------------------------------------------- */

/* Mobile vw calculations based on 480px design width */
/* Formula: value / 480 * 100 = vw */
.footer {
  position: relative;
  width: 100%;
}

/* ========================================== */
/* Sitemap Section */
/* ========================================== */
.footer__sitemap-wrapper {
  background: var(--gradient-bg-footer);
  padding: 100px 0 120px;
}

@media (max-width: 640px) {
  .footer__sitemap-wrapper {
    padding: 10vw 0 12vw; /* 100px 0 50px / 480px */
  }
}

.footer__sitemap-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x-desktop);
}

@media (max-width: 1024px) {
  .footer__sitemap-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 0 var(--padding-x-tablet);
  }
}

@media (max-width: 768px) {
  .footer__sitemap-inner {
    padding: 0 var(--padding-x-mobile);
  }
}

@media (max-width: 640px) {
  .footer__sitemap-inner {
    flex-direction: column;
    align-items: center;
    gap: 8.33vw; /* 40px / 480px */
    padding: 0 5.83vw; /* 28px / 480px */
  }
}

/* Logo Area */
.footer__logo-area {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .footer__logo-area {
    width: 100%;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .footer__logo-area {
    width: 100%;
    align-items: center;
  }
}

.footer__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__logo-link:hover {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .footer__logo-link {
    gap: 3vw;
  }
}

.footer__logo-icon {
  width: 74px;
  height: 120px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .footer__logo-icon {
    width: 9.25vw; /* 74:120 の比率でwidth自動計算 */
    height: 15vw; /* 120px / 480px */
    aspect-ratio: 74/120;
  }
}

.footer__logo-text {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 30px;
  color: var(--color-text-primary);
}

@media (max-width: 640px) {
  .footer__logo-text {
    font-size: 3.66vw; /* 17.58px / 480px */
  }
}

/* Sitemap Grid */
.footer__sitemap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  flex: 1;
}

@media (max-width: 768px) {
  .footer__sitemap {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer__sitemap {
    display: none; /* Hidden on mobile per Figma design */
  }
}

.footer__sitemap-upper-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

@media (max-width: 1024px) {
  .footer__sitemap-upper-row {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .footer__sitemap-upper-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__sitemap-lower-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

@media (max-width: 1024px) {
  .footer__sitemap-lower-row {
    gap: 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer__sitemap-lower-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__sitemap-column {
  display: flex;
  flex-direction: column;
}

.footer__sitemap-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--color-text-primary);
  margin: 0 0 16px;
}

.footer__sitemap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.footer__sitemap-list li {
  line-height: 32px;
}

.footer__sitemap-link {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 15px;
  line-height: 32px;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__sitemap-link:hover {
  opacity: 0.6;
}

/* Other Links Section */
.footer__other-links-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__other-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__other-link:hover {
  opacity: 0.6;
}

/* ========================================== */
/* Copyright */
/* ========================================== */
.footer__copyright {
  position: absolute;
  bottom: 0;
  left: 100px;
  margin-top: 16px;
  padding-left: 0;
  text-align: left;
}

@media (max-width: 1024px) {
  .footer__copyright {
    margin-top: 16px;
  }
}

@media (max-width: 768px) {
  .footer__copyright {
    text-align: center;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .footer__copyright {
    position: relative;
    left: 0;
    margin-top: 8.33vw; /* 40px / 480px */
    text-align: center;
  }
}

.footer__copyright p {
  font-family: var(--font-body);
  font-weight: 350;
  font-size: var(--font-size-copyright);
  line-height: 16px;
  color: var(--color-text-primary);
  margin: 0;
}

@media (max-width: 640px) {
  .footer__copyright p {
    font-size: 2.5vw; /* 12px / 480px */
    line-height: 3.33vw; /* 16px / 480px */
  }
}

/* --------------------------------------------------------------------------
   .event-header（元: src/components/events/EventHeader/EventHeader.module.scss）
   -------------------------------------------------------------------------- */

.event-header {
  margin-bottom: 40px;
}

.event-header__image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
}

.event-header__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.event-header__date {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
}

.event-header__title {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 32px;
  line-height: 1.4;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .event-header__title {
    font-size: 24px;
  }
}

/* --------------------------------------------------------------------------
   .service-card（元: src/components/home/AllServices/ServiceCard.module.scss）
   -------------------------------------------------------------------------- */

/* Mobile vw calculations based on 480px design width */
/* Formula: value / 480 * 100 = vw */
.service-card {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .service-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .service-card {
    min-width: auto;
    max-width: none;
    width: 100%;
  }
}

@media screen and (min-width: 1400px) {
  .service-card {
    min-width: var(--card-width);
  }
}

.service-card__image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .service-card__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    position: relative;
    left: auto;
    top: auto;
    z-index: 1;
  }
}

.service-card__image-mask {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__content {
  padding: 32px 40px;
  flex: 1;
}

.service-card__left .service-card__content,
.service-card__right .service-card__content {
  background: var(--color-card-side);
}

.service-card__center .service-card__content {
  background: var(--gradient-card-center);
}

@media (max-width: 640px) {
  .service-card__content {
    padding: 5vw 4.79vw 6.67vw 4.79vw; /* 24px 23px 32px 23px / 480px */
    position: relative;
    min-height: auto;
  }

  .service-card__left .service-card__content,
  .service-card__right .service-card__content,
  .service-card__center .service-card__content {
    background: var(--color-card-side);
  }

  .service-card__content {
    /* First card (Solution) - white bg */
  }

  .service-card__left .service-card__content {
    background: var(--color-card-side);
  }

  .service-card__content {
    /* Second card (Creative) - gradient bg */
  }

  .service-card__center .service-card__content {
    background: var(--gradient-card-center);
  }

  .service-card__content {
    /* Third card (Education) - white bg */
  }

  .service-card__right .service-card__content {
    background: var(--color-card-side);
  }
}

.service-card__title {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-category);
  line-height: 1.4;
  color: var(--color-text-primary);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vw;
  min-height: 72px;
  padding: 16px 24px;
  text-align: center;
  background: var(--color-card-side);
}

.service-card__title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.service-card__title a:hover {
  opacity: 0.7;
}

@supports (backdrop-filter: blur(6px)) {
  .service-card__title {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
  .service-card__title {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .service-card__title {
    font-size: 3.96vw; /* 19px / 480px */
    line-height: 1.3;
    min-height: 12.5vw; /* 60px / 480px */
    padding: 2.5vw 3vw;
  }
}

.service-card__service-list {
  list-style: none;
}

@media (max-width: 640px) {
  .service-card__service-list {
    margin-top: 2vw;
  }
}

.service-card__service-item {
  position: relative;
  padding-left: 20px;
}

.service-card__service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='10' viewBox='0 0 9 10' fill='none'%3E%3Cline x1='0.683013' y1='0.499604' x2='7.61122' y2='4.4996' stroke='%23B7B7B7' stroke-linecap='round'/%3E%3Cline x1='0.5' y1='-0.5' x2='8.5' y2='-0.5' transform='matrix(0.866025,-0.5,-0.5,-0.866025,0,8.43262)' stroke='%23B7B7B7' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 640px) {
  .service-card__service-item {
    padding-left: 4.17vw; /* 20px / 480px */
  }

  .service-card__service-item::before {
    width: 1.67vw; /* 8px / 480px */
    height: 1.67vw; /* 8px / 480px */
  }
}

.service-card__service-link {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-list);
  line-height: var(--line-height-list);
  color: var(--color-text-primary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
  /* アンダーラインアニメーション */
}

.service-card__service-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-text-primary);
  transition: width 0.3s ease;
}

.service-card__service-link:hover {
  color: var(--color-text-primary);
  transform: translateX(4px);
}

.service-card__service-link:hover::after {
  width: 100%;
}

@media (max-width: 640px) {
  .service-card__service-link {
    font-size: 3.33vw; /* 16px / 480px */
    line-height: 10.42vw; /* 50px / 480px */
  }

  .service-card__service-link:hover {
    transform: translateX(2px);
  }
}

/* --------------------------------------------------------------------------
   .service-detail（元: src/app/services/service-detail.module.scss）
   -------------------------------------------------------------------------- */

.service-detail__hero-title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-light);
  font-size: 70px;
  color: var(--color-text-primary);
  line-height: normal;
  margin: 0;
}

@media (max-width: 768px) {
  .service-detail__hero-title {
    font-size: 50px;
  }
}

/* =========================================== */
/* Main Layout */
/* =========================================== */
.service-detail__main {
  min-height: 100vh;
  background: var(--color-white);
}

/* =========================================== */
/* Hero Section */
/* =========================================== */
.service-detail__hero {
  padding-top: var(--header-height);
  background: var(--color-white);
}

.service-detail__hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x-desktop);
}

@media (max-width: 1024px) {
  .service-detail__hero-content {
    padding: 0 var(--padding-x-tablet);
  }
}

@media (max-width: 768px) {
  .service-detail__hero-content {
    padding: 0 var(--padding-x-mobile);
  }
}

.service-detail__hero-content {
  padding-top: 103px;
  padding-bottom: 60px;
}

@media (max-width: 640px) {
  .service-detail__hero-content {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.service-detail__hero-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 60px;
  line-height: 1;
  color: var(--color-text-primary);
  margin-bottom: 31px;
}

@media (max-width: 768px) {
  .service-detail__hero-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .service-detail__hero-title {
    font-size: 6.25vw;
    line-height: 1.4;
  }
}

.service-detail__full-width-image {
  width: 100%;
  margin-block: 2.5rem;
}

.service-detail__full-width-image img {
  width: 100%;
  height: auto;
}

/* =========================================== */
/* Section Base */
/* =========================================== */
.service-detail__section {
  margin: 80px 0;
  background: var(--color-white);
}

@media (max-width: 768px) {
  .service-detail__section {
    margin: 60px 0;
  }
}

@media (max-width: 640px) {
  .service-detail__section {
    margin: 5vw 0;
  }
}

.service-detail__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x-desktop);
}

@media (max-width: 1024px) {
  .service-detail__container {
    padding: 0 var(--padding-x-tablet);
  }
}

@media (max-width: 768px) {
  .service-detail__container {
    padding: 0 var(--padding-x-mobile);
  }
}

/* =========================================== */
/* Section Header */
/* =========================================== */
.service-detail__section-intro {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .service-detail__section-intro {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

.service-detail__section-outro {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin-top: 40px;
}

@media (max-width: 768px) {
  .service-detail__section-outro {
    font-size: 15px;
    margin-top: 32px;
  }
}

.service-detail__section-outro p {
  margin: 1.5rem 0;
}

/* =========================================== */
/* Overview Section */
/* =========================================== */
.service-detail__overview-content {
  margin-top: 60px;
  margin-bottom: 60px;
}

.service-detail__overview-content p {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-detail__overview-content p {
    font-size: 15px;
  }
}

/* Difyロゴ */
.service-detail__dify-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 40px;
}

@media (max-width: 768px) {
  .service-detail__dify-logo {
    margin: 40px 0 24px;
  }
}

@media (max-width: 640px) {
  .service-detail__dify-logo {
    width: 26vw;
    margin-inline: auto;
    margin-bottom: 15vw;
  }

  .service-detail__dify-logo img {
    width: 100%;
    height: auto;
  }
}

/* Difyスクリーンショット */
.service-detail__dify-screenshot {
  margin-bottom: 60px;
}

.service-detail__dify-screenshot img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .service-detail__dify-screenshot {
    margin-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .service-detail__dify-screenshot {
    box-shadow: none;
    margin-bottom: 10vw;
  }
}

/* =========================================== */
/* Process Section */
/* =========================================== */
.service-detail__process-intro {
  margin-bottom: 60px;
}

.service-detail__process-intro p {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .service-detail__process-intro p {
    font-size: 15px;
  }
}

/* processFlow スタイルは ProcessFlow コンポーネントを使用するため削除 */
/* @see src/components/common/ProcessFlow/ProcessFlow.module.scss */
/* =========================================== */
/* Reason Section (当社が選ばれる理由) */
/* =========================================== */
.service-detail__reason-intro {
  margin-bottom: 60px;
}

.service-detail__reason-intro p {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .service-detail__reason-intro p {
    font-size: 15px;
  }
}

/* 理由カード */
.service-detail__reason-outro {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .service-detail__reason-outro {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

/* =========================================== */
/* Pricing Section */
/* =========================================== */
.service-detail__pricing-intro {
  margin-bottom: 40px;
}

.service-detail__pricing-intro p {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .service-detail__pricing-intro p {
    font-size: 15px;
  }
}

/* =========================================== */
/* FAQ */
/* =========================================== */
.service-detail__faq-list {
  max-width: 990px;
}

.service-detail__faq-item {
  margin-bottom: 40px;
}

.service-detail__faq-item:last-child {
  margin-bottom: 0;
}

.service-detail__faq-question {
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .service-detail__faq-question {
    font-size: 16px;
  }
}

.service-detail__faq-answer {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .service-detail__faq-answer {
    font-size: 15px;
  }
}

/* =========================================== */
/* Target List (対象者リスト - 箇条書き) */
/* =========================================== */
.service-detail__target-list {
  list-style: disc;
  padding-left: 27px;
  margin-bottom: 40px;
}

.service-detail__target-list li {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-detail__target-list li {
    font-size: 15px;
  }
}

.service-detail__note {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1;
  color: var(--color-text-primary);
  text-align: right;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .service-detail__note {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .service-detail__note {
    font-size: 2.8vw;
    text-align: left;
  }
}

/* =========================================== */
/* Pattern List (連携パターン) */
/* =========================================== */
.service-detail__chart {
  text-align: center;
  margin-block: 2.5rem;
}

@media screen and (max-width: 640px) {
  .service-detail__chart {
    width: 90%;
    margin-inline: auto;
  }
}

.service-detail__chart img {
  display: block;
  margin-inline: auto;
}

/* =========================================== */
/* Strength Cards (3つの特長) */
/* =========================================== */
.service-detail__strength-cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .service-detail__strength-cards {
    gap: 50px;
    margin-bottom: 60px;
  }
}

@media (max-width: 640px) {
  .service-detail__strength-cards {
    gap: 10vw;
    margin-bottom: 12vw;
  }
}

.service-detail__strength-card {
  padding: 0;
}

.service-detail__strength-top {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .service-detail__strength-top {
    gap: 4vw;
    margin-bottom: 3vw;
  }
}

.service-detail__strength-number {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-light);
  font-size: 100px;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .service-detail__strength-number {
    font-size: 80px;
  }
}

@media (max-width: 640px) {
  .service-detail__strength-number {
    font-size: 18vw;
  }
}

.service-detail__strength-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

@media (max-width: 640px) {
  .service-detail__strength-header {
    gap: 2.5vw;
  }
}

.service-detail__strength-label-en {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-regular);
  font-size: 20px;
  line-height: 1;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .service-detail__strength-label-en {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .service-detail__strength-label-en {
    font-size: 4vw;
  }
}

.service-detail__strength-label-ja {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1;
  color: #539ee6;
}

@media (max-width: 768px) {
  .service-detail__strength-label-ja {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .service-detail__strength-label-ja {
    font-size: 3vw;
  }
}

.service-detail__strength-title {
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .service-detail__strength-title {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

@media (max-width: 640px) {
  .service-detail__strength-title {
    font-size: 3.8vw;
    margin-bottom: 3vw;
  }
}

.service-detail__strength-text {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .service-detail__strength-text {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .service-detail__strength-text {
    font-size: 3.5vw;
    line-height: 2;
  }
}

/* =========================================== */
/* Main Visual Container (メインビジュアル) */
/* =========================================== */
.service-detail__main-visual {
  position: relative;
  width: 100%;
  height: 580px;
  margin-bottom: 60px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .service-detail__main-visual {
    height: auto;
    aspect-ratio: 16/9;
    margin-bottom: 40px;
  }
}

/* =========================================== */
/* Two Column Media (画像+動画の2カラム) */
/* =========================================== */
.service-detail__two-column-media {
  display: flex;
  justify-content: center;
  gap: 0;
}

@media (max-width: 768px) {
  .service-detail__two-column-media {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .service-detail__two-column-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4vw;
    width: 90%;
    margin-inline: auto;
  }
}

/* モバイルでも2カラムを維持するバリエーション */
.service-detail__media-item {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 555/350;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .service-detail__media-item {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-detail__media-item {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .service-detail__media-item {
    height: auto;
  }
}

/* =========================================== */
/* External Link Button (外部リンクボタン) */
/* =========================================== */
.service-detail__external-link-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .service-detail__external-link-wrapper {
    margin-top: 40px;
  }
}

.service-detail__external-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 100px;
  border: 1px solid var(--color-text-primary);
  background: transparent;
  transition: all 0.3s ease;
}

.service-detail__external-link-button:hover {
  background: var(--color-background);
  opacity: 0.8;
}

.service-detail__external-link-button img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .service-detail__external-link-button {
    width: 100%;
    height: 80px;
    padding: 16px;
  }

  .service-detail__external-link-button img {
    max-width: 280px;
  }
}

/* =========================================== */
/* Comparison Table (比較表) */
/* =========================================== */
.service-detail__comparison-table {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .service-detail__comparison-table {
    margin-bottom: 40px;
    overflow-x: auto;
  }
}

.service-detail__comparison-header {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .service-detail__comparison-header {
    min-width: 600px;
  }
}

.service-detail__comparison-header-cell {
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-primary);
  padding: 20px 16px;
}

.service-detail__comparison-header-cell:first-child {
  font-size: 18px;
}

@media (max-width: 768px) {
  .service-detail__comparison-header-cell {
    font-size: 16px;
    padding: 16px 12px;
  }

  .service-detail__comparison-header-cell:first-child {
    font-size: 14px;
  }
}

.service-detail__comparison-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .service-detail__comparison-row {
    min-width: 600px;
  }
}

.service-detail__comparison-label {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  padding: 20px 16px;
}

@media (max-width: 768px) {
  .service-detail__comparison-label {
    font-size: 14px;
    padding: 16px 12px;
  }
}

.service-detail__comparison-cell {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 2.05;
  color: var(--color-text-primary);
  padding: 20px 16px;
}

@media (max-width: 768px) {
  .service-detail__comparison-cell {
    font-size: 14px;
    padding: 16px 12px;
  }
}

/* =========================================== */
/* YouTube Shorts Embed (YouTube縦動画埋め込み) */
/* =========================================== */
.service-detail__youtube-shorts {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

@media (max-width: 640px) {
  .service-detail__youtube-shorts {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .service-detail__youtube-shorts iframe {
    width: 60%;
    height: auto;
    aspect-ratio: 9/16;
  }
}

.service-detail__figcaption {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 0.8rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  margin: 0.5rem 0;
}

/* --------------------------------------------------------------------------
   .gradient-divider（元: src/components/common/GradientDivider/GradientDivider.module.scss）
   -------------------------------------------------------------------------- */

.gradient-divider {
  width: var(--divider-width);
  height: 280px;
  border-radius: 140px;
  background: var(--gradient-accent);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .gradient-divider {
    height: 120px;
    border-radius: 10px;
  }
}

/* --------------------------------------------------------------------------
   .event-content（元: src/components/events/EventContent/EventContent.module.scss）
   -------------------------------------------------------------------------- */

.event-content {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-list);
  line-height: 1.8;
  color: var(--color-text-primary);
}

.event-content h2 {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 24px;
  line-height: 1.4;
  margin: 40px 0 20px;
}

@media (max-width: 768px) {
  .event-content h2 {
    font-size: 20px;
  }
}

.event-content h3 {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 20px;
  line-height: 1.4;
  margin: 32px 0 16px;
}

@media (max-width: 768px) {
  .event-content h3 {
    font-size: 18px;
  }
}

.event-content p {
  margin-bottom: 20px;
}

.event-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 8px;
}

.event-content ul,
.event-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.event-content li {
  margin-bottom: 8px;
}

.event-content a {
  color: #539EE6;
  text-decoration: underline;
}

.event-content a:hover {
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   .decorative-dividers（元: src/components/common/DecorativeDividers/DecorativeDividers.module.scss）
   -------------------------------------------------------------------------- */

.decorative-dividers {
  position: absolute;
  top: 35vh;
  right: 30px;
  display: flex;
  gap: 24px;
  z-index: 5;
  pointer-events: none;
}

.decorative-dividers .decorative-dividers__divider1 {
  margin-top: 120px;
  will-change: transform;
}

.decorative-dividers .decorative-dividers__divider2 {
  margin-top: -50px;
  will-change: transform;
}

@media (max-width: 1024px) {
  .decorative-dividers {
    right: 40px;
  }
}

@media (max-width: 768px) {
  .decorative-dividers {
    display: none;
  }
}

@media (max-width: 640px) {
  .decorative-dividers {
    display: flex;
    top: 6.25vw;
    right: 2.08vw;
    gap: 2vw;
  }

  .decorative-dividers .decorative-dividers__divider1 {
    margin-top: 12vw;
  }

  .decorative-dividers .decorative-dividers__divider2 {
    margin-top: 0;
  }
}

/* --------------------------------------------------------------------------
   .event-info（元: src/components/events/EventInfo/EventInfo.module.scss）
   -------------------------------------------------------------------------- */

.event-info {
  background: var(--color-background);
  padding: 32px;
  border-radius: 8px;
  margin: 40px 0;
}

.event-info__row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.event-info__row:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .event-info__row {
    flex-direction: column;
    gap: 4px;
  }
}

.event-info__label {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-list);
  color: var(--color-text-primary);
  min-width: 120px;
  flex-shrink: 0;
}

.event-info__value {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-list);
  color: var(--color-text-primary);
  flex: 1;
}

/* --------------------------------------------------------------------------
   .news-header（元: src/components/news/NewsHeader/NewsHeader.module.scss）
   -------------------------------------------------------------------------- */

.news-header {
  margin-bottom: 40px;
}

.news-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.news-header__date {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-body);
  color: var(--color-text-primary);
}

.news-header__title {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 42px;
  line-height: 1.4;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .news-header__title {
    font-size: 24px;
  }
}

/* --------------------------------------------------------------------------
   .button（元: src/components/common/Button/Button.module.scss）
   -------------------------------------------------------------------------- */

/* Mobile vw calculations based on 480px design width */
/* Formula: value / 480 * 100 = vw */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button.button--default {
  width: var(--button-width);
  height: var(--button-height);
  font-size: var(--font-size-body);
}

@media (max-width: 768px) {
  .button.button--default {
    width: 100%;
    max-width: var(--button-width);
  }
}

@media (max-width: 640px) {
  .button.button--default {
    width: 88.33vw; /* 424px / 480px */
    max-width: none;
    height: 12.5vw; /* 60px / 480px */
    font-size: 3.75vw; /* 18px / 480px */
  }
}

.button.button--outline {
  background: transparent;
  border: 1px solid var(--color-text-secondary);
  color: var(--color-text-primary);
}

.button.button--outline:hover {
  background: var(--color-text-primary);
  color: var(--color-white);
  border-color: var(--color-text-primary);
}

.button.button--solid {
  background: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
  color: var(--color-white);
}

.button.button--solid:hover {
  background: transparent;
  color: var(--color-text-primary);
}

.button.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   .tabs（元: src/components/common/Tabs/Tabs.module.scss）
   -------------------------------------------------------------------------- */

/* =========================================== */
/* Tabs Container */
/* =========================================== */
.tabs {
  width: 100%;
}

/* =========================================== */
/* Tab List (Role: tablist) */
/* =========================================== */
.tabs__tab-list {
  display: flex;
  gap: 2px; /* Separator between tabs */
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .tabs__tab-list {
    gap: 0;
    margin-bottom: 1.6rem;
  }
}

/* =========================================== */
/* Individual Tab (Role: tab) */
/* =========================================== */
.tabs__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  background: #b7b7b7; /* Inactive gray */
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  /* WCAG: 最小ターゲットサイズ 44x44px を確保 */
  min-width: 44px;
}

@media (max-width: 640px) {
  .tabs__tab {
    padding: 1.6rem 2rem;
    line-height: 1.5;
  }
}

.tabs__tab:hover {
  opacity: 0.9;
}

.tabs__tab {
  /* WCAG: フォーカスインジケーター */
}

.tabs__tab:focus-visible {
  outline: 2px solid #539ee6;
  outline-offset: -2px;
  z-index: 1;
}

.tabs__tab {
  /* アクティブ状態 */
}

.tabs__tab.is-active {
  color: #ffffff;
  font-weight: var(--font-weight-medium);
  background: linear-gradient(90deg, #74e2e1 0%, #539ee6 100%);
}

.tabs__tab {
  /* =========================================== */
  /* Accent Color Variants */
  /* =========================================== */
  /* グラデーション（デフォルト） */
}

.tabs__tab {
  /* シアン */
}

.tabs__tab {
  /* ブルー */
}

.tabs__tab.tabs__tab--blue.is-active {
  background: linear-gradient(90deg, #74e2e1 0%, #539ee6 100%);
}

@media (max-width: 768px) {
  .tabs__tab {
    padding: 14px 20px;
    font-size: 15px;
    height: auto;
    min-height: 50px;
  }
}

@media (max-width: 640px) {
  .tabs__tab {
    font-size: 14px;
    padding: 12px 16px;
  }
}

/* =========================================== */
/* Tab Panels Container */
/* =========================================== */
.tabs__tab-panels {
  width: 100%;
}

/* =========================================== */
/* Tab Panel (Role: tabpanel) */
/* =========================================== */
.tabs__tab-panel {
  /* WCAG: フォーカス可能なパネル */
}

.tabs__tab-panel:focus-visible {
  outline: 2px solid #539ee6;
  outline-offset: 4px;
}

.tabs__tab-panel {
  /* 非表示時はスクリーンリーダーからも隠す */
}

.tabs__tab-panel[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   .event-card（元: src/components/events/EventCard/EventCard.module.scss）
   -------------------------------------------------------------------------- */

.event-card {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
}

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

.event-card__image-wrapper {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 16px;
}

.event-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card__category {
  align-self: flex-start;
}

.event-card__title {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 37px;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .event-card__title {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* --------------------------------------------------------------------------
   .registration-cta（元: src/components/events/RegistrationCTA/RegistrationCTA.module.scss）
   -------------------------------------------------------------------------- */

.registration-cta {
  text-align: center;
  margin: 40px 0;
}

.registration-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: var(--button-width);
  height: var(--button-height);
  background: var(--color-text-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-body);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.registration-cta__button:hover {
  background: #539EE6;
}

@media (max-width: 768px) {
  .registration-cta__button {
    width: 100%;
    max-width: var(--button-width);
  }
}

.registration-cta__external-icon {
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   .back-to-list（元: src/components/common/BackToListButton/BackToListButton.module.scss）
   -------------------------------------------------------------------------- */

.back-to-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-list);
  color: var(--color-text-primary);
  text-decoration: none;
  margin: 40px 0;
  transition: opacity 0.2s ease;
}

.back-to-list:hover {
  opacity: 0.7;
}

.back-to-list__arrow {
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   .news-detail-page（元: src/app/news/[id]/page.module.scss）
   -------------------------------------------------------------------------- */

.news-detail-page__main {
  padding-top: var(--header-height);
}

.news-detail-page__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x-desktop);
}

@media (max-width: 1024px) {
  .news-detail-page__container {
    padding: 0 var(--padding-x-tablet);
  }
}

@media (max-width: 768px) {
  .news-detail-page__container {
    padding: 0 var(--padding-x-mobile);
  }
}

.news-detail-page__container {
  padding-top: 40px;
  padding-bottom: 80px;
}

.news-detail-page__article {
  margin-top: 40px;
  max-width: 800px;
}

/* --------------------------------------------------------------------------
   .creative-page（元: src/app/services/creative/page.module.scss）
   -------------------------------------------------------------------------- */

.creative-page__hero-title-en {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-light);
  font-size: 70px;
  color: var(--color-text-primary);
  line-height: normal;
  margin: 0;
}

@media (max-width: 768px) {
  .creative-page__hero-title-en {
    font-size: 42px;
  }
}

.creative-page__hero-title-ja {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 20px;
  color: var(--color-text-primary);
  margin: 14px 0 28px;
}

@media (max-width: 768px) {
  .creative-page__hero-title-ja {
    font-size: 16px;
    margin: 10px 0 20px;
  }
}

.creative-page__main {
  background-color: var(--color-background);
  min-height: 100vh;
}

/* =========================================== */
/* Hero Section */
/* =========================================== */
.creative-page__hero {
  position: relative;
  min-height: 900px;
  padding-top: var(--header-height);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .creative-page__hero {
    min-height: auto;
    padding-bottom: 60px;
  }
}

.creative-page__hero-content {
  position: relative;
  z-index: 2;
  padding: 66px 0 0 var(--padding-x-desktop);
  max-width: var(--max-width);
}

@media (max-width: 1024px) {
  .creative-page__hero-content {
    padding: 40px var(--padding-x-tablet) 0;
  }
}

@media (max-width: 768px) {
  .creative-page__hero-content {
    padding: 30px var(--padding-x-mobile) 0;
  }
}

/* heroTitleEn, heroTitleJa スタイルは共通スタイルを使用 */
.creative-page__hero-catchcopy {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 40px;
  line-height: 1.8;
  color: var(--color-text-primary);
  margin: 30px 0 0;
}

@media (max-width: 768px) {
  .creative-page__hero-catchcopy {
    font-size: 24px;
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .creative-page__hero-catchcopy {
    font-size: 5.6vw;
    line-height: 1.5;
    margin-top: 1rem;
  }
}

.creative-page__hero-description {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text-primary);
  max-width: 700px;
  margin-top: 65px;
}

@media (max-width: 768px) {
  .creative-page__hero-description {
    font-size: 15px;
    margin-top: 40px;
  }
}

.creative-page__hero-visual {
  position: absolute;
  top: 202px;
  right: 0;
  width: 700px;
  height: 700px;
}

@media (max-width: 1400px) {
  .creative-page__hero-visual {
    width: 50%;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 1024px) {
  .creative-page__hero-visual {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 500px;
    margin: 40px auto 0;
    padding: 0 var(--padding-x-tablet);
  }
}

@media (max-width: 768px) {
  .creative-page__hero-visual {
    padding: 0 var(--padding-x-mobile);
    max-width: 400px;
  }
}

.creative-page__video-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.creative-page__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --------------------------------------------------------------------------
   .info-table（元: src/components/common/InfoTable/InfoTable.module.scss）
   -------------------------------------------------------------------------- */

.info-table {
  max-width: 1110px;
  margin: 0 auto;
}

.info-table__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.info-table__row:first-child {
  border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .info-table__row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }
}

.info-table__label {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--color-text-primary);
}

.info-table__value {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-body);
  line-height: 1.8;
  color: var(--color-text-primary);
}

.info-table__value ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-table__value ul li {
  position: relative;
  padding-left: 20px;
}

.info-table__value ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-text-primary);
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   .complete-message（元: src/components/contact/CompleteMessage/CompleteMessage.module.scss）
   -------------------------------------------------------------------------- */

.complete-message {
  text-align: center;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .complete-message {
    padding: 60px 0;
  }
}

.complete-message__title {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 28px;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .complete-message__title {
    font-size: 24px;
  }
}

.complete-message__message {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-list);
  line-height: 2;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   .event-card-grid（元: src/components/events/EventCardGrid/EventCardGrid.module.scss）
   -------------------------------------------------------------------------- */

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

@media (max-width: 1024px) {
  .event-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
}

@media (max-width: 768px) {
  .event-card-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   .contact-complete-page（元: src/app/contact/complete/page.module.scss）
   -------------------------------------------------------------------------- */

.contact-complete-page__main {
  padding-top: var(--header-height);
}

.contact-complete-page__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x-desktop);
}

@media (max-width: 1024px) {
  .contact-complete-page__container {
    padding: 0 var(--padding-x-tablet);
  }
}

@media (max-width: 768px) {
  .contact-complete-page__container {
    padding: 0 var(--padding-x-mobile);
  }
}

.contact-complete-page__container {
  padding-top: 40px;
  padding-bottom: 80px;
}

.contact-complete-page__content {
  margin-top: 40px;
}
