.pc-only {
    display: none;
}

.sp-only {
    display: block;
}

@media screen and (min-width: 699px) {
  .pc-only {
      display: block;
  }

  .sp-only {
      display: none;
  }
}

/* ==========================================================================
   Header Service Menu - Galapagos
   ========================================================================== */

/* Variables */
:root {
  --hs-primary: #008a83;
  --hs-text: #111111;
  --hs-white: #ffffff;
  --hs-bg: #f8f8f8;
  --hs-radius-s: 16px;
}

/* Container */
.header-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 320px;
  background-color: var(--hs-bg);
  box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.08);
}

/* Header Title Section */
.header-service__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  /* max-width: 1280px; */
  text-align: center;
}

.header-service__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.44px;
  color: var(--hs-text);
  margin: 0;
}

.header-service__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.72px;
  color: var(--hs-primary);
  margin: 0;
}

/* Columns Container */
.header-service__columns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  width: 100%;
  /* max-width: 1280px; */
  min-height: 452px;
}

/* Single Column */
.header-service__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  flex: 1;
  min-width: 0;
}

/* Logo Box */
.header-service__logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 347px;
  height: 100px;
  padding: 20px 0;
  background-color: var(--hs-white);
  border-radius: var(--hs-radius-s);
  box-sizing: border-box;
}

.header-service__logo {
  display: block;
  max-width: 100%;
  height: auto;
}

.header-service__logo--galapagos {
  width: 275px;
  height: auto;
}

.header-service__logo--air-design {
  width: 262px;
  height: auto;
}

.header-service__logo--app-dev {
  width: 282px;
  height: 33px;
}

/* Divider */
.header-service__divider {
  width: 1px;
  height: 452px;
  background-color: #cccccc;
  flex-shrink: 0;
}

/* Links List */
.header-service__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 0 16px;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

/* Link Item */
.header-service__link-item {
  display: flex;
}

.header-service__link-item--child {
  padding-left: 32px;
}

/* Link */
.header-service__link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.header-service__link--child {
  gap: 8px;
}

/* Link Icon */
.header-service__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--hs-primary);
}

.header-service__link-icon svg {
  width: 100%;
  height: 100%;
}

.header-service__link-icon--child {
  width: 24px;
  height: 24px;
}

.header-service__link-icon--child svg {
  width: 5px;
  height: 9px;
}

/* Link Text */
.header-service__link-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 1.44px;
  color: var(--hs-text);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.header-service__link-item--child {
  margin-bottom: -16px;
}

/* Hover effect - text color change and underline */
.header-service__link:hover .header-service__link-text {
  color: var(--hs-primary);
  border-bottom-color: var(--hs-primary);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .header-service {
    padding: 60px 100px;
  }
}

/* Desktop */
@media screen and (max-width: 1440px) {
  .header-service {
    width: 100%;
    padding: 60px 60px;
  }

  .header-service__columns {
    gap: 40px;
  }

  .header-service__logo-box {
    width: 100%;
    max-width: 320px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .header-service {
    width: 100%;
    padding: 40px 40px;
  }

  .header-service__columns {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .header-service__column {
    width: 100%;
    max-width: 400px;
  }

  .header-service__divider {
    width: 100%;
    max-width: 400px;
    height: 1px;
  }

  .header-service__logo-box {
    width: 100%;
    max-width: 400px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .header-service {
    padding: calc(40 / 750 * 100vw) calc(20 / 750 * 100vw);
    gap: calc(30 / 750 * 100vw);
  }

  .header-service__header {
    gap: calc(12 / 750 * 100vw);
  }

  .header-service__title {
    font-size: calc(28 / 750 * 100vw);
  }

  .header-service__subtitle {
    font-size: calc(20 / 750 * 100vw);
  }

  .header-service__columns {
    gap: calc(30 / 750 * 100vw);
  }

  .header-service__column {
    gap: calc(24 / 750 * 100vw);
  }

  .header-service__logo-box {
    height: calc(80 / 750 * 100vw);
    padding: calc(16 / 750 * 100vw) 0;
  }

  .header-service__logo--galapagos {
    width: calc(220 / 750 * 100vw);
  }

  .header-service__logo--air-design {
    width: calc(210 / 750 * 100vw);
  }

  .header-service__logo--app-dev {
    width: calc(226 / 750 * 100vw);
    height: auto;
  }

  .header-service__links {
    gap: calc(12 / 750 * 100vw);
    padding: 0 calc(12 / 750 * 100vw);
  }

  .header-service__link-item--child {
    padding-left: calc(24 / 750 * 100vw);
  }

  .header-service__link {
    gap: calc(12 / 750 * 100vw);
  }

  .header-service__link-text {
    font-size: calc(16 / 750 * 100vw);
    letter-spacing: calc(1 / 750 * 100vw);
  }
}

/* ==========================================================================
   Hero Section - Galapagos AI
   ========================================================================== */

/* Variables */
:root {
  --hero-primary: #008a83;
  --hero-text: #111111;
  --hero-white: #ffffff;
  --hero-radius-s: 16px;
  --hero-radius-btn: 80px;
}

/* Section Container */
.hero-section {
  position: relative;
  background: linear-gradient(299deg, #F8FAFA 50%, #E8F4F4 85.96%);
  padding: 80px 160px 80px 320px;
  overflow: hidden;
  margin-top: 80px;
}

/* Background Decorations */
.hero-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-section__deco {
  position: absolute;
}

.hero-section__deco--wifi {
  top: 148px;
  right: 320px;
  width: 82px;
  height: 82px;
}

.hero-section__deco--sparkle {
  top: 246px;
  right: 429px;
  width: 95px;
  height: 52px;
}

.hero-section__deco--chart {
  top: 298px;
  right: 261px;
  width: 154px;
  height: 154px;
}

.hero-section__robot {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: auto;
  max-width: 860px;
}

.hero-section__robot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Inner Container */
.hero-section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
}

/* Article */
.hero-section__article {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 60px;
}

/* Header (Logo + Catchphrase) */
.hero-section__header {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-section__logo {
  flex-shrink: 0;
  width: 628px;
}

.hero-section__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-section__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 1.68px;
  color: var(--hero-text);
  margin: 0;
}

/* Stats Section */
.hero-section__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-section__stats-cards {
  display: flex;
  gap: 24px;
  max-width: 628px;
}

.hero-section__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px;
  background-color: var(--hero-white);
  border-radius: var(--hero-radius-s);
}

.hero-section__card-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: var(--hero-text);
  margin: 0;
}

.hero-section__card-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-weight: 700;
  color: var(--hero-primary);
  margin: 0;
}

.hero-section__card-number {
  font-family: "Oswald", sans-serif;
  font-size: 46px;
  line-height: 1.2;
}

.hero-section__card-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.72px;
}

.hero-section__card-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: var(--hero-text);
  margin-bottom: 8px;
}

.hero-section__stats-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.96px;
  color: var(--hero-text);
  margin: 0;
}

/* Description */
.hero-section__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--hero-text);
  max-width: 780px;
}

.hero-section--top .hero-section__description {
  /* TOPだけ特別 */
  margin-top: -20px;
}

.hero-section__description p {
  margin: 0;
}

/* CTA Buttons */
.hero-section__cta {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.hero-section__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  padding: 18px 40px 20px;
  background-color: var(--hero-primary);
  border-radius: var(--hero-radius-btn);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-section__btn:hover {
  opacity: 0.8;
}

.hero-section__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  color: var(--hero-white);
}

.hero-section__btn-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.hero-section__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .hero-section {
    padding: 80px 200px;
  }

  .hero-section__robot {
    /* right: -150px; */
    max-width: 700px;
  }
}

/* Tablet Large */
@media screen and (max-width: 1440px) {
  .hero-section {
    padding: 80px 80px;
  }

  .hero-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-section__logo {
    width: 500px;
  }

  .hero-section__catchphrase {
    font-size: 24px;
  }

  .hero-section__robot {
    max-width: 700px;
  }

  .hero-section__deco--wifi {
    right: 82px;
  }

  .hero-section__deco--sparkle {
    right: 204px;
  }

  .hero-section__deco--chart {
    right: 95px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .hero-section {
    padding: 60px 40px;
  }

  .hero-section__article {
    gap: 40px;
    padding-top: 40px;
  }

  .hero-section__logo {
    width: 450px;
  }

  .hero-section__catchphrase {
    font-size: 22px;
  }

  .hero-section__stats-cards {
    max-width: 100%;
    width: 100%;
  }

  .hero-section__card {
    padding: 20px 24px;
  }

  .hero-section__card-label {
    font-size: 16px;
  }

  .hero-section__card-number {
    font-size: 38px;
  }

  .hero-section__card-unit {
    font-size: 28px;
  }

  .hero-section__description {
    max-width: 100%;
  }

  .hero-section__robot {
    top: -300px;
    /* right: -250px; */
    max-width: 600px;
  }

  .hero-section__cta {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-section__btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .hero-section {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
    margin-top: 0;
  }

  .hero-section__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hero-section__article {
    gap: calc(60 / 750 * 100vw);
    padding-top: calc(300 / 750 * 100vw);
  }

  /* Background for Mobile */
  .hero-section__robot {
    right: calc(-210 / 750 * 100vw);
    top: calc(-1160 / 750 * 100vw);
    transform: rotate(-15deg);
    max-width: calc(700 / 750 * 100vw);
  }

  .hero-section__deco--wifi {
    display: block;
    top: calc(56 / 750 * 100vw);
    right: calc(20 / 750 * 100vw);
    left: auto;
    width: calc(100 / 750 * 100vw);
    height: calc(100 / 750 * 100vw);
  }

  .hero-section__deco--sparkle {
    display: block;
    top: calc(297 / 750 * 100vw);
    /* left: 50%; */
    left: calc(182 / 750 * 100vw);
    right: auto;
    transform: translateX(-50%);
    width: calc(94 / 750 * 100vw);
    height: calc(52 / 750 * 100vw);
  }

  .hero-section__deco--chart {
    display: block;
    top: calc(129 / 750 * 100vw);
    left: calc(20 / 750 * 100vw);
    right: auto;
    width: calc(154 / 750 * 100vw);
    height: calc(154 / 750 * 100vw);
  }

  /* Header */
  .hero-section__header {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section__logo {
    width: 100%;
    max-width: calc(584 / 750 * 100vw);
  }

  .hero-section__catchphrase {
    font-size: calc(36 / 750 * 100vw);
    line-height: 1.6;
    letter-spacing: calc(2.88 / 750 * 100vw);
  }

  /* Stats */
  .hero-section__stats {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section__stats-cards {
    flex-direction: row;
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section__card {
    flex: 1;
    gap: calc(8 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .hero-section__card-label {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: calc(1.68 / 750 * 100vw);
    text-align: center;
  }

  .hero-section__card-number {
    font-size: calc(54 / 750 * 100vw);
  }

  .hero-section__card-unit {
    font-size: calc(36 / 750 * 100vw);
  }

  .hero-section__card-note {
    font-size: calc(20 / 750 * 100vw);
    margin-bottom: calc(4 / 750 * 100vw);
  }

  .hero-section__stats-note {
    font-size: calc(20 / 750 * 100vw);
    letter-spacing: calc(1.6 / 750 * 100vw);
    text-align: center;
  }

  /* Description */
  .hero-section__description {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.8;
    letter-spacing: calc(2.08 / 750 * 100vw);
    text-align: justify;
  }

  /* CTA */
  .hero-section__cta {
    flex-direction: column;
    align-items: center;
    gap: calc(40 / 750 * 100vw);
    width: 100%;
  }

  .hero-section__btn {
    width: 100%;
    max-width: calc(640 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(40 / 750 * 100vw) calc(36 / 750 * 100vw);
    border-radius: calc(157.5 / 750 * 100vw);
  }

  .hero-section__btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: calc(32 / 750 * 100vw);
    line-height: 1.3;
    letter-spacing: calc(1.92 / 750 * 100vw);
  }

  .hero-section__btn-icon {
    right: calc(52 / 750 * 100vw);
    width: calc(32 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }
}

/* ==========================================================================
   AX Section - AIトランスフォーメーション（AX）
   ========================================================================== */

/* Variables */
:root {
  --ax-primary: #008a83;
  --ax-bg-white: #ffffff;
  --ax-bg-light: #f8f8f8;
  --ax-border: #dcdcdc;
  --ax-text-black: #000000;
  --ax-text-body: #111111;
  --ax-radius: 24px;
}

/* Section Container */
.ax-section {
  background-color: var(--ax-bg-white);
  padding: 80px 80px 100px;
}

/* Inner Container */
.ax-section__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 32px;
}

/* Article (Header) */
.ax-section__article {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.ax-section__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.ax-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.44px;
  color: var(--ax-text-black);
  margin: 0;
}

.ax-section__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.72px;
  color: var(--ax-primary);
  margin: 0;
}

.ax-section__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--ax-text-body);
  margin: 0;
}

/* Stats List */
.ax-section__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}

/* Stats Item */
.ax-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: var(--ax-bg-light);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius);
  padding: 32px 32px 36px;
  min-width: 390px;
  max-width: 390px;
}

.ax-section__item-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: var(--ax-text-body);
  margin: 0;
  text-align: center;
}

.ax-section__item-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color: var(--ax-primary);
  font-weight: 700;
  line-height: 1.2;
}

.ax-section__item-number {
  font-family: "Oswald", sans-serif;
  font-size: 46px;
}

.ax-section__item-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  letter-spacing: 0.72px;
}

.ax-section__item-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #111111;
  letter-spacing: 0.72px;
}

