@charset "UTF-8";

/* ==================================================
  Variables
================================================== */
:root {
  /* Colors */
  --color-main-red: #a31d24;
  --color-main-blue: #0a3264;
  --color-accent-gold: #c5a059;
  --color-text: #111827;
  --color-white: #ffffff;
  --color-bg-gray1: #f1f3f5;
  --color-bg-gray2: #f9fafb;
  --color-border1: #e5e7eb;
  --color-border2: #f3f4f6;

  /* Layout */
  --content-width: 1200px;

  /* Fonts */
  --font-base: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-en: "Montserrat", sans-serif;
}

/* ==================================================
  Base
================================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  font-size: 16px;
}

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

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

/* ==================================================
  Layout
================================================== */
.l-inner {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* ==================================================
   Utility
================================================== */
@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none !important;
  }
}

/* ==================================================
  Components
================================================== */
.c-button-red {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-main-red);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.3s ease;
}
.c-button-red:hover {
  opacity: 0.8;
}

/* ==================================================
  Header & Navigation
================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 200;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.l-header__logo {
  width: 240px;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}
.l-header__logo a {
  display: block;
  width: 100%;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.c-button-red--header {
  font-size: 14px;
  padding: 12px 32px;
}

/* --- humburger --- */
.l-header__hamburger {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 210;
}

.l-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.l-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 12px 16px;
  }
  .l-header__logo {
    width: 200px;
  }
}

/* ==================================================
  Global Navigation
================================================== */
.p-global-nav {
  position: sticky;
  top: 76px;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border1);
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.p-global-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  margin: 0;
  list-style: none;
}

.p-global-nav__list a {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.p-global-nav__list a:hover,
.p-global-nav__list a.is-active {
  color: var(--color-main-blue);
}

.p-global-nav__list a.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-main-blue);
}

@media screen and (max-width: 1024px) {
  .p-global-nav__list {
    gap: 16px;
  }
  .p-global-nav__list a {
    font-size: 13px;
  }
}

/* ==================================================
  Drawer Navigation
================================================== */
.p-drawer-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 150;
  padding-top: 68px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
}

.p-drawer-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.p-drawer-nav__inner {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.p-drawer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.p-drawer-nav__list li {
  border-bottom: 1px solid var(--color-border1);
}

.p-drawer-nav__list a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.p-drawer-nav__action {
  width: 100%;
  max-width: 300px;
}
.p-drawer-nav__action .c-button-red {
  width: 100%;
  padding: 16px;
}

/* ==================================================
  First View
================================================== */
.p-fv {
  background-color: var(--color-main-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
  background-repeat: repeat;
  color: var(--color-white);
  overflow: hidden;
  margin-top: 76px;
}

.p-fv__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 0;
}

.p-fv__content {
  padding-bottom: 80px;
}

.p-fv__catch-sub {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 16px;
}

.p-fv__catch-main {
  font-family: var(--font-serif);
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
}

.p-fv__catch-box {
  background-color: var(--color-white);
  color: var(--color-main-blue);
  font-size: 48px;
  font-weight: 700;
  padding: 8px 24px;
  line-height: 1.2;
}

.p-fv__catch-suffix {
  font-size: 28px;
  font-weight: 400;
  margin-left: 16px;
  padding-bottom: 0;
  line-height: 1;
}

.p-fv__desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 56px;
}

.c-button-red--fv {
  font-size: 18px;
  padding: 16px 64px;
  flex-shrink: 0;
}

