/* ========================================
   Color Tokens - Design System Colors
   ======================================== */
:root {
  /* Primary Colors */
  --color-primary: #FFBF00;
  --color-primary-light: #FFE14D;

  /* Accent Colors */
  --color-accent: #203AFF;
  --color-accent-hover: #152EEA;

  /* Base Colors */
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Text Colors */
  --color-text-primary: #000000;
  --color-text-secondary: #333333;
  --color-text-muted: #555555;
  --color-text-inverse: #FFFFFF;

  /* Border Colors */
  --color-border-primary: #FFBF00;
  --color-border-white-alpha: rgba(255, 255, 255, 0.1);

  /* Background Colors */
  --color-bg-primary: #FDF9E8;
  --color-bg-secondary: #FFF9E6;
  --color-bg-dark: #000000;
  --color-bg-card: #FFFFFF;

  /* State Colors */

  /* Shadow Colors */
  --shadow-light: 0px 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0px 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0px 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-button-hover: 0px 6px 16px rgb(103 103 103 / 40%);
  --shadow-accent-hover: 0px 6px 16px rgb(103 103 103 / 40%);

  /* Gradient Colors */
  --gradient-primary: linear-gradient(45deg, #ffbf00, #ffbf00, #ffbf00, #ffbf00, #ffbf00, #ffbf00, #ffffff);

  --gradient-primary-border: linear-gradient(transparent 70%, var(--color-primary-light) 70%);
}


/* スクロール時に見出しにアンダーライン引くアニメ
  ------------------------------*/
.js-scroll .msk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:var(--gradient-primary-border);
  opacity: 0;
  animation-delay: 100ms;
  z-index: -1;
}

.js-scroll.off .msk {
  width: 0;
  animation: reveal 1s cubic-bezier(0.645, 0.045, 0.345, 1) 100ms forwards;
}
@keyframes reveal {
  0% {
    width: 0;
    opacity: 1;
  }

  67% {
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}



/* ========================================
   Foundation Layer - Reset and Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* はみ出し要素の制御 */
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
  /* 右のスクロール幅のはみ出し要素の制御 */
}

/* ========================================
   Layout Layer - Page Structure
   ======================================== */
/* Header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--color-bg-dark);
  z-index: 1000;
  box-shadow: rgb(0 0 0 / 30%) 0 3px 10px 0px;
}

@media (max-width: 768px) {
  .l-header {
    height: 64px;
  }
}

/* Header Wrap */
.l-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .l-header__wrap {
    padding: 0 24px;
  }
}

/* Header Left */
.l-header__left {
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .l-header__left {
    flex: 0 0 auto;
  }
}

/* Header Center */
.l-header__center {
  flex: 1;
  display: flex;
  justify-content: right;
}

@media (max-width: 768px) {
  .l-header__center {
    position: fixed;
    top: 64px;
    right: 0;
    width: 50%;
    border-radius: 24px;
    margin: 10px;
    background-color: var(--color-white);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px 4px;
  }

  .l-header__center.is-open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .l-header__center {
    flex: 0 0 auto;
  }
}

/* Header Right */
.l-header__right {
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .l-header__right {
    flex: 0 0 auto;
  }
}

/* Footer */
.l-footer {
  background-color: var(--color-bg-dark);
  padding: 24px 0;
}

/* Footer Content */
.l-footer__content {
  text-align: center;
}

/* ========================================
   Component Layer - Reusable Components
   ======================================== */

/* Logo Component */
.c-logo {
  display: flex;
  align-items: center;
}

/* Logo Image */
.c-logo__image {
  height: 24px;
  width: auto;
}

@media (max-width: 768px) {
  .c-logo__image {
    height: 24px;
  }
}

/* Logo Text */
.c-logo__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-inverse);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .c-logo__text {
    font-size: 14px;
  }
}

/* Navigation Component */
.c-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1000px) {
  .c-nav {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .c-nav {
    flex-direction: column;
    gap: 0;
    padding: 32px 24px;
    width: 100%;
    height: 100%;
  }
}

/* Navigation Item */
.c-nav__item {
  padding: 0 8px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.c-nav__item:hover {
  border-bottom-color: var(--color-primary);
}

@media (max-width: 768px) {
  .c-nav__item {
    width: 100%;
    height: auto;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border-white-alpha);
    justify-content: center;
  }

  .c-nav__item:hover {
    border-bottom-color: #00000000;
  }
}

/* Navigation Label */
.c-nav__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-inverse);
}

@media (max-width: 768px) {
  .c-nav__label {
    font-size: 16px;
    color: var(--color-black);
  }
}

/* Navigation CTA */
.c-nav__cta {
  margin-left: 16px;
}

