/* ================================================
   Reset & Base
   ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #4a4440;
  background-color: #f5f3f0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

/* ================================================
         Layout Components
         ================================================ */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================
         Layout: Header
         ================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 68, 64, 0.1);
  transition: background-color 0.3s ease;
}

.l-header__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.l-header__logo {
  width: 100%;
  max-width: 140px;
}

.l-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-header__logo a {
  transition: opacity 0.3s ease;
}

.l-header__logo a:hover {
  opacity: 0.7;
}

.l-header__nav {
  display: flex;
  align-items: center;
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__nav-item {
  margin: 0;
}

.l-header__nav-link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #4a4440;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
  padding: 8px 0;
  display: block;
}

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

.l-header__nav-link:focus-visible {
  outline: 2px solid #4a4440;
  outline-offset: 4px;
  border-radius: 2px;
}

.l-header__nav-link.is-active {
  background-color: #2563eb;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
}

.l-header__nav-link.is-active:hover {
  opacity: 1;
  background-color: #1d4ed8;
}

/* Hamburger Button */
.l-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.l-header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4a4440;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.l-header__hamburger[aria-expanded="true"]
  .l-header__hamburger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.l-header__hamburger[aria-expanded="true"]
  .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger[aria-expanded="true"]
  .l-header__hamburger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.l-header__hamburger:focus-visible {
  outline: 2px solid #4a4440;
  outline-offset: 4px;
  border-radius: 2px;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .l-header__container {
    padding: 0 40px;
    height: 72px;
  }

  .l-header__logo {
    font-size: 28px;
    max-width: 100px;
  }

  .l-header__nav-list {
    gap: 36px;
  }

  .l-header__nav-link {
    font-size: 13px;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .l-header {
    background-color: rgba(255, 255, 255, 0.98);
  }

  .l-header__container {
    padding: 0 24px;
    height: 64px;
  }

  .l-header__logo {
    font-size: 24px;
  }

  .l-header__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 68, 64, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .l-header__nav.is-open {
    max-height: 400px;
  }

  .l-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
  }

  .l-header__nav-item {
    border-bottom: 1px solid rgba(74, 68, 64, 0.1);
  }

  .l-header__nav-item:last-child {
    border-bottom: none;
  }

  .l-header__nav-link {
    display: block;
    padding: 16px 0;
    font-size: 15px;
  }

  .l-header__hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .l-header__container {
    padding: 0 20px;
    height: 60px;
  }

  .l-header__logo {
    font-size: 22px;
  }

  .l-header__nav {
    top: 60px;
  }
}

/* ========================================
   Main
   ======================================== */
main {
  margin-top: 80px;
}

@media (max-width: 1024px) {
  main {
    margin-top: 72px;
  }
}

@media (max-width: 768px) {
  main {
    margin-top: 64px;
  }
}

@media (max-width: 480px) {
  main {
    margin-top: 60px;
  }
}

/* ========================================
   Footer
   ======================================== */
.p-footer {
  background-color: #111827;
  color: #fff;
  padding: 64px 0 32px;
}

@media (min-width: 768px) {
  .p-footer {
    padding: 80px 0 40px;
  }
}

.p-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
  .p-footer__main {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .p-footer__main {
    gap: 120px;
  }
}

.p-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-footer__logo {
  width: 100%;
  max-width: 140px;
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-footer__description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 480px;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .p-footer__description {
    font-size: 15px;
    line-height: 1.8;
  }
}

.p-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-footer__nav-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .p-footer__nav-title {
    font-size: 20px;
  }
}

.p-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-footer__nav-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .p-footer__nav-link {
    font-size: 16px;
  }
}

.p-footer__nav-link:hover {
  opacity: 0.7;
}

.p-footer__nav-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 2px;
}

.p-footer__bottom {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .p-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.p-footer__link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .p-footer__link {
    font-size: 15px;
  }
}

.p-footer__link:hover {
  opacity: 0.8;
}

.p-footer__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ========================================
   About Page: Hero Section
   ======================================== */
/* Note: About page uses different hero style */
/* Speedix-lp hero styles are defined later in this file */
/* About page hero style - simple gradient background */
.p-hero--about {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .p-hero--about {
    padding: 80px 0;
  }
}

.p-hero--about .p-hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
  color: #fff;
}

@media (min-width: 768px) {
  .p-hero--about .p-hero__title {
    font-size: 48px;
    margin-bottom: 24px;
  }
}

.p-hero--about .p-hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: #fff;
}

@media (min-width: 768px) {
  .p-hero--about .p-hero__subtitle {
    font-size: 20px;
  }
}

/* ========================================
   About Page: Company Section
   ======================================== */
.p-company {
  padding: 64px 0;
  background-color: #fff;
}

@media (min-width: 768px) {
  .p-company {
    padding: 80px 0;
  }
}

.p-company__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 896px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-company__content {
    gap: 40px;
  }
}