.p-fv__img {
  width: 42%;
  max-width: 480px;
  display: flex;
  align-items: flex-end;
}
.p-fv__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive --- */
@media screen and (max-width: 960px) {
  .p-fv__inner {
    flex-direction: column;
    padding-top: 56px;
    align-items: center;
  }

  .p-fv__content {
    padding-bottom: 40px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .p-fv__catch-sub,
  .p-fv__desc {
    text-align: left;
  }

  .p-fv__catch-main {
    justify-content: flex-start;
  }

  .c-button-red--fv {
    width: 100%;
    padding: 16px;
    text-align: center;
  }

  .p-fv__img {
    width: 80%;
    max-width: 540px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .p-fv {
    margin-top: 68px;
    background-size: 42px 42px;
  }

  .p-fv__inner {
    padding-top: 40px;
  }

  .p-fv__heading {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .p-fv__catch-sub {
    font-size: 24px;
  }

  .p-fv__catch-main {
    flex-wrap: wrap;
  }

  .p-fv__catch-box {
    font-size: 32px;
    padding: 8px 16px;
    margin-bottom: 0;
  }

  .p-fv__catch-suffix {
    font-size: 22px;
    margin-left: 12px;
  }

  .p-fv__desc {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .c-button-red--fv {
    font-size: 16px;
    margin-top: 0;
  }

  .p-fv__img {
    width: 90%;
    max-width: 400px;
  }
}

@media screen and (max-width: 375px) {
  .p-fv__catch-sub {
    font-size: 18px;
  }

  .p-fv__catch-box {
    font-size: 26px;
    padding: 6px 12px;
  }

  .p-fv__catch-suffix {
    font-size: 16px;
    margin-left: 8px;
  }
}

/* ==================================================
  Section Component
================================================== */
.l-section {
  padding: 100px 0;
  background-position: center top;
  background-repeat: repeat;
  background-size: 56px 56px;
  width: 100%;
}

.l-section--gray {
  background-color: var(--color-bg-gray1);
  background-image:
    linear-gradient(rgba(10, 50, 100, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 50, 100, 0.04) 1px, transparent 1px);
}

.l-section--blue {
  background-color: var(--color-main-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
}

.l-section--red {
  background-color: var(--color-main-red);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
}

.p-section-title {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-section-title__tag {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-accent-gold);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.p-section-title__tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--color-accent-gold);
}

.p-section-title__main {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.p-section-title__lead {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.l-section--gray .p-section-title__main {
  color: var(--color-main-blue);
}
.l-section--gray .p-section-title__lead {
  color: var(--color-text);
}
.l-section--gray .u-text-highlight {
  color: var(--color-main-red);
  font-weight: 700;
}

.l-section--blue .p-section-title__main,
.l-section--red .p-section-title__main,
.l-section--blue .p-section-title__lead,
.l-section--red .p-section-title__lead {
  color: var(--color-white);
}
.l-section--blue .u-text-highlight,
.l-section--red .u-text-highlight {
  color: var(--color-accent-gold);
  font-weight: 700;
}

.p-section-action {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-section-action__tag {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

.l-section--blue .p-section-action__tag,
.l-section--red .p-section-action__tag {
  color: var(--color-white);
}

.p-section-action .c-button-red {
  font-size: 18px;
  padding: 16px 64px;
}

.l-section--red .c-button-red {
  background-color: var(--color-white);
  color: var(--color-main-red);
}

@media screen and (max-width: 960px) {
  .l-section {
    padding: 80px 0;
  }
}

@media screen and (max-width: 768px) {
  .l-section {
    padding: 60px 0;
    background-size: 42px 42px;
  }

  .p-section-title {
    margin-bottom: 40px;
  }

  .p-section-title__main {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .p-section-title__lead {
    font-size: 14px;
    text-align: left;
  }

  .p-section-action {
    margin-top: 40px;
    width: 100%;
  }

  .p-section-action__tag {
    font-size: 14px;
  }

  .p-section-action .c-button-red {
    width: 100%;
    max-width: 343px;
    font-size: 16px;
    padding: 16px;
  }
}

/* ==================================================
  Problem
================================================== */
.p-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-problem-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border1);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-problem-card__icon {
  width: 72px;
  flex-shrink: 0;
}
.p-problem-card__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.p-problem-card__body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.p-problem-card__check {
  width: 18px;
  height: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.p-problem-card__text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.p-solution-box {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border1);
  padding: 60px 40px 48px;
  margin-top: 80px;
  text-align: center;
}

.p-solution-box__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-main-blue);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 16px;
}

.p-solution-box__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-main-blue);
  margin-bottom: 24px;
}

.p-solution-box__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto 32px;
}

.p-solution-box__desc .u-text-red {
  color: var(--color-main-red);
  font-weight: 700;
}

.p-solution-box__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-solution-box__badge {
  background-color: var(--color-bg-gray2);
  border: 1px solid var(--color-border2);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  flex: 1;
  max-width: 280px;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .p-problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-problem-card {
    padding: 16px;
    gap: 16px;
  }

  .p-problem-card__icon {
    width: 60px;
  }

  .p-problem-card__text {
    font-size: 14px;
  }

  .p-solution-box {
    padding: 48px 16px 32px;
    margin-top: 60px;
  }

  .p-solution-box__title {
    font-size: 20px;
    line-height: 1.5;
  }

  .p-solution-box__desc {
    font-size: 14px;
    text-align: left;
  }

  .p-solution-box__badges {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .p-solution-box__badge {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
  }
}

.p-about-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-border1);
  padding: 40px;
  margin: 0 auto;
  text-align: left;
}

.p-about-box__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main-blue);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 24px;
}