@media (max-width: 768px) {
  .c-nav__cta {
    margin-left: 0;
    width: 100%;
  }
}

/* Hamburger Menu Component */
.c-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

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

/* Hamburger Line */
.c-hamburger__line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-text-inverse);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 3px 0;
}

/* Hamburger Active State */
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

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

/* Primary Button */
.c-btnPrimary {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  min-width: 140px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.c-btnPrimary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-hover);
}

@media (max-width: 768px) {
  .c-btnPrimary {
    min-width: 100px;
    padding: 8px 16px;
    margin-top: 24px;
  }
}

/* Primary Button Label */
.c-btnPrimary__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-inverse);
}

@media (max-width: 768px) {
  .c-btnPrimary__label {
    font-size: 12px;
  }
}

/* CTA Button */
.c-btnCTA {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border: none;
  border-radius: 32px;
  padding: 14px 40px;
  min-width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.c-btnCTA:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
}

@media (max-width: 768px) {
  .c-btnCTA {
    min-width: 180px;
    height: 48px;
    padding: 10px;
  }
}

/* CTA Button blue Variant */
.c-btnCTA--blue {
  background-color: var(--color-accent);
}

.c-btnCTA--blue:hover {
  background-color: var(--color-accent-hover);
  box-shadow: var(--shadow-accent-hover);
}

/* CTA Button Label */
.c-btnCTA__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-inverse);
}

@media (max-width: 768px) {
  .c-btnCTA__label {
    font-size: 14px;
  }
}

/* Midashi Component */
.c-midashi {
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .c-midashi {
    margin-bottom: 32px;
  }
}


/* Midashi Heading */
.c-midashi h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: var(--color-text-primary);
  position: relative;
  display: inline-block;
  z-index: 0;
}

@media (max-width: 768px) {
  .c-midashi h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .c-midashi h2 {
    font-size: 20px;
  }
}

/* Card List Component */
.c-cardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .c-cardList {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  .c-cardList {
    flex-direction: column;
    max-width: 100%;
  }
}

/* Card Icon Vertical Component */
.c-cardIconVertical {
  background-color: var(--color-bg-card);
  border-radius: 16px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.c-cardIconVertical:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

@media (max-width: 1000px) {
  .c-cardIconVertical {
    flex-direction: row;
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .c-cardIconVertical {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .c-cardIconVertical {
    flex-direction: column;
    padding: 24px 20px;
  }
}

/* Card Icon */
.c-cardIconVertical__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-cardIconVertical__icon img {
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .c-cardIconVertical__icon {
    width: 60px;
    height: 60px;
  }
}

/* Card Text */
.c-cardIconVertical__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  text-align: left;
}

@media (max-width: 768px) {
  .c-cardIconVertical__text {
    font-size: 13px;
  }
}

/* Feature Item Component */
.c-featureItem {
  padding: 0 0 0 20px;
  border-left: 4px solid var(--color-border-primary);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .c-featureItem {
    margin-bottom: 16px;
  }
}

/* Feature Item Title */
.c-featureItem__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .c-featureItem__title {
    font-size: 15px;
    margin-bottom: 0;
  }
}

/* Feature Item Text */
.c-featureItem__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .c-featureItem__text {
    font-size: 12px;
  }
}

/* Circle Component */
.c-circle {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1000px) {
  .c-circle {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .c-circle {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .c-circle {
    width: 280px;
    height: 280px;
  }
}

/* Circle Image */
.c-circle__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Business Type Component */
.c-businessType {
  flex: 1;
  width: 100%;
}

/* Business Type Header */
.c-businessType__header {
  background-color: var(--color-primary);
  border-radius: 8px 8px 0 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

/* Business Type Title */
.c-businessType__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
}

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

/* Business Type Grid */
.c-businessType__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-primary);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

/* Business Type Item */
.c-businessType__item {
  background-color: var(--color-white);
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-black);
  padding: 16px 12px;
  min-height: 64px;
}

.c-businessType__item:nth-child(even) {
  border-right: none;
}

.c-businessType__item:nth-last-child(-n+2) {
  border-bottom: none;
}

@media (max-width: 768px) {
  .c-businessType__item {
    font-size: 13px;
    padding: 12px 8px;
    min-height: 56px;
  }
}

@media (max-width: 480px) {
  .c-businessType__item {
    font-size: 12px;
  }
}

/* Partner Card Component */
.c-partnerCard {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: var(--shadow-light);
}

.c-partnerCard__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-partnerCard__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-black);
}

.c-partnerCard__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.c-partnerCard__logo {
  flex: 0 0 auto;
  width: 160px;
}