.p-company__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .p-company__header {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .p-company__header {
    gap: 32px;
  }
}

.p-company__logo {
  width: 100%;
  max-width: 120px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-company__logo {
    max-width: 294px;
  }
}

@media (min-width: 1024px) {
  .p-company__logo {
    max-width: 294px;
  }
}

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

.p-company__name-wrapper {
  flex: 1;
}

.p-company__name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #4a4440;
}

@media (min-width: 768px) {
  .p-company__name {
    font-size: 32px;
    margin-bottom: 8px;
  }
}

@media (min-width: 1024px) {
  .p-company__name {
    font-size: 36px;
  }
}

.p-company__type {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: #6b7280;
}

@media (min-width: 768px) {
  .p-company__type {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .p-company__type {
    font-size: 16px;
  }
}

.p-company__description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #4a4440;
}

@media (min-width: 768px) {
  .p-company__description {
    font-size: 16px;
  }
}

.p-company__description p {
  margin: 0 0 16px;
}

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

/* ========================================
   About Page: Strengths Section
   ======================================== */
.p-strengths {
  padding: 64px 0;
  background-color: rgb(249 250 251);
}

@media (min-width: 768px) {
  .p-strengths {
    padding: 80px 0;
  }
}

.p-strengths__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 48px;
  color: #4a4440;
  text-align: center;
}

@media (min-width: 768px) {
  .p-strengths__title {
    font-size: 30px;
    margin-bottom: 48px;
  }
}

.p-strengths__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

@media (min-width: 1024px) {
  .p-strengths__grid {
    gap: 48px;
  }
}

.p-strengths__item {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .p-strengths__item {
    padding: 24px;
  }
}

.p-strengths__item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.p-strengths__icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 0 24px;
  background-color: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .p-strengths__icon-wrapper {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
  }
}

.p-strengths__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .p-strengths__icon {
    width: 36px;
    height: 36px;
  }
}

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

.p-strengths__item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
  color: #4a4440;
}

@media (min-width: 768px) {
  .p-strengths__item-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.p-strengths__item-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: #4a4440;
  text-align: left;
}

@media (min-width: 768px) {
  .p-strengths__item-text {
    font-size: 16px;
  }
}

/* ========================================
   About Page: Services Section
   ======================================== */
.p-services {
  padding: 64px 0;
  background-color: #fff;
}

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

.p-services__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 48px;
  color: #4a4440;
  text-align: center;
}

@media (min-width: 768px) {
  .p-services__title {
    font-size: 40px;
    margin-bottom: 64px;
  }
}

.p-services__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 896px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-services__list {
    gap: 40px;
  }
}

.p-services__item {
  display: flex;
  gap: 24px;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

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

.p-services__item::before {
  content: "";
  width: 3px;
  flex-shrink: 0;
  background-color: #2563eb;
  border-radius: 2px;
}

.p-services__item-content {
  flex: 1;
}

.p-services__item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #4a4440;
}

@media (min-width: 768px) {
  .p-services__item-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

.p-services__item-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: #4a4440;
}

@media (min-width: 768px) {
  .p-services__item-text {
    font-size: 16px;
  }
}

/* ========================================
   About Page: CTA Section
   ======================================== */
.p-cta {
  background-color: #2563eb;
  color: #fff;
  padding: 32px 0;
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .p-cta {
    padding: 64px 0;
    margin-bottom: 80px;
  }
}

.p-cta__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
  color: #fff;
}

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

.p-cta__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 40px;
  color: #fff;
}

@media (min-width: 768px) {
  .p-cta__subtitle {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

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

/* ========================================
     Terms
     ======================================== */
.p-terms {
  min-height: 100vh;
  padding: 0 20px 80px;
}

@media (min-width: 768px) {
  .p-terms {
    padding: 0 20px 100px;
  }
}

.p-terms__content {
  background-color: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 840px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-terms__content {
    padding: 64px 48px;
  }
}

.p-terms__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .p-terms__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.p-terms__section {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .p-terms__section {
    margin-bottom: 48px;
  }
}

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

.p-terms__term {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 16px 0 8px;
  border-bottom: 1px solid #e5e7eb;
  margin: 0;
}

.p-terms__term:nth-last-child(2) {
  border-bottom: none;
}

@media (min-width: 768px) {
  .p-terms__list {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
  }

  .p-terms__term {
    font-size: 15px;
    padding: 20px 24px 20px 0;
    border-bottom: 1px solid #e5e7eb;
    border-right: none;
  }

  .p-terms__term:nth-last-child(2) {
    border-bottom: none;
  }
}

.p-terms__description {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  padding: 0 0 16px;
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .p-terms__description {
    font-size: 15px;
    padding: 20px 0;
    margin: 0;
    border-bottom: 1px solid #e5e7eb;
  }

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

.p-terms__sub-item {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

@media (min-width: 768px) {
  .p-terms__sub-item {
    font-size: 15px;
    margin: 0 0 16px;
  }
}

.p-terms__sub-item:last-child {
  margin-bottom: 0;
}

.p-terms__sub-item strong {
  font-weight: 600;
  color: #333;
}

.p-terms__action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .p-terms__action {
    margin-top: 48px;
    padding-top: 40px;
  }
}

.p-terms__action .c-form__submit {
  width: auto;
  min-width: 200px;
  margin-top: 0;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

/* ========================================
   Component: Button
   ======================================== */
.c-button {
  display: inline-block;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #4a4440;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .c-button {
    padding: 16px 32px;
    font-size: 18px;
  }
}

.c-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.c-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 8px;
}

/* ========================================
   Contact Page: Hero Section
   ======================================== */
.p-contact-hero {
  background-color: #111827;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .p-contact-hero {
    padding: 60px 0;
  }
}

.p-contact-hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
  color: #fff;
}