.ax-section__note .ax-section__note--description {
  font-family: "Noto Sans JP";
  color: #111;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.96px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1440px) {
  .ax-section {
    padding: 80px 80px 100px;
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .ax-section {
    padding: 60px 40px 80px;
  }

  .ax-section__inner {
    padding: 0;
    gap: 40px;
  }

  .ax-section__title {
    font-size: 30px;
  }

  .ax-section__subtitle {
    font-size: 20px;
  }

  .ax-section__description {
    font-size: 14px;
  }

  .ax-section__description br {
    display: none;
  }

  .ax-section__list {
    gap: 24px;
  }

  .ax-section__item {
    padding: 24px;
    min-width: 320px;
    max-width: 320px;
  }

  .ax-section__item-label {
    font-size: 16px;
  }

  .ax-section__item-number {
    font-size: 36px;
  }

  .ax-section__item-unit {
    font-size: 28px;
  }
}

/* Tablet - 2列3行に変更 */
@media screen and (max-width: 960px) {
  .ax-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .ax-section {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .ax-section__inner {
    padding: 0 calc(20 / 750 * 100vw);
    gap: calc(60 / 750 * 100vw);
  }

  .ax-section__article {
    gap: calc(40 / 750 * 100vw);
  }

  .ax-section__title-wrap {
    gap: calc(24 / 750 * 100vw);
  }

  .ax-section__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  .ax-section__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: calc(0.96 / 750 * 100vw);
  }

  .ax-section__description {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .ax-section__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(24 / 750 * 100vw);
  }

  .ax-section__item {
    padding: calc(24 / 750 * 100vw);
    min-width: 100%;
    max-width: 100%;
  }

  .ax-section__item-label {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: calc(1.68 / 750 * 100vw);
  }

  .ax-section__item-number {
    font-size: calc(54 / 750 * 100vw);
  }

  .ax-section__item-unit {
    font-size: calc(36 / 750 * 100vw);
  }

  .ax-section__note .ax-section__note--description {
    text-align: center;
  }
}

/* ==========================================================================
   Hub Section - Galapagos AI の豊富なラインナップ
   ========================================================================== */

/* Variables */
:root {
  --hub-primary: #008a83;
  --hub-primary-light: #269c97;
  --hub-bg-dark: #0a2e2c;
  --hub-text-white: #ffffff;
  --hub-text-light: #edfffe;
  --hub-text-muted: #e0f2f1;
  --hub-btn-bg: rgba(255, 255, 255, 0.16);
  --hub-btn-radius: 80px;
}

/* Section Container */
.hub-section {
  background-color: var(--hub-bg-dark);
  background-image: url('/wp-content/themes/galapagos2023/assets/img/service/ai/bg-hub.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 160px;
  position: relative;
}

/* Inner Container */
.hub-section__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* Article (Header) */
.hub-section__article {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hub-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.44px;
  color: var(--hub-text-white);
  margin: 0;
}

.hub-section__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--hub-text-light);
  margin: 0;
  padding: 20px;
}

/* Service List */
.hub-section__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

/* Service Item */
.hub-section__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  width: 100%;
  max-width: 659px;
}

.hub-section__item--indent-1 {
  padding-right: 80px;
}

.hub-section__item--indent-2 {
  padding-right: 160px;
}

.hub-section__item-icon {
  flex-shrink: 0;
}

.hub-section__item-icon img {
  display: block;
  width: 135px;
  height: auto;
}

.hub-section__item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 492px;
}

.hub-section__item-header {
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.hub-section__item-title-wrap {
  flex: 1;
  border-bottom: 4px solid var(--hub-primary);
  padding-bottom: 12px;
}

.hub-section__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--hub-text-white);
  margin: 0;
}

.hub-section__item-number {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.3;
  color: var(--hub-text-muted);
  opacity: 0.3;
  flex-shrink: 0;
}

.hub-section__item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.12px;
  color: var(--hub-text-light);
  margin: 0;
}

/* Item Layout - Icon + Content */
.hub-section__item {
  display: grid;
  grid-template-columns: 135px 492px;
  grid-template-rows: auto auto;
  gap: 24px 32px;
  align-items: start;
  justify-content: end;
  width: 100%;
}

.hub-section__item-icon {
  grid-column: 1;
  grid-row: 1;
}

.hub-section__item-content {
  grid-column: 2;
  grid-row: 1;
}

.hub-section__item-btn-wrap {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: flex-end;
  padding-right: 8px;
}

/* Button */
.hub-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px 16px;
  background-color: var(--hub-btn-bg);
  border-radius: var(--hub-btn-radius);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 1.08px;
  color: var(--hub-text-white);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hub-section__btn:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

.hub-section__item-icon-mobile {
  display: none;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1440px) {
  .hub-section {
    padding: 100px 160px;
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .hub-section {
    padding: 80px 80px;
  }

  .hub-section__inner {
    padding: 0;
    gap: 40px;
  }

  .hub-section__title {
    font-size: 30px;
  }

  .hub-section__description {
    font-size: 14px;
  }

  .hub-section__description br {
    display: none;
  }

  .hub-section__item {
    grid-template-columns: 100px 400px;
    gap: 16px 24px;
  }

  .hub-section__item--indent-1 {
    padding-right: 40px;
  }

  .hub-section__item--indent-2 {
    padding-right: 80px;
  }

  .hub-section__item-icon img {
    width: 100px;
  }

  .hub-section__item-content {
    width: 400px;
  }

  .hub-section__item-title {
    font-size: 22px;
  }

  .hub-section__item-number {
    font-size: 40px;
  }

  .hub-section__item-description {
    font-size: 13px;
  }

  .hub-section__btn {
    font-size: 16px;
    padding: 12px 32px 14px;
  }
}

/* Tablet */
@media screen and (max-width: 960px) {
  .hub-section {
    padding: 60px 40px;
  }

  .hub-section__item {
    grid-template-columns: 80px 1fr;
    max-width: 100%;
    justify-content: center;
    border-radius: var(--radius-M, 24px);
    background: linear-gradient(137deg, #24353B 24.17%, #23343A 30.92%, #223338 37.67%, #213237 44.41%, #1F3134 51.16%, #1E3032 57.91%, #1D2F30 64.66%, #1C2E2F 71.41%, #1B2D2E 78.15%, #1A2C2D 91.65%);
    padding: 40px 40px;
  }

  .hub-section__item--indent-1,
  .hub-section__item--indent-2 {
    /* padding-right: 0; */
  }

  .hub-section__item-icon img {
    width: 80px;
  }

  .hub-section__item-content {
    width: 100%;
    /* max-width: 400px; */
  }

  .hub-section__item-header {
    gap: 16px;
  }

  .hub-section__item-title {
    font-size: 20px;
  }

  .hub-section__item-number {
    font-size: 36px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .hub-section {
    background-image: url('/wp-content/themes/galapagos2023/assets/img/service/ai/bg-hub-mobile.jpg');
    background-position-y: top;
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .hub-section__inner {
    padding: 0;
    gap: calc(60 / 750 * 100vw);
  }

  .hub-section__article {
    gap: calc(40 / 750 * 100vw);
  }

  .hub-section__title {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: calc(1.44 / 750 * 100vw);
  }

  .hub-section__description {
    font-size: calc(24 / 750 * 100vw);
    letter-spacing: calc(1.92 / 750 * 100vw);
    margin-top: calc(460 / 750 * 100vw);
    text-align: left;
  }

  .hub-section--top .hub-section__description {
    margin-top: calc(400 / 750 * 100vw);
  }

  .hub-section__description br {
    display: inline;
  }

  .hub-section__list {
    gap: calc(40 / 750 * 100vw);
    align-items: stretch;
  }

  .hub-section__item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 750 * 100vw);
    align-items: center;
    max-width: 100%;
    /* padding-right: 0; */
    padding: calc(60 / 750 * 100vw) calc(40 / 750 * 100vw);
    border-radius: calc(24 / 750 * 100vw);
    background: linear-gradient(137deg, #24353B 24.17%, #23343A 30.92%, #223338 37.67%, #213237 44.41%, #1F3134 51.16%, #1E3032 57.91%, #1D2F30 64.66%, #1C2E2F 71.41%, #1B2D2E 78.15%, #1A2C2D 91.65%);
  }

  .hub-section__item--indent-1,
  .hub-section__item--indent-2 {
    /* padding-right: 0; */
  }

  .hub-section__item-icon {
    display: none;
    /* order: 1; */
  }

  .hub-section__item-icon img {
    width: calc(100 / 750 * 100vw);
    height: auto;
  }

  .hub-section__item-icon-mobile {
    display: block;
  }

  .hub-section__item-content {
    order: 2;
    width: 100%;
    max-width: 100%;
    gap: calc(16 / 750 * 100vw);
  }

  .hub-section__item-header {
    flex-direction: row;
    gap: calc(16 / 750 * 100vw);
  }

  .hub-section__item-title-wrap {
    flex: 1;
    /* border-bottom-width: 3px; */
    padding-bottom: calc(10 / 750 * 100vw);
    border-bottom: calc(3 / 750 * 100vw) solid var(--hub-primary);
  }

  .hub-section__item-title {
    font-size: calc(28 / 750 * 100vw);
    letter-spacing: calc(1.68 / 750 * 100vw);
  }

  .hub-section__item-number {
    font-size: calc(40 / 750 * 100vw);
  }

  .hub-section__item-description {
    font-size: calc(22 / 750 * 100vw);
    letter-spacing: calc(1.76 / 750 * 100vw);
    line-height: 1.7;
  }

  .hub-section__item-btn-wrap {
    order: 3;
    width: 100%;
    justify-content: flex-end;
    padding-right: 0;
  }

  .hub-section__btn {
    font-size: calc(24 / 750 * 100vw);
    padding: calc(18 / 750 * 100vw) calc(48 / 750 * 100vw) calc(20 / 750 * 100vw);
    letter-spacing: calc(1.44 / 750 * 100vw);
  }
}

/* ==========================================================================
   CV Section - 生成AIに関すること、何でもお問い合わせください
   ========================================================================== */

/* Variables */
:root {
  --cv-bg-dark: #020000;
  --cv-primary: #008a83;
  --cv-primary-border: #269c97;
  --cv-text-white: #ffffff;
  --cv-text-light: #edfffe;
  /* --cv-card-bg: rgba(255, 255, 255, 0.04); */
  --cv-card-bg: rgba(255, 255, 255, 0.08);
  --cv-btn-bg: linear-gradient(180deg, rgba(0, 138, 131, 0.4) 0%, rgba(0, 138, 131, 0.1) 100%);
  --cv-radius-card: 40px;
  --cv-radius-btn: 80px;
}

/* Section Container */
.cv-section {
  background-color: var(--cv-bg-dark);
  padding: 80px 160px 100px;
  position: relative;
  overflow: hidden;
}

/* Inner Container */
.cv-section__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* Article (Header) */
.cv-section__article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.cv-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.44px;
  color: var(--cv-text-white);
  margin: 0;
}

.cv-section__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.72px;
  color: var(--cv-text-light);
  margin: 0;
}

/* Cards Container */
.cv-section__cards {
  display: flex;
  gap: 40px;
  width: 100%;
}

/* Card */
.cv-section__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 80px 40px 72px;
  background: var(--cv-card-bg);
  border-radius: var(--cv-radius-card);
  min-height: 280px;
}

.cv-section__card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 24px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.cv-section__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--cv-text-white);
  margin: 0;
}

.cv-section__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: var(--cv-text-light);
  margin: 0;
}

/* Button */
.cv-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 320px;
  padding: 16px 40px 20px;
  background: var(--cv-btn-bg);
  border: 1px solid var(--cv-primary-border);
  border-radius: var(--cv-radius-btn);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.cv-section__btn:hover {
  background: linear-gradient(180deg, rgba(0, 138, 131, 0.6) 0%, rgba(0, 138, 131, 0.2) 100%);
  border-color: var(--cv-primary);
}

.cv-section__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  color: var(--cv-text-white);
}