.c-partnerCard__logo img {
  width: 100%;
  height: auto;
}

/* Tablet Styles */
@media (max-width: 1000px) {
  .c-partnerCard {
    flex-direction: column;
    padding: 40px 32px;
    text-align: center;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .c-partnerCard {
    padding: 32px 24px;
  }

  .c-partnerCard__title {
    font-size: 18px;
  }

  .c-partnerCard__text {
    font-size: 13px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .c-partnerCard {
    padding: 24px 16px;
  }

  .c-partnerCard__title {
    font-size: 16px;
  }

  .c-partnerCard__text {
    font-size: 12px;
  }

  .c-partnerCard__logo {
    width: 140px;
  }
}

/* Scroll Top Button */
.c-scrollTopBtn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary);
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  z-index: 1000;
}

.c-scrollTopBtn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

.c-scrollTopBtn.show {
  display: flex;
}

.c-scrollTopBtn__icon {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--color-black);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .c-scrollTopBtn {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .c-scrollTopBtn__icon {
    font-size: 20px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .c-scrollTopBtn {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }

  .c-scrollTopBtn__icon {
    font-size: 16px;
  }
}

/* Thumbnail Component */
.c-thumbnail {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .c-thumbnail {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .c-thumbnail {
    width: 180px;
    height: 180px;
  }
}

/* Thumbnail Image */
.c-thumbnail__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ========================================
   Project Layer - Page Specific Styles
   ======================================== */

/* Hero Section */
.p-heroSplit_rws {
  width: 100%;
  min-height: 600px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  padding: 80px 40px;
}

@media (max-width: 1000px) {
  .p-heroSplit_rws {
    padding: 60px 24px;
  }
}

@media (max-width: 768px) {
  .p-heroSplit_rws {
    margin-top: 64px;
    padding: 48px 16px;
    min-height: calc(100vh - 220px);
  }
}

@media (max-width: 480px) {
  .p-heroSplit_rws {
    padding: 40px 12px;
  }
}

/* Hero Wrap */
.c-hero__wrap {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

@media (max-width: 1000px) {
  .c-hero__wrap {
    flex-direction: column-reverse;
    gap: 48px;
  }
}

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

/* Hero Content */
.c-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1000px) {
  .c-hero__content {
    align-items: center;
  }
}

/* Hero Title */
.c-hero__ttl h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.4;
  color: var(--color-black);
}

@media (max-width: 768px) {
  .c-hero__ttl h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .c-hero__ttl h1 {
    font-size: 28px;
  }
}

/* Hero Lead */
.c-hero__lead {
  padding-bottom: 32px;
}

.c-hero__lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-black);
}

@media (max-width: 768px) {
  .c-hero__lead p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .c-hero__lead p {
    font-size: 14px;
  }
}

/* Hero Image */
.c-hero__image {
  flex: 0 0 auto;
  width: 516px;
  max-width: 50%;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .c-hero__image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .c-hero__image {
    max-width: 390px;
    width: 80%;
  }
}

/* Hero Image */
.c-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

/* What Section */
.p-sectionWhat {
  width: 90%;
  max-width: 1100px;
  margin: 60px auto;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 48px 64px;
  box-shadow: var(--shadow-medium);
  z-index: 10;
}

@media (max-width: 768px) {
  .p-sectionWhat {
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .p-sectionWhat {
    margin: 24px auto;
    padding: 32px;
  }
}

/* What Section Wrap */
.p-sectionWhat__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}

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