@media (min-width: 768px) {
  .p-contact-hero__title {
    font-size: 48px;
    margin-bottom: 24px;
  }
}

.p-contact-hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: #fff;
}

@media (min-width: 768px) {
  .p-contact-hero__subtitle {
    font-size: 18px;
  }
}

/* ========================================
   Privacy Policy Page
   ======================================== */
.p-privacy-hero {
  background-color: #111827;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .p-privacy-hero {
    padding: 60px 0;
  }
}

.p-privacy-hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

@media (min-width: 768px) {
  .p-privacy-hero__title {
    font-size: 48px;
  }
}

.p-privacy {
  padding: 40px 20px;
  background-color: #f5f5f5;
  min-height: calc(100vh - 80px);
}

@media (min-width: 768px) {
  .p-privacy {
    padding: 60px 20px;
  }
}

.p-privacy__content {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 840px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-privacy__content {
    padding: 64px 48px;
  }
}

.p-privacy__section {
  margin-bottom: 40px;
}

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

@media (min-width: 768px) {
  .p-privacy__section {
    margin-bottom: 48px;
  }
}

.p-privacy__heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #4a4440;
  margin: 0 0 16px;
}

@media (min-width: 768px) {
  .p-privacy__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.p-privacy__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #4a4440;
  margin: 0 0 16px;
}

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

.p-privacy__text--small {
  font-size: 14px;
  color: #6b7280;
}

@media (min-width: 768px) {
  .p-privacy__text {
    font-size: 16px;
  }

  .p-privacy__text--small {
    font-size: 15px;
  }
}

.p-privacy__list {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}

@media (min-width: 768px) {
  .p-privacy__list {
    margin: 20px 0;
    padding-left: 32px;
  }
}

.p-privacy__list-item {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #4a4440;
  margin-bottom: 8px;
}

.p-privacy__list-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .p-privacy__list-item {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

/* ========================================
   Contact Section
   ======================================== */
.p-contact {
  padding: 80px 0;
  background-color: #f3f4f6;
}

@media (min-width: 768px) {
  .p-contact {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .p-contact {
    padding: 120px 0;
  }
}

.l-container--narrow {
  max-width: 800px;
}

/* ========================================
       Contact Form
       ======================================== */
.c-contact-form {
  background-color: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.c-form__errors {
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  color: #991b1b;
}

.c-form__errors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-form__errors li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .c-contact-form {
    padding: 48px 40px;
  }
}

/* ========================================
       Form Elements
       ======================================== */
.c-form__group {
  margin-bottom: 24px;
}

.c-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

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

.c-form__required {
  color: #ef4444;
  margin-left: 2px;
}

.c-form__optional {
  color: #6b7280;
  font-size: 0.9em;
  font-weight: 400;
  margin-left: 4px;
}

.c-form__input-wrapper,
.c-form__select-wrapper,
.c-form__textarea-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.c-form__icon {
  position: absolute;
  left: 16px;
  pointer-events: none;
  z-index: 1;
}

.c-form__icon--textarea {
  top: 16px;
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  width: 100%;
  padding: 14px 16px 14px 48px;
  font-size: 15px;
  line-height: 1.6;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .c-form__input,
  .c-form__select,
  .c-form__textarea {
    font-size: 16px;
    padding: 16px 18px 16px 50px;
  }
}

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

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

.c-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.c-form__textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.c-form__counter {
  text-align: right;
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

.c-form__note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
  line-height: 1.6;
}

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

/* ========================================
       Checkbox
       ======================================== */
.c-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.c-form__checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.c-form__checkbox:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.c-form__checkbox-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.c-form__checkbox-text small {
  font-size: 12px;
  color: #6b7280;
  display: block;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .c-form__checkbox-text {
    font-size: 15px;
  }

  .c-form__checkbox-text small {
    font-size: 13px;
  }
}

/* ========================================
       Submit Button
       ======================================== */
.c-form__submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  margin-top: 12px;
}

@media (min-width: 768px) {
  .c-form__submit {
    font-size: 18px;
    padding: 18px 40px;
  }
}

.c-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.c-form__submit:active {
  transform: translateY(0);
}

/* ========================================
     Finish Page
     ======================================== */
.p-finish {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.p-finish__content {
  background-color: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-finish__content {
    padding: 64px 48px;
  }
}

.p-finish__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .p-finish__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

.p-finish__text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .p-finish__text {
    font-size: 16px;
    margin-bottom: 48px;
  }
}

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

.p-finish__action .c-form__submit {
  width: auto;
  min-width: 200px;
  margin-top: 0;
  text-decoration: none;
  display: inline-block;
}
/* ============================================
   Reset & Base
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  font-weight: 600;
}

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

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

/* ========================================
   表示/非表示ユーチE��リチE��クラス
   ======================================== */
/* PC版�Eみ表示�E�デフォルト！E*/
.pc-only {
  display: block;
}

.pc-only.br,
br.pc-only {
  display: inline;
}

.sp-only {
  display: none !important;
}

br.sp-only {
  display: none !important;
}

/* SP版�Eみ表示 */
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .pc-only.br,
  br.pc-only {
    display: none !important;
  }

  .sp-only {
    display: block;
  }

  br.sp-only {
    display: inline !important;
  }

  .p-hero__logo {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: block !important;
  }

  .p-hero__logo-img {
    height: 40px;
    width: auto;
  }
}