.p-about-box__badge {
  background-color: var(--color-main-blue);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  line-height: 1;
}

.p-about-box__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 24px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border1);
  border-bottom: 1px solid var(--color-border1);
}

.p-about-box__text .u-text-red {
  color: var(--color-main-red);
  font-weight: 700;
}

.p-about-box__sub-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  opacity: 0.7;
  margin: 0;
}

.p-service-diagram {
  margin-top: 40px;
  text-align: center;
}
.p-service-diagram img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .p-about-box {
    padding: 24px 16px;
  }

  .p-about-box__title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .p-about-box__text {
    font-size: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .p-about-box__sub-text {
    font-size: 13px;
  }

  .p-service-diagram {
    margin-top: 24px;
  }
}

/* ==================================================
  Features
================================================== */
.p-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-features-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border1);
  border-top: 4px solid var(--color-accent-gold);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.p-features-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.p-features-card__num {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent-gold);
  line-height: 1;
}

.p-features-card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main-blue);
  margin: 0;
  line-height: 1.4;
}

.p-features-card__sub {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main-blue);
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.4;
}

.p-features-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 24px;
}

.p-features-card__bottom {
  margin-top: auto;
  border-top: 1px solid var(--color-border1);
  padding-top: 24px;
}

.p-features-card__badge {
  background-color: var(--color-bg-gray2);
  border: 1px solid var(--color-border2);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
  line-height: 1;
}

.p-features-card__bottom-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.4;
}

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

.p-features-card__list li {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 4px;
}
.p-features-card__list li:last-child {
  margin-bottom: 0;
}

/* --- Responsive --- */
@media screen and (max-width: 960px) {
  .p-features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-features-card {
    padding: 24px 16px;
  }

  .p-features-card__header {
    margin-bottom: 16px;
  }

  .p-features-card__desc {
    margin-bottom: 20px;
  }

  .p-features-card__bottom {
    padding-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-features-grid {
    gap: 24px;
  }
}

/* ==================================================
  Talent
================================================== */
.p-talent-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-talent-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border1);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

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

.p-talent-card__img {
  width: 240px;
  flex-shrink: 0;
}
.p-talent-card__img img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--color-border1);
}

.p-talent-card__body {
  flex: 1;
  text-align: left;
}

.p-talent-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main-blue);
  display: block;
  border-bottom: 1px solid var(--color-border1);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.p-talent-card__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main-blue);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 16px;
}

.p-talent-card__text {
  font-size: 15px;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 24px;
}