.cv-section__btn-icon {
  position: absolute;
  right: 31px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-section__btn-icon svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1440px) {
  .cv-section {
    padding: 80px 80px 100px;
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .cv-section {
    padding: 60px 40px 80px;
  }

  .cv-section__inner {
    padding: 0;
    gap: 48px;
  }

  .cv-section__title {
    font-size: 30px;
  }

  .cv-section__card {
    padding: 60px 40px 56px;
    border-radius: 32px;
  }

  .cv-section__card-title {
    font-size: 24px;
  }

  .cv-section__card-text {
    font-size: 18px;
  }

  .cv-section__btn {
    width: 280px;
  }

  .cv-section__btn-text {
    font-size: 18px;
  }
}

/* Tablet */
@media screen and (max-width: 960px) {
  .cv-section {
    padding: 60px 20px 80px;
  }

  .cv-section__cards {
    flex-direction: column;
    gap: 40px;
  }

  .cv-section__card {
    padding: 60px 40px;
    border-radius: 24px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .cv-section {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw) calc(100 / 750 * 100vw);
  }

  .cv-section__inner {
    padding: 0 calc(20 / 750 * 100vw);
    gap: calc(60 / 750 * 100vw);
  }

  .cv-section__article {
    gap: calc(24 / 750 * 100vw);
  }

  .cv-section__title {
    font-size: calc(40 / 750 * 100vw);
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  .cv-section__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: calc(0.96 / 750 * 100vw);
  }

  .cv-section__cards {
    gap: calc(40 / 750 * 100vw);
  }

  .cv-section__card {
    padding: calc(80 / 750 * 100vw) calc(40 / 750 * 100vw) calc(72 / 750 * 100vw);
    gap: calc(40 / 750 * 100vw);
    border-radius: calc(24 / 750 * 100vw);
    min-height: auto;
  }

  .cv-section__card-content {
    gap: calc(16 / 750 * 100vw);
  }

  .cv-section__card-title {
    font-size: calc(34 / 750 * 100vw);
    letter-spacing: calc(2.04 / 750 * 100vw);
  }

  .cv-section__card-text {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.8;
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .cv-section__btn {
    width: 100%;
    max-width: calc(510 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(40 / 750 * 100vw) calc(36 / 750 * 100vw);
  }

  .cv-section__btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: calc(1.92 / 750 * 100vw);
  }

  .cv-section__btn-icon {
    right: calc(47 / 750 * 100vw);
    width: calc(32 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }

  .cv-section__bg {
    width: calc(1200 / 750 * 100vw);
  }
}

/* ==========================================================================
   Solution Hero - Independent Styles (20-solution-hero)
   Note: This file is self-contained and does NOT depend on 10-top-hero
   ========================================================================== */

/* Variables */
:root {
  --hero-primary: #008a83;
  --hero-text: #111111;
  --hero-white: #ffffff;
  --hero-radius-s: 16px;
  --hero-radius-btn: 80px;
}

/* ==========================================================================
   Section Container
   ========================================================================== */
.hero-section--solution {
  position: relative;
  background: linear-gradient(299deg, #F8FAFA 50%, #E8F4F4 85.96%);
  padding: 80px 320px;
  overflow: hidden;
}

/* ==========================================================================
   Background Decorations
   ========================================================================== */
.hero-section--solution .hero-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-section--solution .hero-section__deco {
  position: absolute;
}

/* Pentagon Decoration */
.hero-section--solution .hero-section__deco--pentagon {
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  width: 351px;
  height: 339px;
}

.hero-section--solution .hero-section__deco--pentagon img {
  width: 100%;
  height: 100%;
}

/* AI Icon Decoration */
.hero-section--solution .hero-section__deco--icon {
  position: absolute;
  right: 300px;
  top: 214px;
  transform: translateY(calc(-50% - 60px));
  width: 112px;
  height: 112px;
}

.hero-section--solution .hero-section__deco--icon img {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Inner Container
   ========================================================================== */
.hero-section--solution .hero-section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
}

/* ==========================================================================
   Article
   ========================================================================== */
.hero-section--solution .hero-section__article {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 60px;
}

/* ==========================================================================
   Header (Logo + Title)
   ========================================================================== */
.hero-section--solution .hero-section__header {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-section--solution .hero-section__logo {
  flex-shrink: 0;
  width: 628px;
}

.hero-section--solution .hero-section__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Title
   ========================================================================== */
.hero-section--solution .hero-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.3;
  letter-spacing: 1.76px;
  color: var(--hero-text);
  margin: 0;
}

/* ==========================================================================
   Feature List
   ========================================================================== */
.hero-section--solution .hero-section__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-section--solution .hero-section__feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-section--solution .hero-section__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.hero-section--solution .hero-section__feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-section--solution .hero-section__feature-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1.44px;
  color: var(--hero-text);
}

/* ==========================================================================
   CTA Buttons
   ========================================================================== */
.hero-section--solution .hero-section__cta {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.hero-section--solution .hero-section__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  padding: 18px 40px 20px;
  background-color: var(--hero-primary);
  border-radius: var(--hero-radius-btn);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-section--solution .hero-section__btn:hover {
  opacity: 0.8;
}

.hero-section--solution .hero-section__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  color: var(--hero-white);
}

.hero-section--solution .hero-section__btn-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.hero-section--solution .hero-section__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .hero-section--solution {
    padding: 80px 200px;
  }

  .hero-section--solution .hero-section__deco--pentagon {
    right: 80px;
  }

  .hero-section--solution .hero-section__deco--icon {
    right: 200px;
    top: 214px;
  }
}

/* Tablet Large */
@media screen and (max-width: 1440px) {
  .hero-section--solution {
    padding: 80px 80px;
  }

  .hero-section--solution .hero-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-section--solution .hero-section__logo {
    width: 500px;
  }

  .hero-section--solution .hero-section__title {
    font-size: 36px;
  }

  .hero-section--solution .hero-section__deco--pentagon {
    right: 40px;
    width: 300px;
    height: 290px;
  }

  .hero-section--solution .hero-section__deco--icon {
    right: 140px;
    top: 258px;
    width: 100px;
    height: 100px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .hero-section--solution {
    padding: 60px 40px;
  }

  .hero-section--solution .hero-section__article {
    gap: 40px;
    padding-top: 40px;
  }

  .hero-section--solution .hero-section__logo {
    width: 450px;
  }

  .hero-section--solution .hero-section__title {
    font-size: 32px;
  }

  .hero-section--solution .hero-section__feature-text {
    font-size: 16px;
  }

  .hero-section--solution .hero-section__cta {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-section--solution .hero-section__btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-section--solution .hero-section__deco--pentagon {
    right: 20px;
    width: 260px;
    height: 251px;
    opacity: 0.6;
  }

  .hero-section--solution .hero-section__deco--icon {
    right: 110px;
    top: 264px;
    width: 80px;
    height: 80px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .hero-section--solution {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .hero-section--solution .hero-section__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hero-section--solution .hero-section__article {
    gap: calc(60 / 750 * 100vw);
    padding-top: calc(120 / 750 * 100vw);
  }

  /* Background for Mobile */
  .hero-section--solution .hero-section__deco--pentagon {
    right: calc(-89 / 750 * 100vw);
    top: calc(70 / 750 * 100vw);
    transform: none;
    width: calc(375 / 750 * 100vw);
    height: calc(359 / 750 * 100vw);
    opacity: 0.6;
  }

  .hero-section--solution .hero-section__deco--icon {
    right: calc(40 / 750 * 100vw);
    top: calc(34 / 750 * 100vw);
    transform: none;
    width: calc(112 / 750 * 100vw);
    height: calc(112 / 750 * 100vw);
    opacity: 0.6;
  }

  /* Header */
  .hero-section--solution .hero-section__header {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section--solution .hero-section__logo {
    width: 100%;
    max-width: calc(584 / 750 * 100vw);
  }

  .hero-section--solution .hero-section__title {
    font-size: calc(44 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  /* Feature List */
  .hero-section--solution .hero-section__features {
    gap: calc(8 / 750 * 100vw);
  }

  .hero-section--solution .hero-section__feature {
    align-items: flex-start;
  }

  .hero-section--solution .hero-section__feature-icon {
    width: calc(32 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
    margin-top: calc(4 / 750 * 100vw);
  }

  .hero-section--solution .hero-section__feature-text {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1.6;
    letter-spacing: calc(1.92 / 750 * 100vw);
  }

  /* CTA */
  .hero-section--solution .hero-section__cta {
    flex-direction: column;
    align-items: center;
    gap: calc(40 / 750 * 100vw);
    width: 100%;
  }

  .hero-section--solution .hero-section__btn {
    width: 100%;
    max-width: calc(640 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(40 / 750 * 100vw) calc(36 / 750 * 100vw);
    border-radius: calc(157.5 / 750 * 100vw);
  }

  .hero-section--solution .hero-section__btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: calc(32 / 750 * 100vw);
    line-height: 1.3;
    letter-spacing: calc(1.92 / 750 * 100vw);
  }

  .hero-section--solution .hero-section__btn-icon {
    right: calc(52 / 750 * 100vw);
    width: calc(32 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }
}

/* ==========================================================================
   Solution About Section - Galapagos AI ソリューション
   ========================================================================== */

/* Variables */
:root {
  --solution-about-primary: #008a83;
  --solution-about-body: #111111;
  --solution-about-white: #ffffff;
  --solution-about-radius-m: 24px;
}

/* Section Container */
.solution-about {
  position: relative;
  background-color: var(--solution-about-white);
  padding: 80px 320px 100px;
}

/* Inner Container */
.solution-about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Article */
.solution-about__article {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Heading */
.solution-about__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.solution-about__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.44px;
  color: var(--solution-about-body);
  margin: 0;
}

.solution-about__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.72px;
  color: var(--solution-about-primary);
  margin: 0;
}

/* Content - 2 Column Layout */
.solution-about__content {
  display: flex;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Diagram */
.solution-about__diagram {
  flex-shrink: 0;
  width: 600px;
}

.solution-about__diagram img {
  width: 100%;
  height: auto;
  border-radius: var(--solution-about-radius-m);
}

/* Description */
.solution-about__description {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--solution-about-body);
}

.solution-about__description p {
  margin: 0 0 1.8em;
}

.solution-about__description p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .solution-about {
    padding: 80px 160px 100px;
  }
}

/* Desktop */
@media screen and (max-width: 1440px) {
  .solution-about {
    padding: 80px 80px 100px;
  }

  .solution-about__content {
    gap: 40px;
  }

  .solution-about__diagram {
    width: 500px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .solution-about {
    padding: 80px 40px;
  }

  .solution-about__inner {
    padding: 0;
  }

  .solution-about__content {
    flex-direction: column;
    gap: 40px;
  }

  .solution-about__diagram {
    width: 100%;
    max-width: 600px;
  }

  .solution-about__description br {
    display: none;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .solution-about {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .solution-about__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .solution-about__heading {
    gap: calc(24 / 750 * 100vw);
    align-items: flex-start;
    text-align: left;
  }

  .solution-about__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: calc(1.76 / 750 * 100vw);
    text-align: center;
  }

  .solution-about__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: calc(0.96 / 750 * 100vw);
    width: 100%;
    text-align: center;
  }

  .solution-about__content {
    gap: calc(40 / 750 * 100vw);
  }

  .solution-about__diagram {
    max-width: 100%;
  }

  .solution-about__description {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .solution-about__description p {
    margin-bottom: 1.5em;
  }
}

/* ==========================================================================
   Solution Platform Section - Galapagos AI プラットフォーム
   ========================================================================== */

/* Variables */
:root {
  --solution-platform-white: #ffffff;
  --solution-platform-primary-50: #edfffe;
  --solution-platform-primary-100: #e0f2f1;
  --solution-platform-body: #111111;
  --solution-platform-radius-s: 16px;
  --solution-platform-radius-m: 24px;
  --solution-platform-radius-l: 40px;
}

/* Section Container */
.solution-platform {
  position: relative;
  padding: 100px 320px;
  overflow: hidden;
}

/* Background */
.solution-platform__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.solution-platform__bg picture,
.solution-platform__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* opacity: 0.7; */
  mix-blend-mode: soft-light;
}

/* Inner Container */
.solution-platform__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Article */
.solution-platform__article {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

/* Heading */
.solution-platform__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.solution-platform__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.44px;
  color: var(--solution-platform-white);
  margin: 0;
}

.solution-platform__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.72px;
  color: var(--solution-platform-primary-50);
  margin: 0;
}

/* Description */
.solution-platform__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--solution-platform-primary-50);
}

.solution-platform__description p {
  margin: 0;
}

/* Diagram Section */
.solution-platform__diagram-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 60px;
  border-radius: var(--solution-platform-radius-l);
  /* background: rgba(0, 0, 0, 0.3); */
  background: linear-gradient(137deg, #24353B 24.17%, #23343A 30.92%, #223338 37.67%, #213237 44.41%, #1F3134 51.16%, #1E3032 57.91%, #1D2F30 64.66%, #1C2E2F 71.41%, #1B2D2E 78.15%, #1A2C2D 91.65%);
}

.solution-platform__diagram-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.solution-platform__diagram-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--solution-platform-white);
  margin: 0;
}

.solution-platform__diagram-title-en {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.56px;
}

.solution-platform__diagram-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--solution-platform-primary-50);
  margin: 0;
}

/* Diagram Image */
.solution-platform__diagram {
  width: 100%;
  max-width: 1096px;
}

.solution-platform__diagram img {
  width: 100%;
  height: auto;
}

/* Features Title */
.solution-platform__features-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--solution-platform-white);
  margin: 0;
  text-align: center;
}

/* Features Grid */
.solution-platform__features {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* Feature Card */
.solution-platform__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 40px 60px;
  border-radius: var(--solution-platform-radius-s);
  /* background: rgba(0, 0, 0, 0.3); */
  background: linear-gradient(137deg, #24353B 24.17%, #23343A 30.92%, #223338 37.67%, #213237 44.41%, #1F3134 51.16%, #1E3032 57.91%, #1D2F30 64.66%, #1C2E2F 71.41%, #1B2D2E 78.15%, #1A2C2D 91.65%);
}

.solution-platform__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
}

.solution-platform__feature-icon img {
  max-width: 100%;
  height: auto;
}

.solution-platform__feature-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: var(--solution-platform-white);
  margin: 0;
  text-align: center;
}

.solution-platform__feature-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.12px;
  color: var(--solution-platform-primary-50);
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .solution-platform {
    padding: 100px 160px;
  }
}

/* Desktop */
@media screen and (max-width: 1440px) {
  .solution-platform {
    padding: 100px 80px;
  }

  .solution-platform__feature {
    padding: 40px 40px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .solution-platform {
    padding: 100px 40px;
  }

  .solution-platform__inner {
    padding: 0;
  }

  .solution-platform__diagram-section {
    padding: 40px;
  }

  .solution-platform__features {
    flex-direction: column;
  }

  .solution-platform__feature {
    padding: 40px;
  }

  .solution-platform__description br {
    display: none;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .solution-platform {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .solution-platform__inner {
    padding: 0 calc(20 / 750 * 100vw);
    gap: calc(80 / 750 * 100vw);
  }

  .solution-platform__article {
    align-items: flex-start;
    text-align: left;
  }

  .solution-platform__heading {
    gap: calc(24 / 750 * 100vw);
    align-items: center;
    width: 100%;
  }

  .solution-platform__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: calc(1.76 / 750 * 100vw);
    text-align: center;
  }

  .solution-platform__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: calc(0.96 / 750 * 100vw);
    text-align: center;
  }

  .solution-platform__description {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .solution-platform__diagram-section {
    padding: calc(60 / 750 * 100vw) calc(40 / 750 * 100vw);
    border-radius: calc(24 / 750 * 100vw);
    gap: calc(32 / 750 * 100vw);
  }

  .solution-platform__diagram-header {
    gap: calc(32 / 750 * 100vw);
  }

  .solution-platform__diagram-title {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: calc(2.16 / 750 * 100vw);
  }

  .solution-platform__diagram-lead {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .solution-platform__features-title {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: calc(2.16 / 750 * 100vw);
    text-align: center;
  }

  .solution-platform__features {
    gap: calc(40 / 750 * 100vw);
  }

  .solution-platform__feature {
    padding: calc(60 / 750 * 100vw);
    border-radius: calc(24 / 750 * 100vw);
    gap: calc(32 / 750 * 100vw);
  }

  .solution-platform__feature-icon {
    height: calc(80 / 750 * 100vw);
  }

  .solution-platform__feature-title {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: calc(2.16 / 750 * 100vw);
  }

  .solution-platform__feature-text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }
}

/* ==========================================================================
   Solution Menu Section - AI ソリューション群
   ========================================================================== */

/* Variables */
:root {
  --solution-menu-primary: #008a83;
  --solution-menu-body: #111111;
  --solution-menu-white: #ffffff;
  --solution-menu-bg: #e8e8e8;
  --solution-menu-radius-m: 24px;
}

/* Section Container */
.solution-menu {
  position: relative;
  background-color: var(--solution-menu-bg);
  padding: 80px 320px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Article - Header */
.solution-menu__article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* Heading */
.solution-menu__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.solution-menu__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.44px;
  color: var(--solution-menu-body);
  margin: 0;
}

.solution-menu__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.72px;
  color: var(--solution-menu-primary);
  margin: 0;
}

.solution-menu__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--solution-menu-body);
  margin: 0;
}