/* ============================================
   Layout
   ============================================ */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

@media (min-width: 1024px) {
  .l-container {
    padding: 0 60px;
  }
}

.l-container--large {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}

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

@media (min-width: 1024px) {
  .l-container--large {
    padding: 0 80px;
  }
}

/* ============================================
   Project: Header (Fixed)
   ============================================ */
.p-header {
  display: none;
}

@media (min-width: 768px) {
  .p-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000;
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .p-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .p-header__logo {
    flex-shrink: 0;
  }

  .p-header__logo-img {
    height: 60px;
    width: auto;
  }

  .p-header__cta {
    flex-shrink: 0;
  }

  .p-header__cta .c-button {
    padding: 12px 32px;
    font-size: 14px;
  }
}

/* ============================================
   Component: Button
   ============================================ */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 56px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.c-button--primary {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(251, 146, 60, 0.4);
}

.c-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(251, 146, 60, 0.5);
}

.c-button--primary:focus-visible {
  outline: 3px solid #fb923c;
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .c-button {
    padding: 18px 48px;
    font-size: 18px;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.p-hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-hero {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .p-hero {
    padding: 120px 0;
  }
}

.p-hero__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-hero__content {
  position: relative;
  z-index: 1;
  max-width: 80%;
}

@media (min-width: 1024px) {
  .p-hero__content {
    max-width: 650px;
  }
}

@media (max-width: 767px) {
  .p-hero__content {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 16px 8px;
    border-radius: 8px;
  }
}

.p-hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #1a202c;
  margin: 0 0 20px 0;
  font-weight: 700;
}

@media (min-width: 768px) {
  .p-hero__subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .p-hero__subtitle {
    font-size: 20px;
  }
}

.p-hero__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  color: #1a202c;
  margin: 0 0 16px 0;
}

@media (min-width: 768px) {
  .p-hero__title {
    font-size: 44px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .p-hero__title {
    font-size: 52px;
    margin-bottom: 24px;
  }
}

.p-hero__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #2d3748;
  margin: 0 0 40px 0;
  font-weight: 600;
}