.p-talent-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-talent-card__tags li {
  background-color: var(--color-bg-gray2);
  border: 1px solid var(--color-border2);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 2px;
  line-height: 1;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .p-talent-list {
    gap: 24px;
  }

  .p-talent-card,
  .p-talent-card:nth-child(even) {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }

  .p-talent-card__img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .p-talent-card__img img {
    width: 70%;
    margin: 0 auto;
  }

  .p-talent-card__name {
    text-align: center;
    margin-bottom: 16px;
  }

  .p-talent-card__title {
    font-size: 15px;
  }

  .p-talent-card__text {
    font-size: 14px;
  }

  .p-talent-card__tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .p-talent-card__tags li {
    text-align: center;
    padding: 8px;
  }
}

/* ==================================================
  Flow
================================================== */
.p-section-title__lead strong {
  font-weight: 700;
  display: block;
  margin-top: 4px;
}
.p-section-title__lead .p-section-title__note {
  font-size: 13px;
  opacity: 0.6;
  display: block;
  margin-top: 8px;
}

.p-flow-container {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.p-flow-process {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.p-flow-group {
  background-color: var(--color-white);
  border: 1px solid var(--color-border1);
  padding: 40px 24px 24px;
  position: relative;
}

.p-flow-group__label {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px;
  padding: 8px 0;
  width: 160px;
  text-align: center;
}
.p-flow-group__label--blue {
  background-color: var(--color-main-blue);
}
.p-flow-group__label--red {
  background-color: var(--color-main-red);
}

.p-flow-step-grid {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-flow-step-grid--2cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-flow-step-grid--4cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.p-flow-step {
  background-color: var(--color-bg-gray2);
  border: 1px solid var(--color-border2);
  padding: 16px;
  text-align: left;
}

.p-flow-group__label--blue + .p-flow-step-grid .p-flow-step__num {
  color: var(--color-main-blue);
}
.p-flow-group__label--red + .p-flow-step-grid .p-flow-step__num {
  color: var(--color-main-red);
}

.p-flow-step__num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}

.p-flow-step__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}

.p-flow-arrow {
  width: 32px;
  height: 32px;
  background-color: var(--color-accent-gold);
  clip-path: polygon(0% 30%, 55% 30%, 55% 0%, 100% 50%, 55% 100%, 55% 70%, 0% 70%);
  flex-shrink: 0;
  align-self: center;
}

.p-flow-goal {
  background-color: var(--color-white);
  border: 1px solid var(--color-border1);
  border-top: 4px solid var(--color-accent-gold);
  padding: 32px 24px;
  width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.p-flow-goal__tag {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent-gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.p-flow-goal__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main-blue);
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.4;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border1);
  width: 100%;
}

.p-flow-goal__desc {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 24px;
}

.p-flow-goal__img {
  width: 100%;
  max-width: 180px;
  margin-top: auto;
}
.p-flow-goal__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive --- */
@media screen and (max-width: 960px) {
  .p-flow-container {
    flex-direction: column;
    gap: 0;
  }

  .p-flow-process {
    width: 100%;
    gap: 32px;
  }

  .p-flow-arrow {
    transform: rotate(90deg);
    margin: 24px auto;
  }

  .p-flow-goal {
    width: 100%;
    padding: 32px 24px;
  }
}

@media screen and (max-width: 768px) {
  .p-flow-group {
    padding: 32px 16px 16px;
  }

  .p-flow-group__label {
    left: 16px;
  }

  .p-flow-step-grid--2cols,
  .p-flow-step-grid--4cols {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .p-flow-step {
    padding: 12px 16px;
  }

  .p-flow-goal {
    padding: 32px 16px;
  }
}

/* ==================================================
  FAQ
================================================== */
.l-section--white {
  background-color: var(--color-white);
  background-image:
    linear-gradient(rgba(10, 50, 100, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 50, 100, 0.02) 1px, transparent 1px);
}
.l-section--white .p-section-title__main {
  color: var(--color-main-blue);
}
.l-section--white .p-section-title__lead {
  color: var(--color-text);
}

.p-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.p-faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border1);
  width: 100%;
  text-align: left;
}