/* Cards Container */
.solution-menu__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

/* Card Row */
.solution-menu__row {
  display: flex;
  gap: 24px;
}

.solution-menu__row--3 {
  justify-content: space-between;
}

.solution-menu__row--2 {
  justify-content: center;
}

/* Card */
.solution-menu__card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px 16px 40px;
  border-radius: var(--solution-menu-radius-m);
  background-color: var(--solution-menu-white);
  box-sizing: border-box;
}

.solution-menu__row--3 .solution-menu__card {
  flex: 1;
  max-width: calc((100% - 48px) / 3);
}

.solution-menu__row--2 .solution-menu__card {
  width: calc((100% - 24px) / 3);
  max-width: 394.67px;
}

/* Card Image */
.solution-menu__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 362.67 / 224.25;
  border-radius: var(--solution-menu-radius-m);
  overflow: hidden;
}

.solution-menu__card-image > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-menu__card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60%;
  max-height: 50%;
  object-fit: contain;
}

/* Card Content */
.solution-menu__card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}

/* Card Title */
.solution-menu__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 1.44px;
  color: var(--solution-menu-body);
  margin: 0;
}

/* Card Text */
.solution-menu__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--solution-menu-body);
  margin: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .solution-menu {
    padding: 80px 160px 100px;
  }
}

/* Desktop */
@media screen and (max-width: 1440px) {
  .solution-menu {
    padding: 80px 80px 100px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .solution-menu {
    padding: 80px 40px 100px;
  }

  .solution-menu__row {
    flex-wrap: wrap;
  }

  .solution-menu__row--3 .solution-menu__card {
    flex: 1 1 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

  .solution-menu__row--3 .solution-menu__card:nth-child(3) {
    flex: 1 1 100%;
    max-width: 50%;
    margin: 0 auto;
  }

  .solution-menu__row--2 .solution-menu__card {
    flex: 1 1 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    width: auto;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .solution-menu {
    padding: calc(80 / 750 * 100vw) calc(20 / 750 * 100vw) calc(100 / 750 * 100vw);
    gap: calc(60 / 750 * 100vw);
  }

  .solution-menu__article {
    gap: calc(40 / 750 * 100vw);
  }

  .solution-menu__heading {
    gap: calc(24 / 750 * 100vw);
  }

  .solution-menu__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  .solution-menu__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: calc(0.96 / 750 * 100vw);
  }

  .solution-menu__lead {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .solution-menu__cards {
    gap: calc(60 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }

  .solution-menu__row {
    flex-direction: column;
    gap: calc(60 / 750 * 100vw);
  }

  .solution-menu__row--3 .solution-menu__card,
  .solution-menu__row--3 .solution-menu__card:nth-child(3),
  .solution-menu__row--2 .solution-menu__card {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .solution-menu__card {
    padding: calc(20 / 750 * 100vw) calc(20 / 750 * 100vw) calc(60 / 750 * 100vw);
    gap: calc(40 / 750 * 100vw);
  }

  .solution-menu__card-image {
    aspect-ratio: 630 / 256;
  }

  .solution-menu__card-content {
    gap: calc(24 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }

  .solution-menu__card-title {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: calc(1.44 / 750 * 100vw);
    line-height: 1.4;
  }

  .solution-menu__card-text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }
}

/* ==========================================================================
   Talent Hero - Independent Styles (30-talent-hero)
   Note: This file is self-contained and does NOT depend on 10-top-hero
   ========================================================================== */

/* Variables */
:root {
  --hero-primary: #008a83;
  --hero-text: #111111;
  --hero-white: #ffffff;
  --hero-radius-s: 16px;
  --hero-radius-btn: 80px;
}

/* ==========================================================================
   Section Container
   ========================================================================== */
.hero-section--talent {
  position: relative;
  background: linear-gradient(299deg, #F8FAFA 50%, #E8F4F4 85.96%);
  padding: 80px 320px;
  overflow: hidden;
}

/* ==========================================================================
   Background Decorations
   ========================================================================== */
.hero-section--talent .hero-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-section--talent .hero-section__deco {
  position: absolute;
}

/* Pentagon Decoration */
.hero-section--talent .hero-section__deco--pentagon {
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  width: 351px;
  height: 339px;
}

.hero-section--talent .hero-section__deco--pentagon img {
  width: 100%;
  height: 100%;
}

/* AI Icon Decoration */
.hero-section--talent .hero-section__deco--icon {
  position: absolute;
  right: 140px;
  top: 320px;
  transform: translateY(calc(-50% - 60px));
  width: 112px;
  height: 112px;
}

.hero-section--talent .hero-section__deco--icon img {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Inner Container
   ========================================================================== */
.hero-section--talent .hero-section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
}

/* ==========================================================================
   Article
   ========================================================================== */
.hero-section--talent .hero-section__article {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 60px;
}

/* ==========================================================================
   Header (Logo + Title)
   ========================================================================== */
.hero-section--talent .hero-section__header {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-section--talent .hero-section__logo {
  flex-shrink: 0;
  width: 628px;
}

.hero-section--talent .hero-section__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Title
   ========================================================================== */
.hero-section--talent .hero-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.3;
  letter-spacing: 1.76px;
  color: var(--hero-text);
  margin: 0;
}

/* ==========================================================================
   Description Block
   ========================================================================== */
.hero-section--talent .hero-section__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-section--talent .hero-section__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--hero-text);
  margin: 0;
}

.hero-section--talent .hero-section__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--hero-text);
  margin: 0;
}

/* ==========================================================================
   CTA Buttons
   ========================================================================== */
.hero-section--talent .hero-section__cta {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.hero-section--talent .hero-section__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  padding: 18px 40px 20px;
  background-color: var(--hero-primary);
  border-radius: var(--hero-radius-btn);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-section--talent .hero-section__btn:hover {
  opacity: 0.8;
}

.hero-section--talent .hero-section__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  color: var(--hero-white);
}

.hero-section--talent .hero-section__btn-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.hero-section--talent .hero-section__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .hero-section--talent {
    padding: 80px 200px;
  }

  .hero-section--talent .hero-section__deco--pentagon {
    right: 80px;
  }

  .hero-section--talent .hero-section__deco--icon {
    right: 40px;
    top: 320px;
  }
}

/* Tablet Large */
@media screen and (max-width: 1440px) {
  .hero-section--talent {
    padding: 80px 80px;
  }

  .hero-section--talent .hero-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-section--talent .hero-section__logo {
    width: 500px;
  }

  .hero-section--talent .hero-section__title {
    font-size: 36px;
  }

  .hero-section--talent .hero-section__catchphrase {
    font-size: 24px;
  }

  .hero-section--talent .hero-section__deco--pentagon {
    right: 40px;
    width: 300px;
    height: 290px;
  }

  .hero-section--talent .hero-section__deco--icon {
    right: 8px;
    top: 346px;
    width: 100px;
    height: 100px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .hero-section--talent {
    padding: 60px 40px;
  }

  .hero-section--talent .hero-section__article {
    gap: 40px;
    padding-top: 40px;
  }

  .hero-section--talent .hero-section__logo {
    width: 450px;
  }

  .hero-section--talent .hero-section__title {
    font-size: 32px;
  }

  .hero-section--talent .hero-section__catchphrase {
    font-size: 20px;
  }

  .hero-section--talent .hero-section__text {
    font-size: 14px;
  }

  .hero-section--talent .hero-section__cta {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-section--talent .hero-section__btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-section--talent .hero-section__deco--pentagon {
    right: 20px;
    width: 260px;
    height: 251px;
    opacity: 0.6;
  }

  .hero-section--talent .hero-section__deco--icon {
    right: 0;
    top: 346px;
    width: 80px;
    height: 80px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .hero-section--talent {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .hero-section--talent .hero-section__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hero-section--talent .hero-section__article {
    gap: calc(60 / 750 * 100vw);
    padding-top: calc(60 / 750 * 100vw);
  }

  /* Background for Mobile */
  .hero-section--talent .hero-section__deco--pentagon {
    right: calc(-89 / 750 * 100vw);
    top: calc(70 / 750 * 100vw);
    transform: none;
    width: calc(375 / 750 * 100vw);
    height: calc(359 / 750 * 100vw);
    opacity: 0.6;
  }

  .hero-section--talent .hero-section__deco--icon {
    right: calc(40 / 750 * 100vw);
    top: calc(34 / 750 * 100vw);
    transform: none;
    width: calc(116 / 750 * 100vw);
    height: calc(116 / 750 * 100vw);
    opacity: 0.6;
  }

  /* Header */
  .hero-section--talent .hero-section__header {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section--talent .hero-section__logo {
    width: 100%;
    max-width: calc(584 / 750 * 100vw);
  }

  .hero-section--talent .hero-section__title {
    font-size: calc(44 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  /* Description */
  .hero-section--talent .hero-section__description {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section--talent .hero-section__catchphrase {
    font-size: calc(36 / 750 * 100vw);
    line-height: 1.6;
    letter-spacing: calc(2.16 / 750 * 100vw);
  }

  .hero-section--talent .hero-section__text {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.8;
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .hero-section--talent .hero-section__text br {
    display: none;
  }

  /* CTA */
  .hero-section--talent .hero-section__cta {
    flex-direction: column;
    align-items: center;
    gap: calc(40 / 750 * 100vw);
    width: 100%;
  }

  .hero-section--talent .hero-section__btn {
    width: 100%;
    max-width: calc(640 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(40 / 750 * 100vw) calc(36 / 750 * 100vw);
    border-radius: calc(157.5 / 750 * 100vw);
  }

  .hero-section--talent .hero-section__btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: calc(32 / 750 * 100vw);
    line-height: 1.3;
    letter-spacing: calc(1.92 / 750 * 100vw);
  }

  .hero-section--talent .hero-section__btn-icon {
    right: calc(52 / 750 * 100vw);
    width: calc(32 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }
}

/* ==========================================================================
   Talent About Section
   ========================================================================== */

.talent-about {
  background-color: #fff;
  padding: 80px 0 100px;
  background-image: url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-talent-about.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.talent-about__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.talent-about__inner {
  padding: 0 32px;
}

.talent-about__article {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.talent-about__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.talent-about__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #111;
  margin: 0;
}

.talent-about__title-break {
  display: inline;
}

.talent-about__subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #008a83;
  margin: 0;
}

/* Content */
.talent-about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.talent-about__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0;
}

.talent-about__text-break {
  display: inline;
}

.talent-about__text-break::after {
  content: '\A';
  white-space: pre;
}

.talent-about__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0;
}

/* Image */
.talent-about__image {
  position: absolute;
  right: 32px;
  bottom: 0;
  width: 476px;
  height: 571px;
}

.talent-about__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.talent-about__image {
  display: none;
}

/* ==========================================================================
   Mobile Styles (max-width: 699px)
   ========================================================================== */

@media screen and (max-width: 699px) {
  .talent-about {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
    padding-bottom: 0;
    background: none;
  }

  .talent-about__container {
    padding: 0;
  }

  .talent-about__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .talent-about__article {
    align-items: center;
  }

  /* Header */
  .talent-about__header {
    gap: calc(24 / 750 * 100vw);
  }

  .talent-about__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: 0.04em;
  }

  .talent-about__title-break {
    display: block;
  }

  .talent-about__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: 0.03em;
  }

  /* Content */
  .talent-about__content {
    max-width: 100%;
    gap: 0;
  }

  .talent-about__text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: 0.08em;
  }

  .talent-about__text-break {
    display: none;
  }

  .talent-about__text + .talent-about__text {
    margin-top: 1.8em;
  }

  .talent-about__note {
    display: none;
  }

  /* Image */
  .talent-about__image {
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
  }

  .talent-about__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}

/* ==========================================================================
   Talent Menu Section - 様々な領域の即戦力AI人材を短期からレンタル可能
   ========================================================================== */

/* Variables */
:root {
  --talent-menu-primary: #008a83;
  --talent-menu-primary-light: #edfffe;
  --talent-menu-body: #111111;
  --talent-menu-white: #ffffff;
  --talent-menu-radius-m: 24px;
}

/* Section Container */
.talent-menu {
  position: relative;
  background-color: var(--talent-menu-body);
  background-image: url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-talent-menu.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  padding: 100px 160px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Article - Header */
.talent-menu__article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Heading */
.talent-menu__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.talent-menu__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.44px;
  color: var(--talent-menu-white);
  margin: 0;
}

.talent-menu__title-break {
  display: inline;
}

.talent-menu__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.72px;
  color: var(--talent-menu-primary-light);
  margin: 0;
}

/* Cards Container */
.talent-menu__cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

/* Card */
.talent-menu__card {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 60px;
  border-radius: var(--talent-menu-radius-m);
  background: linear-gradient(137deg, #24353B 24.17%, #23343A 30.92%, #223338 37.67%, #213237 44.41%, #1F3134 51.16%, #1E3032 57.91%, #1D2F30 64.66%, #1C2E2F 71.41%, #1B2D2E 78.15%, #1A2C2D 91.65%);
}

.talent-menu__card--reverse {
  flex-direction: row-reverse;
}

/* Card Image */
.talent-menu__card-image {
  flex-shrink: 0;
  width: 516px;
  height: auto;
}

.talent-menu__card-img {
  width: 100%;
  height: auto;
  border-radius: var(--talent-menu-radius-m);
  object-fit: cover;
}

/* Card Content */
.talent-menu__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}

/* Card Header */
.talent-menu__card-header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--talent-menu-primary);
}

.talent-menu__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--talent-menu-white);
  margin: 0;
}

.talent-menu__card-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--talent-menu-white);
  margin: 0;
}