@media (min-width: 768px) {
  .p-hero__tagline {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .p-hero__tagline {
    font-size: 22px;
  }
}

.p-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.p-hero__cta .c-button {
  width: 200px;
  padding: 12px 24px;
}

@media (min-width: 768px) {
  .p-hero__cta {
    gap: 16px;
  }

  .p-hero__cta .c-button {
    width: auto;
    padding: 18px 56px;
  }
}

.p-hero__note {
  font-size: 15px;
  color: #2d3748;
  margin: 0;
  line-height: 1.6;
  font-weight: 600;
}

@media (min-width: 768px) {
  .p-hero__note {
    font-size: 16px;
  }
}

/* ============================================
   Project: Banners
   ============================================ */
.p-banners {
  padding: 60px 0;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .p-banners {
    padding: 80px 0;
  }
}

.p-banners__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

.p-banners__item {
  display: block;
  width: 100%;
  max-width: 400px;
  transition: opacity 0.2s ease;
  margin: 0 auto;
}

.p-banners__item:hover {
  opacity: 0.8;
}

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

@media (min-width: 768px) {
  .p-banners__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .p-banners__item {
    max-width: 100%;
  }
}

/* ============================================
   Project: Sympathy
   ============================================ */
.p-sympathy {
  padding: 60px 0;
  background-color: #f5f5f5;
}

@media (min-width: 768px) {
  .p-sympathy {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .p-sympathy {
    padding: 100px 0;
  }
}

.p-sympathy__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

@media (min-width: 768px) {
  .p-sympathy__title {
    font-size: 32px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .p-sympathy__title {
    font-size: 36px;
    margin-bottom: 60px;
  }
}

.p-sympathy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .p-sympathy__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .p-sympathy__grid {
    gap: 20px;
    margin-bottom: 60px;
  }
}

.p-sympathy__item {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .p-sympathy__item {
    padding: 24px;
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .p-sympathy__item {
    padding: 24px;
    gap: 20px;
    flex-direction: row;
    text-align: left;
  }
}

.p-sympathy__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-sympathy__icon {
    width: 120px;
    height: 120px;
  }
}

.p-sympathy__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-sympathy__text {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  color: #000;
}

@media (min-width: 768px) {
  .p-sympathy__text {
    font-size: 18px;
    line-height: 1.8;
  }
}

@media (min-width: 1024px) {
  .p-sympathy__text {
    font-size: 20px;
    text-align: left;
  }
}

.p-sympathy__conclusion {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

@media (min-width: 768px) {
  .p-sympathy__conclusion {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .p-sympathy__conclusion {
    font-size: 24px;
  }
}

/* ============================================
   Project: YouTube Benefits
   ============================================ */
.p-benefits {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f7 100%);
}

@media (min-width: 768px) {
  .p-benefits {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .p-benefits {
    padding: 120px 0;
  }
}

.p-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .p-benefits__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}

.p-benefits__content {
  order: 1;
}

.p-benefits__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 40px;
}

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

@media (min-width: 1024px) {
  .p-benefits__title {
    font-size: 38px;
  }
}

.p-benefits__highlight {
  color: #0066cc;
}

.p-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

@media (min-width: 768px) {
  .p-benefits__item {
    font-size: 20px;
    gap: 20px;
  }
}

.p-benefits__number {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0066cc;
}

@media (min-width: 768px) {
  .p-benefits__number {
    font-size: 28px;
  }
}

.p-benefits__text {
  flex: 1;
  padding-top: 4px;
}

.p-benefits__note {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .p-benefits__note {
    font-size: 24px;
    line-height: 1.5;
  }
}

.p-benefits__image {
  order: 2;
}

.p-benefits__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Project: Service
   ============================================ */
.p-service {
  padding: 60px 0;
  background-color: #fff;
}

@media (min-width: 768px) {
  .p-service {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .p-service {
    padding: 100px 0;
  }
}

.p-service__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
  color: #000;
}

@media (min-width: 768px) {
  .p-service__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .p-service__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}

.p-service__description {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 32px;
  color: #000;
}

@media (min-width: 768px) {
  .p-service__description {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .p-service__description {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

.p-service__boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .p-service__boxes {
    gap: 30px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .p-service__boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }
}

.p-service__box {
  background-color: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .p-service__box {
    padding: 32px 24px;
  }
}

@media (min-width: 1024px) {
  .p-service__box {
    padding: 32px 28px;
  }
}

.p-service__box--left {
  background-color: #e1f4fc;
}

.p-service__box--right {
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

.p-service__box-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

@media (min-width: 768px) {
  .p-service__box-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .p-service__box-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
}

.p-service__box-text {
  margin-bottom: 24px;
}

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

.p-service__box-item {
  font-size: 14px;
  line-height: 1.8;
  color: #000;
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .p-service__box-item {
    font-size: 15px;
    margin-bottom: 8px;
  }
}

@media (min-width: 1024px) {
  .p-service__box-item {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.p-service__box-item:last-child {
  margin-bottom: 0;
}

.p-service__box-button {
  margin-top: auto;
  padding-top: 24px;
  text-align: center;
}

.p-service__box-button .c-button {
  width: 100%;
  max-width: 280px;
}

@media (min-width: 768px) {
  .p-service__box-button {
    margin-top: 32px;
  }
}

.p-service__box-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #0066cc;
}

.p-service__box--left .p-service__box-item::before {
  background-color: #e8f4fd;
}

/* ========================================
   Reasons Section
   ======================================== */
/* ============================================
   Project: Target
   ============================================ */
.p-target {
  padding: 80px 0;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .p-target {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .p-target {
    padding: 120px 0;
  }
}

.p-target__title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  color: #111;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .p-target__title {
    font-size: 32px;
    margin-bottom: 56px;
  }
}

@media (min-width: 1024px) {
  .p-target__title {
    font-size: 36px;
  }
}

.p-target__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 1024px) {
  .p-target__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ========================================
     Audience Card
     ======================================== */
.c-audience-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.c-audience-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 28px;
}

@media (min-width: 768px) {
  .c-audience-card__header {
    padding: 16px 32px;
  }
}

.c-audience-card--suitable .c-audience-card__header {
  background-color: #dfebf7;
}

.c-audience-card--not-suitable .c-audience-card__header {
  background-color: #e4e5e7;
}

.c-audience-card__header h3 {
  font-size: 18px;
  font-weight: 900;
  color: #111;
}

@media (min-width: 768px) {
  .c-audience-card__header h3 {
    font-size: 28px;
  }
}

.c-audience-card__title-red {
  color: #c94c3a;
}

.c-audience-card__title-blue {
  color: #336995;
}

.c-audience-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ========================================
     Feature Item
     ======================================== */
.c-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
  .c-feature-item {
    padding: 20px 32px;
  }
}

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

.c-feature-item-right {
  padding: 24px 16px;
}

@media (min-width: 768px) {
  .c-feature-item-right {
    padding: 32px 24px;
  }
}

.c-feature-item__check {
  flex-shrink: 0;
  margin-top: 4px;
}

.c-feature-item__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

@media (max-width: 767px) {
  .c-feature-item__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
}

.c-feature-item__icon {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .c-feature-item__icon {
    width: 48px;
    height: 48px;
  }
}

.c-feature-item__content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

@media (min-width: 768px) {
  .c-feature-item__content p {
    font-size: 18px;
    line-height: 1.75;
  }
}

.p-reasons {
  padding: 80px 0;
  background-color: #f8fafc;
}

@media (min-width: 768px) {
  .p-reasons {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .p-reasons {
    padding: 120px 0;
  }
}

.p-reasons__title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  color: #111;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .p-reasons__title {
    font-size: 36px;
    margin-bottom: 72px;
  }
}

.p-reasons__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-reasons__list {
    gap: 28px;
  }
}

/* ========================================
     Reason Card
     ======================================== */
.c-reason-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 0 16px;
}