@media (max-width: 480px) {
  .p-sectionWhat__wrap {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

/* What Section Left */
.p-sectionWhat__left {
  flex: 1;
}

.p-sectionWhat__left .c-midashi {
  text-align: left;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .p-sectionWhat__left .c-midashi {
    text-align: center;
  }
}


/* What Section Text */
.p-sectionWhat__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .p-sectionWhat__text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .p-sectionWhat__text {
    font-size: 13px;
  }
}

/* What Section Right */
.p-sectionWhat__right {
  flex: 0 0 auto;
}

/* Intro Section */
.p-sectionIntro {
  width: 100%;
  background-color: var(--color-bg-secondary);
  padding: 96px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: -1;
}

@media (max-width: 1000px) {
  .p-sectionIntro {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .p-sectionIntro {
    padding: 60px 40px;
  }
}

@media (max-width: 480px) {
  .p-sectionIntro {
    padding: 16px 32px;
  }
}

/* Intro Section Background */
.p-sectionIntro::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -240px;
  width: 526px;
  height: 526px;
  border-radius: 50%;
  box-shadow: inset 0px 0px 0px 140px rgb(255 224 133 / 30%);
  z-index: -1;
}

@media (max-width: 480px) {
  .p-sectionIntro::before {
    top: 0;
    left: -140px;
    width: 326px;
    height: 326px;
    box-shadow: inset 0px 0px 0px 90px rgb(255 224 133 / 30%);
  }
}

.p-sectionIntro::before,
.p-sectionWork::before,
.p-sectionAble::before {
  /* 上下アニメーション */
  animation: heroFloat 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/*グラデーションアニメーション*/
.gradientAnime {
  background: var(--gradient-primary);
  /*グラデーションを定義*/
  background-size: 500%;
  /*サイズを大きくひきのばさないと動きが出ない*/
  animation: bggradient 8s ease infinite;
  /* -webkit-background-clip: text; */
  /*テキスト切り抜きマスク*/
  color: transparent;
  /*透明テキスト*/
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Work Section */
.p-sectionWork {
  width: 100%;
  margin: auto;
  background-color: var(--color-bg-secondary);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 1000px) {
  .p-sectionWork {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .p-sectionWork {
    padding: 48px 40px;
  }
}

@media (max-width: 480px) {
  .p-sectionWork {
    padding: 16px 32px;
  }
}

/* Work Section Background */
.p-sectionWork::before {
  content: '';
  position: absolute;
  top: 0%;
  right: -150px;
  width: 526px;
  height: 526px;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0px 0px 0px 140px rgb(255 224 133 / 30%);
}

@media (max-width: 480px) {
  .p-sectionWork::before {
    top: 15%;
    right: -150px;
    width: 326px;
    height: 326px;
    box-shadow: inset 0px 0px 0px 90px rgb(255 224 133 / 30%);
  }
}

/* Work Section Content */
.p-sectionWork__content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-light);
  position: relative;
  z-index: 1;
}

@media (max-width: 1000px) {
  .p-sectionWork__content {
    flex-direction: column-reverse;
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .p-sectionWork__content {
    padding: 32px 24px;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .p-sectionWork__content {
    padding: 32px 24px;
    gap: 32px;
  }
}

/* Work Section Features */
.p-sectionWork__features {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Able Section */
.p-sectionAble {
  width: 100%;
  background-color: var(--color-bg-secondary);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 1000px) {
  .p-sectionAble {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .p-sectionAble {
    padding: 48px 40px;
  }
}

@media (max-width: 480px) {
  .p-sectionAble {
    padding: 16px 32px 64px;
  }
}

/* Able Section Background */
.p-sectionAble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150px;
  width: 526px;
  height: 526px;
  border-radius: 50%;
  box-shadow: inset 0px 0px 0px 140px rgb(255 224 133 / 30%);
}

@media (max-width: 480px) {
  .p-sectionAble::before {
    top: 0;
    left: -140px;
    width: 326px;
    height: 326px;
    box-shadow: inset 0px 0px 0px 90px rgb(255 224 133 / 30%);
  }
}

/* Able Section Content */
.p-sectionAble__content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  z-index: 0;
}

@media (max-width: 1000px) {
  .p-sectionAble__content {
    flex-direction: column;
  }
}

/* CTA Section */
.p-ctaBox-img {
  width: 100%;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1000px) {
  .p-ctaBox-img {
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  .p-ctaBox-img {
    padding: 40px 32px;
  }
}

/* Feature Box Wrap */
.p-featureBoxWrap {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Feature Box Wrap Contents */
.p-featureBoxWrap--contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.p-featureBoxWrap--contents .c-midashi {
  margin-bottom: 0;
}

/* Feature Box Wrap Heading */
.p-featureBoxWrap--contents .c-midashi h2 {
  font-size: 36px;
  background: none;
}

@media (max-width: 768px) {
  .p-featureBoxWrap--contents .c-midashi h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .p-featureBoxWrap--contents .c-midashi h2 {
    font-size: 24px;
  }
}

/* Feature Box Wrap Text */
.p-featureBoxWrap--contents .c-midashi p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .p-featureBoxWrap--contents .c-midashi p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .p-featureBoxWrap--contents .c-midashi p {
    font-size: 13px;
  }
}

/* Partner Section */
.p-sectionPartner {
  width: 100%;
  background-color: var(--color-bg-secondary);
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .p-sectionPartner {
    padding: 48px 40px;
  }
}

@media (max-width: 480px) {
  .p-sectionPartner {
    padding: 40px 32px;
  }
}

/* Footer */
.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #FFFFFF;
}

/* ========================================
   Utility Layer - Helper Classes
   ======================================== */
.u-text-center {
  text-align: center;
}

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

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


.u-br {
  display: block;
}

@media (max-width: 1000px) {
  .u-br {
    display: none;
  }
}