.talent-menu__card-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: var(--talent-menu-primary-light);
  margin: 0;
}

.talent-menu__subtitle-break {
  display: inline;
}

.talent-menu__card-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
}

/* Card Body */
.talent-menu__card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.talent-menu__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--talent-menu-primary-light);
  margin: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .talent-menu {
    padding: 100px 160px;
  }
}

/* Desktop */
@media screen and (max-width: 1440px) {
  .talent-menu {
    padding: 100px 80px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .talent-menu {
    padding: 80px 40px;
    gap: 40px;
  }

  .talent-menu__card {
    flex-direction: column;
    padding: 40px;
    gap: 40px;
  }

  .talent-menu__card--reverse {
    flex-direction: column;
  }

  .talent-menu__card-image {
    width: 100%;
    max-width: 590px;
  }

  .talent-menu__card-content {
    padding: 0;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .talent-menu {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
    gap: calc(60 / 750 * 100vw);
  }

  .talent-menu__heading {
    gap: calc(24 / 750 * 100vw);
  }

  .talent-menu__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  .talent-menu__title-break {
    display: block;
  }

  .talent-menu__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: calc(0.96 / 750 * 100vw);
  }

  .talent-menu__cards {
    gap: calc(80 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }

  .talent-menu__card {
    flex-direction: column;
    padding: calc(40 / 750 * 100vw) calc(40 / 750 * 100vw) calc(60 / 750 * 100vw);
    gap: calc(40 / 750 * 100vw);
  }

  .talent-menu__card--reverse {
    flex-direction: column;
  }

  .talent-menu__card-image {
    width: 100%;
    max-width: 100%;
  }

  .talent-menu__card-content {
    gap: calc(40 / 750 * 100vw);
    padding: 0 calc(16 / 750 * 100vw);
  }

  .talent-menu__card-header {
    gap: calc(16 / 750 * 100vw);
    padding-bottom: calc(40 / 750 * 100vw);
  }

  .talent-menu__card-title {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: calc(2.16 / 750 * 100vw);
  }

  .talent-menu__card-note {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .talent-menu__card-subtitle {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: calc(1.68 / 750 * 100vw);
  }

  .talent-menu__subtitle-break {
    display: block;
  }

  .talent-menu__card-icon {
    width: calc(50 / 750 * 100vw);
    height: calc(50 / 750 * 100vw);
  }

  .talent-menu__card-text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }
}

/* ==========================================================================
   HRD Hero - Independent Styles (40-hrd-hero)
   Note: This file is self-contained and does NOT depend on 10-top-hero
   ========================================================================== */

/* Variables */
:root {
  --hero-primary: #008a83;
  --hero-text: #111111;
  --hero-white: #ffffff;
  --hero-radius-s: 16px;
  --hero-radius-btn: 80px;
}

/* ==========================================================================
   Section Container
   ========================================================================== */
.hero-section--hrd {
  position: relative;
  background: linear-gradient(299deg, #F8FAFA 50%, #E8F4F4 85.96%);
  padding: 80px 320px;
  overflow: hidden;
}

/* ==========================================================================
   Background Decorations
   ========================================================================== */
.hero-section--hrd .hero-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-section--hrd .hero-section__deco {
  position: absolute;
}

/* Pentagon Decoration */
.hero-section--hrd .hero-section__deco--pentagon {
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  width: 351px;
  height: 339px;
}

.hero-section--hrd .hero-section__deco--pentagon img {
  width: 100%;
  height: 100%;
}

/* AI Icon Decoration */
.hero-section--hrd .hero-section__deco--icon {
  position: absolute;
  right: 200px;
  top: 526px;
  transform: translateY(calc(-50% - 60px));
  width: 112px;
  height: 112px;
}

.hero-section--hrd .hero-section__deco--icon img {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Inner Container
   ========================================================================== */
.hero-section--hrd .hero-section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
}

/* ==========================================================================
   Article
   ========================================================================== */
.hero-section--hrd .hero-section__article {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 60px;
}

/* ==========================================================================
   Header (Logo + Title)
   ========================================================================== */
.hero-section--hrd .hero-section__header {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-section--hrd .hero-section__logo {
  flex-shrink: 0;
  width: 628px;
}

.hero-section--hrd .hero-section__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Title
   ========================================================================== */
.hero-section--hrd .hero-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.3;
  letter-spacing: 1.76px;
  color: var(--hero-text);
  margin: 0;
}

/* ==========================================================================
   Description Block
   ========================================================================== */
.hero-section--hrd .hero-section__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-section--hrd .hero-section__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--hero-text);
  margin: 0;
}

.hero-section--hrd .hero-section__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--hero-text);
  margin: 0;
}

/* ==========================================================================
   CTA Buttons
   ========================================================================== */
.hero-section--hrd .hero-section__cta {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.hero-section--hrd .hero-section__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  padding: 18px 40px 20px;
  background-color: var(--hero-primary);
  border-radius: var(--hero-radius-btn);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-section--hrd .hero-section__btn:hover {
  opacity: 0.8;
}

.hero-section--hrd .hero-section__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  color: var(--hero-white);
}

.hero-section--hrd .hero-section__btn-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.hero-section--hrd .hero-section__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .hero-section--hrd {
    padding: 80px 200px;
  }

  .hero-section--hrd .hero-section__deco--pentagon {
    right: 80px;
  }

  .hero-section--hrd .hero-section__deco--icon {
    right: 100px;
    top: 526px;
  }
}

/* Tablet Large */
@media screen and (max-width: 1440px) {
  .hero-section--hrd {
    padding: 80px 80px;
  }

  .hero-section--hrd .hero-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-section--hrd .hero-section__logo {
    width: 500px;
  }

  .hero-section--hrd .hero-section__title {
    font-size: 36px;
  }

  .hero-section--hrd .hero-section__catchphrase {
    font-size: 24px;
  }

  .hero-section--hrd .hero-section__deco--pentagon {
    right: 40px;
    width: 300px;
    height: 290px;
  }

  .hero-section--hrd .hero-section__deco--icon {
    right: 50px;
    top: 526px;
    width: 100px;
    height: 100px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .hero-section--hrd {
    padding: 60px 40px;
  }

  .hero-section--hrd .hero-section__article {
    gap: 40px;
    padding-top: 40px;
  }

  .hero-section--hrd .hero-section__logo {
    width: 450px;
  }

  .hero-section--hrd .hero-section__title {
    font-size: 32px;
  }

  .hero-section--hrd .hero-section__catchphrase {
    font-size: 20px;
  }

  .hero-section--hrd .hero-section__text {
    font-size: 14px;
  }

  .hero-section--hrd .hero-section__cta {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-section--hrd .hero-section__btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-section--hrd .hero-section__deco--pentagon {
    right: 20px;
    width: 260px;
    height: 251px;
    opacity: 0.6;
  }

  .hero-section--hrd .hero-section__deco--icon {
    right: 30px;
    top: 490px;
    width: 80px;
    height: 80px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .hero-section--hrd {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .hero-section--hrd .hero-section__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hero-section--hrd .hero-section__article {
    gap: calc(60 / 750 * 100vw);
    padding-top: calc(60 / 750 * 100vw);
  }

  /* Background for Mobile */
  .hero-section--hrd .hero-section__deco--pentagon {
    right: calc(-89 / 750 * 100vw);
    top: calc(70 / 750 * 100vw);
    transform: none;
    width: calc(375 / 750 * 100vw);
    height: calc(359 / 750 * 100vw);
    opacity: 0.6;
  }

  .hero-section--hrd .hero-section__deco--icon {
    right: calc(40 / 750 * 100vw);
    top: calc(34 / 750 * 100vw);
    transform: none;
    width: calc(116 / 750 * 100vw);
    height: calc(116 / 750 * 100vw);
    opacity: 0.6;
  }

  /* Header */
  .hero-section--hrd .hero-section__header {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section--hrd .hero-section__logo {
    width: 100%;
    max-width: calc(584 / 750 * 100vw);
  }

  .hero-section--hrd .hero-section__title {
    font-size: calc(44 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  /* Description */
  .hero-section--hrd .hero-section__description {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section--hrd .hero-section__catchphrase {
    font-size: calc(36 / 750 * 100vw);
    line-height: 1.6;
    letter-spacing: calc(2.16 / 750 * 100vw);
  }

  .hero-section--hrd .hero-section__text {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.8;
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .hero-section--hrd .hero-section__text br {
    display: none;
  }

  /* CTA */
  .hero-section--hrd .hero-section__cta {
    flex-direction: column;
    align-items: center;
    gap: calc(40 / 750 * 100vw);
    width: 100%;
  }

  .hero-section--hrd .hero-section__btn {
    width: 100%;
    max-width: calc(640 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(40 / 750 * 100vw) calc(36 / 750 * 100vw);
    border-radius: calc(157.5 / 750 * 100vw);
  }

  .hero-section--hrd .hero-section__btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: calc(32 / 750 * 100vw);
    line-height: 1.3;
    letter-spacing: calc(1.92 / 750 * 100vw);
  }

  .hero-section--hrd .hero-section__btn-icon {
    right: calc(52 / 750 * 100vw);
    width: calc(32 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }
}

/* ==========================================================================
   HRD Problem Section
   ========================================================================== */

.hrd-problem {
  background-color: #fff;
  padding: 80px 0 100px;
  background-image: radial-gradient(circle at center, #e1e4e5 0%, #d1d5db 100%);
  position: relative;
  overflow: hidden;
  height: 728px;
}

.hrd-problem__container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  /* padding: 0 320px; */
  padding: 0 80px;
}

.hrd-problem__inner {
  padding: 0 32px;
}

.hrd-problem__article {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.hrd-problem__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.hrd-problem__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #111;
  margin: 0;
}

.hrd-problem__title-break {
  display: inline;
}

.hrd-problem__subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #474645;
  margin: 0;
}

/* Content */
.hrd-problem__content {
  position: relative;
  margin-top: 106px;
  display: flex;
  justify-content: center;
  min-height: 500px;
}

/* Balloons Container */
.hrd-problem__balloons {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  /* max-width: 1200px; */
  z-index: 2;
}

.hrd-problem__balloon-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hrd-problem__balloon-row--top {
  gap: 290px;
}

.hrd-problem__balloon-row--bottom {
  gap: 428px;
}

/* Balloon */
.hrd-problem__balloon {
  position: relative;
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 24px 40px;
  width: 395px;
  text-align: center;
}

.hrd-problem__balloon-icon {
  position: absolute;
  top: -12px;
  right: 22px;
  width: 27px;
  height: 53px;
}

.hrd-problem__balloon-icon img {
  width: 100%;
  height: 100%;
}

.hrd-problem__balloon-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  /* letter-spacing: 0.08em; */
  color: #000;
  margin: 0;
}

.hrd-problem__balloon-text strong {
  font-weight: 700;
  color: #111;
}

.hrd-problem__balloon-break {
  display: block;
}

/* Image */
.hrd-problem__image {
  position: absolute;
  left: 51%;
  bottom: -60%;
  transform: translateX(-50%);
  width: 939px;
  height: 939px;
  z-index: 3;
}

.hrd-problem__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   Desktop Styles (max-width: 1400px)
   ========================================================================== */
@media screen and (max-width: 1400px) {
  .hrd-problem__container {
    padding: 0 40px;
  }
}

/* ==========================================================================
   Tablet Styles (max-width: 1280px)
   ========================================================================== */

@media screen and (max-width: 1280px) {
  .hrd-problem__container {
    padding: 0 40px;
  }

  .hrd-problem__balloon-row--top {
    gap: 140px;
  }

  .hrd-problem__balloon-row--bottom {
    gap: 200px;
  }

  .hrd-problem__balloon {
    min-width: 320px;
  }

  .hrd-problem__image {
    width: 648px;
    height: 648px;
    bottom: -30%;
  }
}

@media screen and (max-width: 1080px) {
  .hrd-problem {
    padding: 100px 20px;
    height: 880px;
  }

  .hrd-problem__balloon-row--top {
    gap: 40px;
  }

  .hrd-problem__balloon-row--bottom {
    gap: 40px;
  }

  .hrd-problem__balloon {
    min-width: 300px;
  }

  .hrd-problem__image {
    bottom: -60%;
  }
}

/* ==========================================================================
   Mobile Styles (max-width: 699px)
   ========================================================================== */

@media screen and (max-width: 699px) {
  .hrd-problem {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
    height: calc(1160 / 750 * 100vw);
  }

  .hrd-problem__container {
    padding: 0;
  }

  .hrd-problem__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  /* Header */
  .hrd-problem__header {
    gap: calc(16 / 750 * 100vw);
  }

  .hrd-problem__title {
    /* font-size: 44px; */
    /* letter-spacing: 0.04em; */
    font-size: calc(40 / 750 * 100vw);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hrd-problem__title-break {
    display: block;
  }

  /* Content */
  .hrd-problem__content {
    flex-direction: column;
    align-items: center;
    margin-top: calc(60 / 750 * 100vw);
    min-height: auto;
    gap: 0;
  }

  /* Balloons */
  .hrd-problem__balloons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(24 / 750 * 100vw);
    max-width: 100%;
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hrd-problem__balloon-row {
    display: contents;
  }

  .hrd-problem__balloon {
    width: auto;
    min-width: auto;
    padding: calc(40 / 750 * 100vw);
  }

  .hrd-problem__balloon-text {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .hrd-problem__balloon-break {
    display: inline;
  }

  /* Image */
  .hrd-problem__image {
    position: relative;
    left: auto;
    top: calc(-150 / 750 * 100vw);
    transform: none;
    width: 100%;
    max-width: calc(612 / 750 * 100vw);
    height: auto;
    margin-top: 0;
  }

  .hrd-problem__image img {
    width: 100%;
    height: auto;
  }
}

/* ==========================================================================
   HRD About Section - Galapagos AI 研修・人材育成
   ========================================================================== */

/* Variables */
:root {
  --hrd-about-primary: #008a83;
  --hrd-about-white: #ffffff;
  --hrd-about-light: #edfffe;
  --hrd-about-bg: #0a1f1e;
  --hrd-about-radius-s: 16px;
  --hrd-about-radius-m: 24px;
}

/* Section Container */
.hrd-about {
  background-color: var(--hrd-about-bg);
  background-image: url('images/bg-hrd-about.png');
  background-image: image-set(
    url('images/bg-hrd-about.png') 1x,
    url('images/bg-hrd-about@2x.png') 2x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 160px;
  position: relative;
}

/* Container */
.hrd-about__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1920px;
  margin: 0 auto;
}

/* Inner */
.hrd-about__inner {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}

/* Article */
.hrd-about__article {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Header */
.hrd-about__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hrd-about__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--hrd-about-white);
  margin: 0;
}

.hrd-about__title-en {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

.hrd-about__title-break {
  display: inline;
}

.hrd-about__subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--hrd-about-light);
  margin: 0;
}

/* Main Content Card */
.hrd-about__card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
  border-radius: var(--hrd-about-radius-m);
  background: linear-gradient(137deg, #24353B 24.17%, #23343A 30.92%, #223338 37.67%, #213237 44.41%, #1F3134 51.16%, #1E3032 57.91%, #1D2F30 64.66%, #1C2E2F 71.41%, #1B2D2E 78.15%, #1A2C2D 91.65%);
  width: 100%;
  max-width: 1484px;
}

.hrd-about__card-image {
  flex-shrink: 0;
  width: 552px;
  border-radius: var(--hrd-about-radius-m);
  overflow: hidden;
}

.hrd-about__card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--hrd-about-radius-m);
}

.hrd-about__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 16px;
}

.hrd-about__card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--hrd-about-white);
  margin: 0;
  padding-bottom: 32px;
  border-bottom: 3px solid var(--hrd-about-primary);
}

.hrd-about__card-title-break {
  display: block;
}

.hrd-about__card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--hrd-about-light);
}

.hrd-about__card-text p {
  margin: 0 0 1.8em;
  text-align: left;
}

.hrd-about__card-text p:last-child {
  margin-bottom: 0;
}

/* Strengths Section */
.hrd-about__strengths {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hrd-about__strengths-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--hrd-about-white);
  text-align: center;
  margin: 0;
}