@media (min-width: 768px) {
  .c-reason-card {
    flex-direction: row;
    gap: 32px;
    padding: 0;
  }
}

.c-reason-card__icon {
  flex-shrink: 0;
  width: calc(100% + 32px);
  height: 120px;
  padding: 24px;
  background-color: #e8f3fc;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-reason-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .c-reason-card__icon {
    width: 120px;
    height: 120px;
    padding: 18px;
    border-radius: 8px;
  }
}

.c-reason-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-reason-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.c-reason-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  margin-top: -8px;
  margin-bottom: 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .c-reason-card__title {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
  }
}

.c-reason-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .c-reason-card__text {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.c-reason-card__list {
  padding-left: 16px;
  margin-bottom: 0;
  color: #555;
}
@media (min-width: 768px) {
  .c-reason-card__list {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.c-reason-card__item {
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  position: relative;
}
.c-reason-card__item::before {
  content: "•";
  position: absolute;
  left: -12px;
  top: 0;
  font-size: 14px;
  color: #555;
}

.c-reason-card__item:last-child {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .c-reason-card__item {
    font-size: 16px;
    margin-bottom: 0;
  }

  .c-reason-card__item::before {
    font-size: 16px;
  }

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

/* ========================================
   Process Section
   ======================================== */
.p-process {
  padding: 80px 0;
  background-color: #e5e7eb;
}

@media (min-width: 768px) {
  .p-process {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .p-process {
    padding: 120px 0;
  }
}

.p-process__header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .p-process__header {
    margin-bottom: 40px;
  }
}

.p-process__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  color: #111;
}

@media (min-width: 768px) {
  .p-process__title {
    font-size: 36px;
  }
}

.p-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .p-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .p-process__steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .p-process__steps {
    gap: 24px;
  }
}

/* ========================================
     Step Card
     ======================================== */
.c-step-card {
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .c-step-card {
    padding: 32px 16px;
  }
}

.c-step-card__icon {
  width: 100px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-step-card__icon {
    width: 140px;
    height: auto;
  }
}

.c-step-card__number {
  font-size: 16px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .c-step-card__number {
    font-size: 20px;
  }
}

.c-step-card__title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  color: #111;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-step-card__title {
    font-size: 20px;
    min-height: 60px;
  }
}

.c-step-card__text {
  font-size: 14px;
  text-align: center;
  flex-grow: 1;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-step-card__text {
    font-size: 14px;
    text-align: left;
  }
}

.c-step-card__badge {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .c-step-card__badge {
    padding: 4px 16px;
    font-size: 16px;
  }
}

.c-step-card__badge--client {
  background-color: #507db6;
  color: #fff;
}

.c-step-card__badge--production {
  background-color: #ea8841;
  color: #fff;
}

.c-step-card__badge--confirm {
  background-color: #eeb729;
  color: #fff;
}

/* ========================================
     CTA Button
     ======================================== */
.c-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(251, 146, 60, 0.4);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .c-cta-button {
    font-size: 18px;
    padding: 22px 48px;
  }
}

.c-cta-button:hover {
  box-shadow: 0 8px 24px rgba(251, 146, 60, 0.5);
  transform: translateY(-2px);
}

.c-cta-button:active {
  transform: translateY(0);
}

/* ========================================
   Banners Section
   ======================================== */
/* ========================================
   FAQ Section
   ======================================== */