.p-faq-item__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}
.p-faq-item__summary::-webkit-details-marker {
  display: none;
}

.p-faq-item__q-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 24px;
}

.p-faq-item__q-letter {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main-blue);
  line-height: 1;
}

.p-faq-item__question-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.p-faq-item__summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.3;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

.p-faq-item[open] .p-faq-item__summary::after {
  content: "\2212";
  font-size: 18px;
}

.p-faq-item__answer {
  padding: 0 24px 24px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.p-faq-item__a-letter {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main-red);
  line-height: 1;
  margin-top: 2px;
}

.p-faq-item__answer-body {
  flex: 1;
}
.p-faq-item__answer-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 4px 0;
}
.p-faq-item__answer-body p:last-child {
  margin-bottom: 0;
}

/* ---Responsive --- */
@media screen and (max-width: 768px) {
  .p-faq-item__summary {
    padding: 20px 16px;
  }

  .p-faq-item__q-box {
    align-items: flex-start;
    gap: 12px;
    padding-right: 12px;
  }

  .p-faq-item__question-text {
    font-size: 15px;
    margin-top: 2px;
  }

  .p-faq-item__answer {
    padding: 0 16px 20px 16px;
    gap: 12px;
  }

  .p-faq-item__answer-body p {
    font-size: 14px;
  }
}

/* ==================================================
  Company
================================================== */
.l-section--gray2 {
  background-color: var(--color-bg-gray2);
  background-image:
    linear-gradient(rgba(10, 50, 100, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 50, 100, 0.02) 1px, transparent 1px);
}
.l-section--gray2 .p-section-title__main {
  color: var(--color-main-blue);
}
.l-section--gray2 .p-section-title__lead {
  color: var(--color-text);
}

.p-company-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border1);
  padding: 48px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  text-align: left;
}

.p-company-card__info {
  flex: 1;
}

.p-company-card__logo {
  width: 280px;
  margin-bottom: 24px;
}
.p-company-card__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.p-company-card__details {
  margin-bottom: 24px;
}
.p-company-card__details p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 2px 0;
}
.p-company-card__details p:last-child {
  margin-bottom: 0;
}

.p-company-card__desc {
  border-top: 1px solid var(--color-border1);
  padding-top: 24px;
}
.p-company-card__desc p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.p-company-card__img {
  width: 42%;
  flex-shrink: 0;
}
.p-company-card__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .p-company-card {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px;
  }

  .p-company-card__logo {
    width: 220px;
    margin-bottom: 20px;
  }

  .p-company-card__desc {
    padding-top: 20px;
  }

  .p-company-card__desc p {
    font-size: 14px;
  }

  .p-company-card__img {
    width: 100%;
  }
}

/* ==================================================
  Footer
================================================== */
.l-footer {
  background-color: var(--color-bg-gray1);
  padding: 40px 0;
  width: 100%;
}

.l-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.l-footer__logo {
  width: 240px;
}
.l-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.l-footer__copyright {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin: 0;
  opacity: 0.7;
  line-height: 1;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .l-footer__content {
    gap: 16px;
  }

  .l-footer__logo {
    width: 200px;
  }

  .l-footer__copyright {
    font-size: 10px;
  }
}

/* ==================================================
    Floating Button
  ================================================== */
.p-floating-section {
  display: block;
  width: 100%;
  background-color: var(--color-white);
  height: 80px;
  position: relative;
}

.p-floating-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  z-index: 90;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
}

.p-floating-btn .c-button-red {
  display: block;
  width: 100%;
  max-width: 343px;
  text-align: center;
  padding: 16px;
  font-size: 16px;
  box-sizing: border-box;
}

.p-floating-btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p-floating-btn.is-footer {
  position: absolute;
  bottom: 0;
  transform: translateY(0);
}