/* Features Grid */
.hrd-about__features {
  display: flex;
  gap: 24px;
  width: 100%;
}

.hrd-about__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 60px;
  border-radius: var(--hrd-about-radius-s);
  background: linear-gradient(137deg, #24353B 24.17%, #23343A 30.92%, #223338 37.67%, #213237 44.41%, #1F3134 51.16%, #1E3032 57.91%, #1D2F30 64.66%, #1C2E2F 71.41%, #1B2D2E 78.15%, #1A2C2D 91.65%);
}

.hrd-about__feature-icon {
  width: 68px;
  height: 68px;
}

.hrd-about__feature-icon img {
  width: 100%;
  height: 100%;
}

.hrd-about__feature-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--hrd-about-white);
  text-align: center;
  margin: 0;
}

.hrd-about__feature-break {
  display: block;
}

/* Conclusion */
.hrd-about__conclusion {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--hrd-about-light);
  text-align: center;
}

.hrd-about__conclusion p {
  margin: 0;
}

.hrd-about__conclusion strong {
  font-weight: 700;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop (max-width: 1600px) */
@media screen and (max-width: 1600px) {
  .hrd-about {
    padding: 100px 160px;
  }
}

/* Desktop (max-width: 1440px) */
@media screen and (max-width: 1440px) {
  .hrd-about {
    padding: 100px 80px;
  }

  .hrd-about__card {
    padding: 40px;
  }

  .hrd-about__card-image {
    width: 450px;
  }

  .hrd-about__feature {
    padding: 32px 40px;
  }
}

/* Tablet (max-width: 1200px) */
@media screen and (max-width: 1200px) {
  .hrd-about {
    padding: 80px 40px;
  }

  .hrd-about__inner {
    padding: 0;
  }

  .hrd-about__card {
    flex-direction: column;
    padding: 40px;
  }

  .hrd-about__card-image {
    width: 100%;
    max-width: 600px;
  }

  .hrd-about__card-content {
    padding: 0;
    text-align: center;
  }

  .hrd-about__card-title {
    text-align: center;
  }

  .hrd-about__card-title-break {
    display: inline;
  }

  .hrd-about__features {
    flex-direction: column;
    gap: 24px;
  }

  .hrd-about__feature {
    flex-direction: row;
    padding: 32px 40px;
  }

  .hrd-about__feature-text {
    text-align: left;
  }

  .hrd-about__feature-break {
    display: inline;
  }
}

/* Mobile (max-width: 699px) */
@media screen and (max-width: 699px) {
  .hrd-about {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .hrd-about__container {
    gap: calc(130 / 750 * 100vw);
  }

  .hrd-about__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hrd-about__article {
    gap: calc(60 / 750 * 100vw);
  }

  /* Header */
  .hrd-about__header {
    gap: calc(24 / 750 * 100vw);
  }

  .hrd-about__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: 0.04em;
  }

  .hrd-about__title-break {
    display: block;
  }

  .hrd-about__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: 0.03em;
  }

  /* Card */
  .hrd-about__card {
    flex-direction: column;
    gap: calc(40 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw);
    padding-bottom: calc(60 / 750 * 100vw);
  }

  .hrd-about__card-image {
    width: 100%;
    max-width: 100%;
  }

  .hrd-about__card-content {
    gap: calc(40 / 750 * 100vw);
    padding: 0 calc(16 / 750 * 100vw);
  }

  .hrd-about__card-title {
    font-size: calc(36 / 750 * 100vw);
    padding-bottom: calc(40 / 750 * 100vw);
  }

  .hrd-about__card-title-break {
    display: inline;
  }

  .hrd-about__card-text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: 0.08em;
  }

  /* Strengths */
  .hrd-about__strengths {
    gap: calc(60 / 750 * 100vw);
  }

  .hrd-about__strengths-title {
    font-size: calc(36 / 750 * 100vw);
  }

  /* Features */
  .hrd-about__features {
    flex-direction: column;
    gap: calc(60 / 750 * 100vw);
  }

  .hrd-about__feature {
    flex-direction: column;
    gap: calc(32 / 750 * 100vw);
    padding: calc(60 / 750 * 100vw);
  }

  .hrd-about__feature-icon {
    width: calc(80 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
  }

  .hrd-about__feature-text {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.4;
    text-align: center;
  }

  .hrd-about__feature-break {
    display: block;
  }

  /* Conclusion */
  .hrd-about__conclusion {
    font-size: calc(26 / 750 * 100vw);
    text-align: left;
  }
}

/* ==========================================================================
   HRD Menu Section - 研修一覧
   ========================================================================== */

/* Variables */
:root {
  --hrd-menu-primary: #008a83;
  --hrd-menu-body: #111111;
  --hrd-menu-white: #ffffff;
  --hrd-menu-bg: #e8e8e8;
  --hrd-menu-radius-m: 24px;
}

/* Section Container */
.hrd-menu {
  position: relative;
  background-color: var(--hrd-menu-bg);
  padding: 80px 320px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Article - Header */
.hrd-menu__article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* Heading */
.hrd-menu__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.hrd-menu__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.44px;
  color: var(--hrd-menu-body);
  margin: 0;
}

.hrd-menu__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.72px;
  color: var(--hrd-menu-primary);
  margin: 0;
}

.hrd-menu__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--hrd-menu-body);
  margin: 0;
}

.hrd-menu__lead-break {
  display: inline;
}

/* Cards Container */
.hrd-menu__cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

/* Card */
.hrd-menu__card {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 60px;
  border-radius: var(--hrd-menu-radius-m);
  background-color: var(--hrd-menu-white);
}

.hrd-menu__card--reverse {
  flex-direction: row-reverse;
}

/* Card Image */
.hrd-menu__card-image {
  flex-shrink: 0;
  width: 516px;
  height: auto;
}

.hrd-menu__card-img {
  width: 100%;
  height: auto;
  border-radius: var(--hrd-menu-radius-m);
  object-fit: cover;
}

/* Card Content */
.hrd-menu__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}

/* Card Title */
.hrd-menu__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--hrd-menu-body);
  margin: 0;
}

/* Card Body */
.hrd-menu__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card Target */
.hrd-menu__card-target {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hrd-menu__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border: 1px solid var(--hrd-menu-primary);
  border-radius: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.12px;
  color: var(--hrd-menu-primary);
  white-space: nowrap;
}

.hrd-menu__card-tag-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--hrd-menu-body);
}

/* Card Subtitle */
.hrd-menu__card-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: var(--hrd-menu-body);
  margin: 0;
}

.hrd-menu__subtitle-break {
  display: inline;
}

/* Card Text */
.hrd-menu__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--hrd-menu-body);
  margin: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .hrd-menu {
    padding: 80px 160px 100px;
  }
}