.p-faq {
  padding: 80px 0;
  background-color: #f4f8fc;
}

@media (min-width: 768px) {
  .p-faq {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .p-faq {
    padding: 120px 0;
  }
}

.p-faq__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  position: relative;
}

@media (min-width: 768px) {
  .p-faq__header {
    gap: 20px;
    margin-bottom: 20px;
  }
}

.p-faq__header::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  background-color: #e5e7eb;
  margin-top: 16px;
}

.p-faq__icons {
  width: 60px;
  height: auto;
}

@media (min-width: 768px) {
  .p-faq__icons {
    width: 94px;
    height: auto;
  }
}

.p-faq__title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  color: #111;
  margin: 0;
}

@media (min-width: 768px) {
  .p-faq__title {
    font-size: 38px;
  }
}

.p-faq__description {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  color: #555;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .p-faq__description {
    font-size: 16px;
    margin-bottom: 56px;
  }
}

.p-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .p-faq__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
  }
}

/* ========================================
     FAQ Group
     ======================================== */
.c-faq-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .c-faq-group {
    gap: 18px;
  }
}

/* ========================================
     FAQ Item
     ======================================== */
.c-faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .c-faq-item {
    border-radius: 8px;
  }
}

.c-faq-item__button {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  position: relative;
}

@media (min-width: 768px) {
  .c-faq-item__button {
    padding: 20px 24px;
    gap: 14px;
  }
}

.c-faq-item__button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 12px;
  font-size: 24px;
  font-weight: 300;
  color: #5f9ea0;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .c-faq-item__button::after {
    top: 24px;
    right: 24px;
    font-size: 28px;
  }
}

.c-faq-item__button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.c-faq-item__badge {
  flex-shrink: 0;
  background-color: #5f9ea0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 8px 6px 12px;
  border-radius: 6px;
  line-height: 1.4;
  position: relative;
  overflow: visible;
  z-index: 0;
}

.c-faq-item__badge::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 26px;
  height: 26px;
  background-color: #5f9ea0;
  border-radius: 6px;
  z-index: -1;
}

@media (min-width: 768px) {
  .c-faq-item__badge {
    font-size: 16px;
    padding: 7px 6px 7px 13px;
  }

  .c-faq-item__badge::after {
    right: -9px;
    width: 28px;
    height: 28px;
  }
}

.c-faq-item__text {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
  padding-top: 4px;
  padding-right: 30px;
  padding-left: 6px;
}

@media (min-width: 768px) {
  .c-faq-item__text {
    font-size: 16px;
    font-weight: bold;
    padding-right: 40px;
  }
}

.c-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.c-faq-item__answer[aria-hidden="false"] {
  max-height: 1000px;
  padding: 0 20px 18px 20px;
}

@media (min-width: 768px) {
  .c-faq-item__answer {
    padding: 0 24px;
  }

  .c-faq-item__answer[aria-hidden="false"] {
    padding: 0 24px 20px 24px;
  }
}

.c-faq-item__answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .c-faq-item__answer p {
    font-size: 15px;
    line-height: 1.9;
  }
}

.c-faq-item__answer a {
  color: #5f9ea0;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.c-faq-item__answer a:hover {
  opacity: 0.7;
}

/* ========================================
   Contact Section
   ======================================== */
.p-contact {
  padding: 80px 0;
  background-color: #f3f4f6;
}