/* Desktop */
@media screen and (max-width: 1440px) {
  .hrd-menu {
    padding: 80px 80px 100px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .hrd-menu {
    padding: 80px 40px 100px;
  }

  .hrd-menu__card {
    flex-direction: column;
    padding: 20px 20px 60px;
    gap: 40px;
  }

  .hrd-menu__card--reverse {
    flex-direction: column;
  }

  .hrd-menu__card-image {
    width: 100%;
    max-width: 630px;
  }

  .hrd-menu__card-content {
    padding: 0 20px;
    gap: 32px;
    align-items: center;
  }

  .hrd-menu__card-body {
    gap: 24px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .hrd-menu {
    padding: calc(80 / 750 * 100vw) calc(20 / 750 * 100vw) calc(100 / 750 * 100vw);
    gap: calc(60 / 750 * 100vw);
  }

  .hrd-menu__article {
    gap: calc(40 / 750 * 100vw);
  }

  .hrd-menu__heading {
    gap: calc(24 / 750 * 100vw);
  }

  .hrd-menu__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  .hrd-menu__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: calc(0.96 / 750 * 100vw);
  }

  .hrd-menu__lead {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .hrd-menu__lead-break {
    display: block;
  }

  .hrd-menu__cards {
    gap: calc(80 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hrd-menu__card {
    flex-direction: column;
    padding: calc(20 / 750 * 100vw) calc(20 / 750 * 100vw) calc(60 / 750 * 100vw);
    gap: calc(40 / 750 * 100vw);
  }

  .hrd-menu__card--reverse {
    flex-direction: column;
  }

  .hrd-menu__card-image {
    width: 100%;
    max-width: 100%;
  }

  .hrd-menu__card-content {
    gap: calc(32 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hrd-menu__card-title {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: calc(1.44 / 750 * 100vw);
    line-height: 1.4;
    text-align: center;
  }

  .hrd-menu__card-body {
    gap: calc(24 / 750 * 100vw);
  }

  .hrd-menu__card-tag {
    padding: calc(4 / 750 * 100vw) calc(16 / 750 * 100vw);
    border-radius: 999px;
    font-size: calc(24 / 750 * 100vw);
    letter-spacing: calc(1.92 / 750 * 100vw);
  }

  .hrd-menu__card-tag-text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  .hrd-menu__card-subtitle {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: calc(1.68 / 750 * 100vw);
  }

  .hrd-menu__subtitle-break {
    display: block;
  }

  .hrd-menu__card-text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: calc(2.08 / 750 * 100vw);
  }
}

/* ==========================================================================
   BPO Hero - Independent Styles (50-bpo-hero)
   Note: This file is self-contained and does NOT depend on 10-top-hero
   ========================================================================== */

/* Variables */
:root {
  --hero-primary: #008a83;
  --hero-text: #111111;
  --hero-white: #ffffff;
  --hero-radius-s: 16px;
  --hero-radius-btn: 80px;
}

/* ==========================================================================
   Section Container
   ========================================================================== */
.hero-section--bpo {
  position: relative;
  background: linear-gradient(299deg, #F8FAFA 50%, #E8F4F4 85.96%);
  padding: 80px 320px;
  overflow: hidden;
}

/* ==========================================================================
   Background Decorations
   ========================================================================== */
.hero-section--bpo .hero-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-section--bpo .hero-section__deco {
  position: absolute;
}

/* Pentagon Decoration */
.hero-section--bpo .hero-section__deco--pentagon {
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  width: 351px;
  height: 339px;
}

.hero-section--bpo .hero-section__deco--pentagon img {
  width: 100%;
  height: 100%;
}

/* AI BPO Icon Decoration */
.hero-section--bpo .hero-section__deco--icon {
  position: absolute;
  right: 400px;
  top: 534px;
  transform: translateY(calc(-50% - 60px));
  width: 112px;
  height: 112px;
}

.hero-section--bpo .hero-section__deco--icon img {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Inner Container
   ========================================================================== */
.hero-section--bpo .hero-section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
}

/* ==========================================================================
   Article
   ========================================================================== */
.hero-section--bpo .hero-section__article {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 60px;
}

/* ==========================================================================
   Header (Logo + Title)
   ========================================================================== */
.hero-section--bpo .hero-section__header {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-section--bpo .hero-section__logo {
  flex-shrink: 0;
  width: 628px;
}

.hero-section--bpo .hero-section__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Title
   ========================================================================== */
.hero-section--bpo .hero-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.3;
  letter-spacing: 1.76px;
  color: var(--hero-text);
  margin: 0;
}

/* ==========================================================================
   Description Block
   ========================================================================== */
.hero-section--bpo .hero-section__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-section--bpo .hero-section__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--hero-text);
  margin: 0;
}

.hero-section--bpo .hero-section__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--hero-text);
  margin: 0;
}

/* ==========================================================================
   CTA Buttons
   ========================================================================== */
.hero-section--bpo .hero-section__cta {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.hero-section--bpo .hero-section__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  padding: 18px 40px 20px;
  background-color: var(--hero-primary);
  border-radius: var(--hero-radius-btn);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-section--bpo .hero-section__btn:hover {
  opacity: 0.8;
}

.hero-section--bpo .hero-section__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  color: var(--hero-white);
}

.hero-section--bpo .hero-section__btn-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.hero-section--bpo .hero-section__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .hero-section--bpo {
    padding: 80px 200px;
  }

  .hero-section--bpo .hero-section__deco--pentagon {
    right: 80px;
  }

  .hero-section--bpo .hero-section__deco--icon {
    right: 300px;
    top: 534px;
  }
}

/* Tablet Large */
@media screen and (max-width: 1440px) {
  .hero-section--bpo {
    padding: 80px 80px;
  }

  .hero-section--bpo .hero-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-section--bpo .hero-section__logo {
    width: 500px;
  }

  .hero-section--bpo .hero-section__title {
    font-size: 36px;
  }

  .hero-section--bpo .hero-section__catchphrase {
    font-size: 24px;
  }

  .hero-section--bpo .hero-section__deco--pentagon {
    right: 40px;
    width: 300px;
    height: 290px;
  }

  .hero-section--bpo .hero-section__deco--icon {
    right: 230px;
    top: 530px;
    width: 100px;
    height: 100px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .hero-section--bpo {
    padding: 60px 40px;
  }

  .hero-section--bpo .hero-section__article {
    gap: 40px;
    padding-top: 40px;
  }

  .hero-section--bpo .hero-section__logo {
    width: 450px;
  }

  .hero-section--bpo .hero-section__title {
    font-size: 32px;
  }

  .hero-section--bpo .hero-section__catchphrase {
    font-size: 20px;
  }

  .hero-section--bpo .hero-section__text {
    font-size: 14px;
  }

  .hero-section--bpo .hero-section__cta {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-section--bpo .hero-section__btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-section--bpo .hero-section__deco--pentagon {
    right: 20px;
    width: 260px;
    height: 251px;
    opacity: 0.6;
  }

  .hero-section--bpo .hero-section__deco--icon {
    right: 186px;
    top: 456px;
    width: 80px;
    height: 80px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .hero-section--bpo {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .hero-section--bpo .hero-section__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hero-section--bpo .hero-section__article {
    gap: calc(60 / 750 * 100vw);
    padding-top: calc(60 / 750 * 100vw);
  }

  /* Background for Mobile */
  .hero-section--bpo .hero-section__deco--pentagon {
    right: calc(-89 / 750 * 100vw);
    top: calc(70 / 750 * 100vw);
    transform: none;
    width: calc(375 / 750 * 100vw);
    height: calc(359 / 750 * 100vw);
    opacity: 0.6;
  }

  .hero-section--bpo .hero-section__deco--icon {
    right: calc(40 / 750 * 100vw);
    top: calc(34 / 750 * 100vw);
    transform: none;
    width: calc(116 / 750 * 100vw);
    height: calc(116 / 750 * 100vw);
    opacity: 0.6;
  }

  /* Header */
  .hero-section--bpo .hero-section__header {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section--bpo .hero-section__logo {
    width: 100%;
    max-width: calc(584 / 750 * 100vw);
  }

  .hero-section--bpo .hero-section__title {
    font-size: calc(44 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  /* Description */
  .hero-section--bpo .hero-section__description {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section--bpo .hero-section__catchphrase {
    font-size: calc(36 / 750 * 100vw);
    line-height: 1.6;
    letter-spacing: calc(1.0 / 750 * 100vw);
  }

  .hero-section--bpo .hero-section__catchphrase br {
    display: inline;
  }

  .hero-section--bpo .hero-section__text {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.8;
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  /* CTA */
  .hero-section--bpo .hero-section__cta {
    flex-direction: column;
    align-items: center;
    gap: calc(40 / 750 * 100vw);
    width: 100%;
  }

  .hero-section--bpo .hero-section__btn {
    width: 100%;
    max-width: calc(640 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(40 / 750 * 100vw) calc(36 / 750 * 100vw);
    border-radius: calc(157.5 / 750 * 100vw);
  }

  .hero-section--bpo .hero-section__btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: calc(32 / 750 * 100vw);
    line-height: 1.3;
    letter-spacing: calc(1.92 / 750 * 100vw);
  }

  .hero-section--bpo .hero-section__btn-icon {
    right: calc(52 / 750 * 100vw);
    width: calc(32 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }
}

/* ==========================================================================
   BPO About Section
   ========================================================================== */

.bpo-about {
  background-color: #fff;
  padding: 80px 0 100px;
  background-image: url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-about.png);
  background-image: -webkit-image-set(
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-about.png) 1x,
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-about@2x.png) 2x
  );
  background-image: image-set(
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-about.png) 1x,
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-about@2x.png) 2x
  );
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.bpo-about__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.bpo-about__inner {
  padding: 0 32px;
}

.bpo-about__article {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.bpo-about__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.bpo-about__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #111;
  margin: 0;
}

.bpo-about__subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #008a83;
  margin: 0;
}

/* Content */
.bpo-about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}

.bpo-about__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0;
}

.bpo-about__heading-break {
  display: none;
}

.bpo-about__text-group {
  display: flex;
  flex-direction: column;
}

.bpo-about__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0;
}

/* Image - PC版では背景画像として表示するため非表示 */
.bpo-about__image {
  display: none;
}

/* ==========================================================================
   Mobile Styles (max-width: 699px)
   ========================================================================== */

@media screen and (max-width: 699px) {
  .bpo-about {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw) 0;
    background: none;
  }

  .bpo-about__container {
    padding: 0;
  }

  .bpo-about__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .bpo-about__article {
    align-items: center;
  }

  /* Header */
  .bpo-about__header {
    gap: calc(24 / 750 * 100vw);
  }

  .bpo-about__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: 0.04em;
  }

  .bpo-about__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: 0.03em;
  }

  /* Content */
  .bpo-about__content {
    max-width: 100%;
    gap: calc(32 / 750 * 100vw);
  }

  .bpo-about__heading {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: 0.06em;
  }

  .bpo-about__heading-break {
    display: block;
  }

  .bpo-about__text-group {
    gap: 0;
  }

  .bpo-about__text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: 0.08em;
  }

  /* Image - モバイル版では表示 */
  .bpo-about__image {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin-top: calc(60 / 750 * 100vw);
    width: calc(800 / 750 * 100vw);
    margin-left: calc(-200 / 750 * 100vw);
    /* text-align: center; */
  }

  .bpo-about__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* ==========================================================================
   BPO Features Section
   ========================================================================== */

.bpo-features {
  position: relative;
  padding: 100px 0;
  background-color: #0a2622;
  background-image: url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-features.png);
  background-image: -webkit-image-set(
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-features.png) 1x,
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-features@2x.png) 2x
  );
  background-image: image-set(
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-features.png) 1x,
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-bpo-features@2x.png) 2x
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bpo-features__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.bpo-features__inner {
  padding: 0 32px;
}

.bpo-features__article {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Header */
.bpo-features__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.bpo-features__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
}

.bpo-features__subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #edfffe;
  margin: 0;
}

/* Feature List */
.bpo-features__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Feature Item */
.bpo-features__item {
  position: relative;
  background: linear-gradient(137deg, #24353B 24.17%, #23343A 30.92%, #223338 37.67%, #213237 44.41%, #1F3134 51.16%, #1E3032 57.91%, #1D2F30 64.66%, #1C2E2F 71.41%, #1B2D2E 78.15%, #1A2C2D 91.65%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px;
}

.bpo-features__item-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Reverse layout for item 02 */
.bpo-features__item--reverse .bpo-features__item-inner {
  flex-direction: row-reverse;
}

/* Image */
.bpo-features__image {
  flex-shrink: 0;
}

.bpo-features__image img {
  display: block;
  width: 516px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

/* Content */
.bpo-features__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 16px;
}

.bpo-features__content-header {
  position: relative;
  display: flex;
  padding-bottom: 32px;
  border-bottom: 3px solid #008a83;
}

.bpo-features__item-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0;
  flex-grow: 1;
}

.bpo-features__number {
  /* position: absolute;
  top: 0;
  right: 0; */
  flex-grow: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.3;
  color: #edfffe;
  opacity: 0.3;
}

/* Reverse layout: number position */
.bpo-features__item--reverse .bpo-features__number {
  right: 0;
  left: auto;
}

.bpo-features__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #edfffe;
  margin: 0;
}

@media screen and (max-width: 1280px) {
  .bpo-features__image img {
    width: 100%;
    max-width: 450px;
  }
}

@media screen and (max-width: 1080px) {
  .bpo-features__item-inner {
    flex-direction: column;
    gap: 40px;
  }

  .bpo-features__item--reverse .bpo-features__item-inner {
    flex-direction: column;
  }

  .bpo-features__content .sp-only {
    display: block;
  }
}

/* ==========================================================================
   Mobile Styles (max-width: 699px)
   ========================================================================== */

@media screen and (max-width: 699px) {
  .bpo-features {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .bpo-features__container {
    padding: 0;
  }

  .bpo-features__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .bpo-features__article {
    gap: calc(60 / 750 * 100vw);
    align-items: center;
  }

  /* Header */
  .bpo-features__header {
    gap: calc(24 / 750 * 100vw);
  }

  .bpo-features__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: 0.04em;
  }

  .bpo-features__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: 0.03em;
  }

  /* Feature List */
  .bpo-features__list {
    gap: calc(80 / 750 * 100vw);
    width: 100%;
    max-width: calc(670 / 750 * 100vw);
  }

  /* Feature Item */
  .bpo-features__item {
    padding: calc(40 / 750 * 100vw) calc(40 / 750 * 100vw) calc(60 / 750 * 100vw);
  }

  .bpo-features__item-inner {
    flex-direction: column;
    gap: calc(40 / 750 * 100vw);
  }

  /* Reverse layout: same as normal on mobile */
  .bpo-features__item--reverse .bpo-features__item-inner {
    flex-direction: column;
  }

  /* Image */
  .bpo-features__image {
    width: 100%;
  }

  .bpo-features__image img {
    width: 100%;
    max-width: calc(590 / 750 * 100vw);
  }

  /* Content */
  .bpo-features__content {
    width: 100%;
    padding: 0 calc(16 / 750 * 100vw);
    gap: calc(40 / 750 * 100vw);
    align-items: center;
  }

  .bpo-features__content-header {
    position: relative;
    width: 100%;
    padding-bottom: calc(40 / 750 * 100vw);
  }

  .bpo-features__item-title {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: 0.06em;
  }

  .bpo-features__number {
    top: 0;
    right: 0;
  }

  /* Reverse layout: number position on mobile */
  .bpo-features__item--reverse .bpo-features__number {
    right: 0;
    left: auto;
  }

  .bpo-features__text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: 0.08em;
    width: 100%;
  }
}

/* ==========================================================================
   BPO Domain Section
   ========================================================================== */

.bpo-domain {
  position: relative;
  padding: 80px 0 100px;
  background-color: #e6e6e6;
}

.bpo-domain__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.bpo-domain__inner {
  padding: 0 32px;
}

.bpo-domain__article {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Header */
.bpo-domain__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.bpo-domain__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #111;
  margin: 0;
}

.bpo-domain__subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #008a83;
  margin: 0;
}

.bpo-domain__lead {
  display: none;
}

/* Card List - PC: 2 columns */
.bpo-domain__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card */
.bpo-domain__card {
  background: #fff;
  border-radius: 24px;
  padding: 16px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* Card Image */
.bpo-domain__card-image {
  width: 100%;
  overflow: hidden;
}

.bpo-domain__card-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

/* Card Content */
.bpo-domain__card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
  width: 100%;
}

.bpo-domain__card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0;
  text-align: center;
}

/* Card Summary (heading + icon) */
.bpo-domain__card-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bpo-domain__card-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0;
}

.bpo-domain__card-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.bpo-domain__card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0;
}

/* ==========================================================================
   Tablet Styles (max-width: 1024px)
   ========================================================================== */