@media (min-width: 768px) {
  .p-contact {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .p-contact {
    padding: 120px 0;
  }
}

.l-container--narrow {
  max-width: 800px;
}

/* ========================================
     Contact Form
     ======================================== */
.c-contact-form {
  background-color: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.c-form__errors {
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  color: #991b1b;
}

.c-form__errors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-form__errors li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .c-contact-form {
    padding: 48px 40px;
  }
}

/* ========================================
     Form Elements
     ======================================== */
.c-form__group {
  margin-bottom: 24px;
}

.c-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

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

.c-form__required {
  color: #ef4444;
  margin-left: 2px;
}

.c-form__optional {
  color: #6b7280;
  font-size: 0.9em;
  font-weight: 400;
  margin-left: 4px;
}

.c-form__input-wrapper,
.c-form__select-wrapper,
.c-form__textarea-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.c-form__icon {
  position: absolute;
  left: 16px;
  pointer-events: none;
  z-index: 1;
}

.c-form__icon--textarea {
  top: 16px;
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  width: 100%;
  padding: 14px 16px 14px 48px;
  font-size: 15px;
  line-height: 1.6;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .c-form__input,
  .c-form__select,
  .c-form__textarea {
    font-size: 16px;
    padding: 16px 18px 16px 50px;
  }
}

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

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

.c-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.c-form__textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.c-form__counter {
  text-align: right;
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

/* ========================================
     Checkbox
     ======================================== */
.c-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.c-form__checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.c-form__checkbox:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.c-form__checkbox-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.c-form__checkbox-text small {
  font-size: 12px;
  color: #6b7280;
  display: block;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .c-form__checkbox-text {
    font-size: 15px;
  }

  .c-form__checkbox-text small {
    font-size: 13px;
  }
}

/* ========================================
     Submit Button
     ======================================== */
.c-form__submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  margin-top: 12px;
}

@media (min-width: 768px) {
  .c-form__submit {
    font-size: 18px;
    padding: 18px 40px;
  }
}

.c-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.c-form__submit:active {
  transform: translateY(0);
}

/* ========================================
   Finish Page
   ======================================== */
.p-finish {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.p-finish__content {
  background-color: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-finish__content {
    padding: 64px 48px;
  }
}

.p-finish__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .p-finish__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

.p-finish__text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .p-finish__text {
    font-size: 16px;
    margin-bottom: 48px;
  }
}

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

.p-finish__action .c-form__submit {
  width: auto;
  min-width: 200px;
  margin-top: 0;
  text-decoration: none;
  display: inline-block;
}

/* ========================================
     Terms
     ======================================== */
.p-terms {
  min-height: 100vh;
  padding: 0 20px 80px;
}

@media (min-width: 768px) {
  .p-terms {
    padding: 0 20px 100px;
  }
}

.p-terms__content {
  background-color: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 840px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-terms__content {
    padding: 64px 48px;
  }
}

.p-terms__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .p-terms__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.p-terms__section {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .p-terms__section {
    margin-bottom: 48px;
  }
}

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

.p-terms__term {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 16px 0 8px;
  border-bottom: 1px solid #e5e7eb;
  margin: 0;
}

.p-terms__term:nth-last-child(2) {
  border-bottom: none;
}

@media (min-width: 768px) {
  .p-terms__list {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
  }

  .p-terms__term {
    font-size: 15px;
    padding: 20px 24px 20px 0;
    border-bottom: 1px solid #e5e7eb;
    border-right: none;
  }

  .p-terms__term:nth-last-child(2) {
    border-bottom: none;
  }
}

.p-terms__description {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  padding: 0 0 16px;
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .p-terms__description {
    font-size: 15px;
    padding: 20px 0;
    margin: 0;
    border-bottom: 1px solid #e5e7eb;
  }

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

.p-terms__sub-item {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

@media (min-width: 768px) {
  .p-terms__sub-item {
    font-size: 15px;
    margin: 0 0 16px;
  }
}

.p-terms__sub-item:last-child {
  margin-bottom: 0;
}

.p-terms__sub-item strong {
  font-weight: 600;
  color: #333;
}

.p-terms__action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .p-terms__action {
    margin-top: 48px;
    padding-top: 40px;
  }
}

.p-terms__action .c-form__submit {
  width: auto;
  min-width: 200px;
  margin-top: 0;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

/* ========================================
     Contact Info
     ======================================== */

/* ========================================
   Footer
   ======================================== */
/* ========================================
   Mobile Fixed Button
   ======================================== */
.p-mobile-fixed-button {
  display: none;
}

@media (max-width: 768px) {
  .p-mobile-fixed-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000;
    padding: 12px 16px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    display: flex !important;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }

  .p-mobile-fixed-button.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  .p-mobile-fixed-button .c-button {
    width: auto;
    max-width: 320px;
    padding: 8px 40px;
    font-size: 14px;
    border-radius: 50px;
  }
}

/* ================================================
   追従バナー
   ================================================ */
.p-fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.3s ease, position 0.3s ease, top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.p-fixed-banner.p-fixed-banner--at-footer {
  position: absolute;
  bottom: auto;
  top: auto;
}

.p-fixed-banner.p-fixed-banner--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-fixed-banner__link {
  position: relative;
  display: inline-block;
  text-align: center;
}

.p-fixed-banner__close {
  position: absolute;
  top: -30px;
  right: -30px;
  background: rgba(0, 0, 0, 1);
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 0.2s ease;
}

.p-fixed-banner__close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.p-fixed-banner__image {
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .p-fixed-banner.p-fixed-banner--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .p-fixed-banner__image {
    max-width: 90%;
    max-height: 80px;
  }
  
  .p-fixed-banner__close {
    width: 30px;
    height: 30px;
    font-size: 16px;
    top: -10px;
    right: 0px;
    border-radius: 50%;
  }
}

/* ================================================
   クーポンページ用スタイル
   ================================================ */
.p-coupon-hero {
  padding: 80px 20px 40px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.p-coupon-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.p-coupon-hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.p-coupon-hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.p-coupon-form {
  padding: 60px 20px;
}

.c-coupon-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .p-coupon-hero {
    padding: 60px 20px 30px;
  }
  
  .p-coupon-hero__title {
    font-size: 2rem;
  }
  
  .p-coupon-hero__subtitle {
    font-size: 1.1rem;
  }
  
  .c-coupon-form {
    padding: 30px 20px;
  }
}