@media screen and (max-width: 1024px) {
  .bpo-domain__list {
    grid-template-columns: 1fr;
    max-width: 670px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Mobile Styles (max-width: 699px)
   ========================================================================== */

@media screen and (max-width: 699px) {
  .bpo-domain {
    padding: calc(80 / 750 * 100vw) calc(20 / 750 * 100vw) calc(100 / 750 * 100vw);
  }

  .bpo-domain__container {
    padding: 0;
  }

  .bpo-domain__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .bpo-domain__article {
    align-items: center;
  }

  /* Header */
  .bpo-domain__header {
    gap: calc(24 / 750 * 100vw);
    max-width: calc(670 / 750 * 100vw);
    text-align: center;
  }

  .bpo-domain__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: 0.04em;
  }

  .bpo-domain__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: 0.03em;
  }

  .bpo-domain__lead {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #111;
    margin: calc(16 / 750 * 100vw) 0 0;
  }

  /* Card List - Mobile: 1 column */
  .bpo-domain__list {
    display: flex;
    flex-direction: column;
    gap: calc(60 / 750 * 100vw);
    max-width: calc(670 / 750 * 100vw);
    width: 100%;
  }

  /* Card */
  .bpo-domain__card {
    padding: calc(20 / 750 * 100vw) calc(20 / 750 * 100vw) calc(60 / 750 * 100vw);
    gap: calc(40 / 750 * 100vw);
  }

  /* Card Image */
  .bpo-domain__card-image img {
    max-width: calc(630 / 750 * 100vw);
  }

  /* Card Content */
  .bpo-domain__card-content {
    gap: calc(32 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }

  .bpo-domain__card-title {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: 0.04em;
  }

  /* Card Summary */
  .bpo-domain__card-summary {
    gap: calc(24 / 750 * 100vw);
  }

  .bpo-domain__card-heading {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .bpo-domain__card-text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: 0.08em;
  }
}

/* ==========================================================================
   BPO Hero - Independent Styles (50-bpo-hero)
   Note: This file is self-contained and does NOT depend on 10-top-hero
   ========================================================================== */

/* Variables */
:root {
  --hero-primary: #008a83;
  --hero-text: #111111;
  --hero-white: #ffffff;
  --hero-radius-s: 16px;
  --hero-radius-btn: 80px;
}

/* ==========================================================================
   Section Container
   ========================================================================== */
.hero-section--product {
  position: relative;
  background: linear-gradient(299deg, #F8FAFA 50%, #E8F4F4 85.96%);
  padding: 80px 320px;
  overflow: hidden;
}

/* ==========================================================================
   Background Decorations
   ========================================================================== */
.hero-section--product .hero-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-section--product .hero-section__deco {
  position: absolute;
}

/* Pentagon Decoration */
.hero-section--product .hero-section__deco--pentagon {
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  width: 351px;
  height: 339px;
}

.hero-section--product .hero-section__deco--pentagon img {
  width: 100%;
  height: 100%;
}

/* AI BPO Icon Decoration */
.hero-section--product .hero-section__deco--icon {
  position: absolute;
  right: 460px;
  top: 300px;
  transform: translateY(calc(-50% - 60px));
  width: 112px;
  height: 112px;
}

.hero-section--product .hero-section__deco--icon img {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Inner Container
   ========================================================================== */
.hero-section--product .hero-section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
}

/* ==========================================================================
   Article
   ========================================================================== */
.hero-section--product .hero-section__article {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 60px;
}

/* ==========================================================================
   Header (Logo + Title)
   ========================================================================== */
.hero-section--product .hero-section__header {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-section--product .hero-section__logo {
  flex-shrink: 0;
  width: 628px;
}

.hero-section--product .hero-section__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Title
   ========================================================================== */
.hero-section--product .hero-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.3;
  letter-spacing: 1.76px;
  color: var(--hero-text);
  margin: 0;
}

/* ==========================================================================
   Description Block
   ========================================================================== */
.hero-section--product .hero-section__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-section--product .hero-section__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 1.68px;
  color: var(--hero-text);
  margin: 0;
}

.hero-section--product .hero-section__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--hero-text);
  margin: 0;
}

/* ==========================================================================
   CTA Buttons
   ========================================================================== */
.hero-section--product .hero-section__cta {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.hero-section--product .hero-section__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  padding: 18px 40px 20px;
  background-color: var(--hero-primary);
  border-radius: var(--hero-radius-btn);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-section--product .hero-section__btn:hover {
  opacity: 0.8;
}

.hero-section--product .hero-section__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  color: var(--hero-white);
}

.hero-section--product .hero-section__btn-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.hero-section--product .hero-section__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .hero-section--product {
    padding: 80px 200px;
  }

  .hero-section--product .hero-section__deco--pentagon {
    right: 80px;
  }

  .hero-section--product .hero-section__deco--icon {
    right: 360px;
    top: 300px;
  }
}

/* Tablet Large */
@media screen and (max-width: 1440px) {
  .hero-section--product {
    padding: 80px 80px;
  }

  .hero-section--product .hero-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-section--product .hero-section__logo {
    width: 500px;
  }

  .hero-section--product .hero-section__title {
    font-size: 36px;
  }

  .hero-section--product .hero-section__catchphrase {
    font-size: 24px;
  }

  .hero-section--product .hero-section__deco--pentagon {
    right: 40px;
    width: 300px;
    height: 290px;
  }

  .hero-section--product .hero-section__deco--icon {
    right: 280px;
    top: 330px;
    width: 100px;
    height: 100px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .hero-section--product {
    padding: 60px 40px;
  }

  .hero-section--product .hero-section__article {
    gap: 40px;
    padding-top: 40px;
  }

  .hero-section--product .hero-section__logo {
    width: 450px;
  }

  .hero-section--product .hero-section__title {
    font-size: 32px;
  }

  .hero-section--product .hero-section__catchphrase {
    font-size: 20px;
  }

  .hero-section--product .hero-section__text {
    font-size: 14px;
  }

  .hero-section--product .hero-section__cta {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-section--product .hero-section__btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-section--product .hero-section__deco--pentagon {
    right: 20px;
    width: 260px;
    height: 251px;
    opacity: 0.6;
  }

  .hero-section--product .hero-section__deco--icon {
    right: 232px;
    top: 288px;
    width: 80px;
    height: 80px;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .hero-section--product {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .hero-section--product .hero-section__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .hero-section--product .hero-section__article {
    gap: calc(60 / 750 * 100vw);
    padding-top: calc(60 / 750 * 100vw);
  }

  /* Background for Mobile */
  .hero-section--product .hero-section__deco--pentagon {
    right: calc(-89 / 750 * 100vw);
    top: calc(70 / 750 * 100vw);
    transform: none;
    width: calc(375 / 750 * 100vw);
    height: calc(359 / 750 * 100vw);
    opacity: 0.6;
  }

  .hero-section--product .hero-section__deco--icon {
    right: calc(40 / 750 * 100vw);
    top: calc(34 / 750 * 100vw);
    transform: none;
    width: calc(116 / 750 * 100vw);
    height: calc(116 / 750 * 100vw);
    opacity: 0.6;
  }

  /* Header */
  .hero-section--product .hero-section__header {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section--product .hero-section__logo {
    width: 100%;
    max-width: calc(584 / 750 * 100vw);
  }

  .hero-section--product .hero-section__title {
    font-size: calc(44 / 750 * 100vw);
    line-height: 1.4;
    letter-spacing: calc(1.76 / 750 * 100vw);
  }

  /* Description */
  .hero-section--product .hero-section__description {
    gap: calc(24 / 750 * 100vw);
  }

  .hero-section--product .hero-section__catchphrase {
    font-size: calc(36 / 750 * 100vw);
    line-height: 1.6;
    letter-spacing: calc(2.16 / 750 * 100vw);
  }

  .hero-section--product .hero-section__catchphrase br {
    display: inline;
  }

  .hero-section--product .hero-section__text {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.8;
    letter-spacing: calc(2.08 / 750 * 100vw);
  }

  /* CTA */
  .hero-section--product .hero-section__cta {
    flex-direction: column;
    align-items: center;
    gap: calc(40 / 750 * 100vw);
    width: 100%;
  }

  .hero-section--product .hero-section__btn {
    width: 100%;
    max-width: calc(640 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(40 / 750 * 100vw) calc(36 / 750 * 100vw);
    border-radius: calc(157.5 / 750 * 100vw);
  }

  .hero-section--product .hero-section__btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: calc(32 / 750 * 100vw);
    line-height: 1.3;
    letter-spacing: calc(1.92 / 750 * 100vw);
  }

  .hero-section--product .hero-section__btn-icon {
    right: calc(52 / 750 * 100vw);
    width: calc(32 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }
}


/* ==========================================================================
   Product About Section
   ========================================================================== */

.product-about {
  background-color: #fff;
  padding: 80px 0 100px;
  background-image: url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-product-about.png);
  background-image: -webkit-image-set(
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-product-about.png) 1x,
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-product-about@2x.png) 2x
  );
  background-image: image-set(
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-product-about.png) 1x,
    url(/wp-content/themes/galapagos2023/assets/img/service/ai/bg-product-about@2x.png) 2x
  );
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.product-about__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.product-about__inner {
  padding: 0 32px;
}

.product-about__article {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.product-about__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.product-about__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #111;
  margin: 0;
}

.product-about__subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #008a83;
  margin: 0;
}

/* Content */
.product-about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.product-about__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0;
}

.product-about__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0;
}

.product-about__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0;
}

/* Image */
.product-about__image {
  position: absolute;
  right: 32px;
  bottom: 0;
  width: 476px;
  height: 571px;
}

.product-about__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.product-about__image {
  display: none;
}

/* ==========================================================================
   Mobile Styles (max-width: 699px)
   ========================================================================== */

@media screen and (max-width: 699px) {
  .product-about {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw) 0;
    background: none;
  }

  .product-about__container {
    padding: 0;
  }

  .product-about__inner {
    padding: 0 calc(20 / 750 * 100vw);
  }

  .product-about__article {
    align-items: center;
  }

  /* Header */
  .product-about__header {
    gap: calc(24 / 750 * 100vw);
  }

  .product-about__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: 0.04em;
  }

  .product-about__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: 0.03em;
  }

  /* Content */
  .product-about__content {
    max-width: 100%;
    gap: calc(32 / 750 * 100vw);
  }

  .product-about__heading {
    font-size: calc(36 / 750 * 100vw);
    letter-spacing: 0.06em;
  }

  .product-about__text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: 0.08em;
  }

  .product-about__text + .product-about__text {
    margin-top: calc(-16 / 750 * 100vw);
  }

  .product-about__note {
    font-size: calc(20 / 750 * 100vw);
    letter-spacing: 0.08em;
    margin-top: calc(-16 / 750 * 100vw);
  }

  /* Image */
  .product-about__image {
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(680 / 750 * 100vw);
    height: auto;
    margin-left: calc(-80 / 750 * 100vw);
    /* margin-top: 60px; */
  }

  .product-about__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}

/* ==========================================================================
   Product Menu Section - プロダクト紹介
   ========================================================================== */

/* Variables */
:root {
  --product-menu-primary: #008a83;
  --product-menu-body: #111111;
  --product-menu-white: #ffffff;
  --product-menu-card-bg: rgba(255, 255, 255, 0.08);
  --product-menu-btn-bg: rgba(255, 255, 255, 0.16);
  --product-menu-radius-l: 32px;
  --product-menu-radius-btn: 80px;
}

/* Section Container */
.product-menu {
  position: relative;
  background-color: #1a2a2a;
  padding: 100px 320px;
  overflow: hidden;
}

/* Background Image */
.product-menu__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.product-menu__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container */
.product-menu__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

/* Article - Header */
.product-menu__article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

/* Heading */
.product-menu__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.product-menu__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--product-menu-white);
  margin: 0;
}

.product-menu__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--product-menu-primary);
  margin: 0;
}

/* Cards Container */
.product-menu__cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Card */
.product-menu__card {
  display: flex;
  gap: 40px;
  /* background: var(--product-menu-card-bg); */
  background: linear-gradient(137deg, #24353B 24.17%, #23343A 30.92%, #223338 37.67%, #213237 44.41%, #1F3134 51.16%, #1E3032 57.91%, #1D2F30 64.66%, #1C2E2F 71.41%, #1B2D2E 78.15%, #1A2C2D 91.65%);
  border-radius: var(--product-menu-radius-l);
  padding: 48px;
  /* backdrop-filter: blur(10px); */
}

.product-menu__card--reverse {
  flex-direction: row-reverse;
}

/* Card Image */
.product-menu__card-image {
  flex-shrink: 0;
  width: 460px;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
}

.product-menu__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Content */
.product-menu__card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 27px 16px 0;
}

/* Card Header */
.product-menu__card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--product-menu-primary);
}

.product-menu__card-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--product-menu-white);
  margin: 0;
}

.product-menu__card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: var(--product-menu-white);
  margin: 0;
}

/* Card Body */
.product-menu__card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.product-menu__card-catch {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--product-menu-white);
  margin: 0;
}

.product-menu__card-catch-bar {
  display: block;
  width: 4px;
  height: 32px;
  background-color: #EDFFFE;
  border-radius: 2px;
}

.product-menu__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Card Button */
.product-menu__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 40px 16px;
  background-color: var(--product-menu-btn-bg);
  border-radius: var(--product-menu-radius-btn);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: var(--product-menu-white);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.product-menu__card-btn:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .product-menu {
    padding: 100px 160px;
  }
}

/* Desktop */
@media screen and (max-width: 1440px) {
  .product-menu {
    padding: 80px 80px;
  }

  .product-menu__card {
    padding: 48px;
  }

  .product-menu__card-image {
    width: 400px;
    height: 400px;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .product-menu {
    padding: 60px 40px;
  }

  .product-menu__card {
    flex-direction: column;
    padding: 40px;
    gap: 32px;
  }

  .product-menu__card--reverse {
    flex-direction: column;
  }

  .product-menu__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin: 0 auto;
  }

  .product-menu__card-content {
    padding: 0;
  }
}

/* Mobile */
@media screen and (max-width: 699px) {
  .product-menu {
    padding: calc(100 / 750 * 100vw) calc(20 / 750 * 100vw);
  }

  .product-menu__article {
    margin-bottom: calc(60 / 750 * 100vw);
  }

  .product-menu__heading {
    gap: calc(24 / 750 * 100vw);
  }

  .product-menu__title {
    font-size: calc(44 / 750 * 100vw);
    letter-spacing: 0.04em;
  }

  .product-menu__subtitle {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: 0.03em;
  }

  .product-menu__cards {
    gap: calc(80 / 750 * 100vw);
  }

  .product-menu__card {
    flex-direction: column;
    padding: calc(40 / 750 * 100vw);
    gap: calc(60 / 750 * 100vw);
    border-radius: calc(24 / 750 * 100vw);
  }

  .product-menu__card--reverse {
    flex-direction: column;
  }

  .product-menu__card-image {
    width: 100%;
    max-width: calc(590 / 750 * 100vw);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-menu__card-header {
    gap: calc(8 / 750 * 100vw);
    margin-bottom: calc(40 / 750 * 100vw);
    padding-bottom: calc(40 / 750 * 100vw);
  }

  .product-menu__card-label {
    font-size: calc(28 / 750 * 100vw);
  }

  .product-menu__card-name {
    font-size: calc(44 / 750 * 100vw);
  }

  .product-menu__card-body {
    gap: calc(32 / 750 * 100vw);
    margin-bottom: 0;
  }

  .product-menu__card-catch {
    font-size: calc(28 / 750 * 100vw);
  }

  .product-menu__card-catch-bar {
    height: calc(39 / 750 * 100vw);
  }

  .product-menu__card-text {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.8;
  }

  .product-menu__card-btn {
    font-size: calc(24 / 750 * 100vw);
    padding: calc(20 / 750 * 100vw) calc(48 / 750 * 100vw) calc(22 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) auto;
  }
}
