/* =========================================
   Foundation - Variables
   ========================================= */
:root {
  /* Breakpoint */
  --bp: 768px;

  /* Container */
  --container-pc: 1440px;
  --container-sp-padding: 24px;

  /* --- Colors --- */
  --color-brown: #6e5d49;
  --color-orange: #f67511;
  --color-white: #ffffff;
  --color-cream: #ffffea;
  --color-beige: #f2e1cf;

  /* --- Effects --- */
  --box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.149);
  --gradation-orange: linear-gradient(90deg, #F46D05 0%, #FF994A 100%);

  /* --- Font Families --- */
  --font-family-base: "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --font-family-number: "Helvetica Neue", sans-serif;

  /* --- Font Sizes --- */
  --font-size-x-small: 13px;    /* x-small */
  --font-size-small: 15px;      /* small */
  --font-size-p: 16px;          /* p, p_bold */
  --font-size-medium: 18px;     /* medium, medium_bold */
  --font-size-h3: 20px;         /* h3 */
  --font-size-large: 22px;      /* large_bold */
  --font-size-semi-large: 28px; /* semi-large */
  --font-size-number-s: 30px;   /* number-s */
  --font-size-x-large: 36px;    /* x-large_bold */
  --font-size-h2: 40px;         /* h2, number */

  /* --- Font Weights --- */
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* --- Line Heights --- */
  --line-height-1: 1;     /* number (40px), number-s (30px) */
  --line-height-1-33: 1.33; /* medium (18px) ← 24px ÷ 18px */
  --line-height-1-35: 1.35; /* medium_bold (18px) */
  --line-height-1-4: 1.4;   /* large_bold (22px), semi-large (28px) */
  --line-height-1-5: 1.5;   /* h2 (40px), p / p_bold (16px) ← 24px ÷ 16px */
  --line-height-1-54: 1.54; /* x-small (13px) ← 20px ÷ 13px */
  --line-height-1-6: 1.6;   /* small (15px) ← 24px ÷ 15px */
  --line-height-1-7: 1.7;   /* x-large_bold (36px) */
  --line-height-1-75: 1.75; /* h3 (20px) */

  /* --- Letter Spacing --- */
  --letter-spacing-base: -0.3125px;  /* YuGothic 全スタイル共通 */
  --letter-spacing-number: 0;        /* Helvetica Neue 系 */

  /* --- Spacing --- */
  --spacing-0: 0;
  --spacing-2: 2px;
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-64: 64px;
  --spacing-80: 80px;
  --spacing-100: 100px;
}


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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-family-base);
  line-height: var(--line-height-1-5);
  color: var(--color-brown);
  letter-spacing: var(--letter-spacing-base);
}

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

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

ul,
ol {
  list-style: none;
}


/* =========================================
   Layout
   ========================================= */


/* =========================================
   Object - Component (c-)
   ========================================= */

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.c-btn:hover {
  opacity: 0.85;
}

.c-btn--primary {
  background: var(--gradation-orange);
  color: var(--color-white);
}


/* =========================================
   Object - Project (p-)
   ========================================= */

/* ----- p-header ----- */

.p-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: var(--color-white);
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.p-header--hidden {
  transform: translateY(-100%);
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-pc);
  margin: 0 auto;
  padding: 0 var(--spacing-40);
}

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

.p-header__nav {
  flex: 1;
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  gap: 3vw;
  justify-content: flex-end;
  margin-right: 5%;
}

.p-header__nav-link {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-1-33);
  letter-spacing: var(--letter-spacing-base);
  color: var(--color-brown);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.p-header__nav-link:hover {
  color: var(--color-orange);
}

.p-header__cta {
  font-size: var(--font-size-medium);
  line-height: var(--line-height-1-4);
  padding: var(--spacing-8) var(--spacing-40);
  flex-shrink: 0;
}

.p-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.p-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

@media (max-width: 1100px) {
  .p-header {
    height: 52px;
  }

  .p-header__inner {
    padding: 0 var(--container-sp-padding);
  }

  .p-header__logo img {
    width: 120px;
  }

  .p-header__nav {
    display: none;
  }

  .p-header__cta {
    display: none;
  }

  .p-header__hamburger {
    display: flex;
  }
}

/* ----- p-drawer ----- */

.p-drawer {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  /* 閉じるとき: スライドアウト後に visibility を hidden にする */
  transition: transform 0.35s ease, visibility 0s linear 0.35s;
}

.p-drawer--open {
  transform: translateX(0);
  visibility: visible;
  /* 開くとき: visibility を即座に visible にしてからスライドイン */
  transition: transform 0.35s ease, visibility 0s linear 0s;
}

.p-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 53px;
  padding: 0 var(--spacing-16);
  flex-shrink: 0;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
}

.p-drawer__logo img {
  width: 120px;
  height: auto;
}

.p-drawer__close {
  position: relative;
  width: 18px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.p-drawer__close::before,
.p-drawer__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-brown);
  border-radius: 2px;
}

.p-drawer__close::before {
  transform: translateY(-50%) rotate(45deg);
}

.p-drawer__close::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-drawer__body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-100);
  padding: var(--spacing-100) 50px;
}

.p-drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-24);
}

.p-drawer__nav-item:not(:last-child) {
  padding-bottom: var(--spacing-24);
  border-bottom: 1px solid var(--color-beige);
}

.p-drawer__nav-link {
  display: block;
  text-align: right;
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-35);
  letter-spacing: var(--letter-spacing-base);
  color: var(--color-brown);
  transition: color 0.2s ease;
}

.p-drawer__nav-link:hover {
  color: var(--color-orange);
}

.p-drawer__cta {
  display: block;
  width: 100%;
  font-size: 26px;
  line-height: var(--line-height-1-5);
  padding: var(--spacing-16) var(--spacing-8);
  text-align: center;
}

/* ----- p-hero ----- */

.p-hero__pc {
  position: relative;
  aspect-ratio: 1440 / 550;
  overflow: hidden;
}

.p-hero__pc-bg {
  position: absolute;
  left: 4.7%;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.p-hero__pc-bg img {
  width: 100%;
  height: 110.43%;
  object-fit: cover;
  object-position: top left;
}

.p-hero__pc-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 12.5%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.p-hero__pc-main {
  position: absolute;
  left: 18.45%;
  top: 12.13%;
  width: 39.95%;
  height: auto;
}

.p-hero__pc-phone {
  position: absolute;
  left: 60.88%;
  top: 8.98%;
  width: 34.62%;
  height: auto;
}

.p-hero__pc-medals {
  position: absolute;
  left: 18.45%;
  top: 73.39%;
  width: 18.39%;
  height: auto;
}

.p-hero__pc-cta {
  position: absolute;
  left: 38.04%;
  top: 78.11%;
  width: 24.04%;
  font-size: 2vw;
  line-height: var(--line-height-1-7);
  padding: 1% var(--spacing-8);
}

.p-hero__sp {
  display: none;
}

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

  .p-hero__sp {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 340px 10px 10px;
    min-height: 757px;
    overflow: hidden;
  }

  .p-hero__sp-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .p-hero__sp-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 53.8%;
    object-fit: cover;
    object-position: top;
  }

  .p-hero__sp-visual {
    position: absolute;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    max-width: 400px;
    height: auto;
    z-index: 1;
  }

  .p-hero__sp-medals {
    position: absolute;
    left: 52.27%;
    top: 251px;
    width: 43.64%;
    max-width: 192px;
    height: auto;
    z-index: 2;
  }

  .p-hero__sp-main {
    width: 100%;
    max-width: 384px;
    height: auto;
    position: relative;
    z-index: 4;
  }

  .p-hero__sp-cta {
    display: block;
    width: 100%;
    max-width: 400px;
    font-size: 26px;
    line-height: var(--line-height-1-5);
    padding: var(--spacing-16) var(--spacing-8);
    position: relative;
    z-index: 3;
  }
}


/* ----- p-problems ----- */

.p-problems {
  position: relative;
  padding: var(--spacing-80) var(--spacing-24) var(--spacing-12);
  overflow: hidden;
}

.p-problems__bg-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.p-problems__bg-texture img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.2;
}

.p-problems__bg-photo {
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 778px;
  pointer-events: none;
}

.p-problems__bg-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: bottom;
  opacity: 0.6;
}

.p-problems__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-32);
  max-width: 1000px;
  margin: 0 auto;
}

.p-problems__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-16);
  text-align: center;
  width: 100%;
}

.p-problems__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-5);
  color: var(--color-brown);
}

.p-problems__subtitle {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-4);
  color: var(--color-brown);
}

.p-problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-24);
  width: 100%;
}

.p-problems__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-12);
  height: 160px;
  padding: 24px 15px;
  background: linear-gradient(to bottom, #ffffff 0%, #efefef 100%);
  border-radius: 8px;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
}

.p-problems__card-icon {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
}

.p-problems__card-text {
  font-size: min(1.6vw, var(--font-size-medium));
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-35);
  text-align: center;
  color: var(--color-brown);
}

.p-problems__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-24);
  width: 100%;
}

.p-problems__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-8) var(--spacing-24);
  background: linear-gradient(to top, #F46D05, #FF994A);
  width: 100%;
}

.p-problems__banner-text {
  font-size: min(3vw, var(--font-size-x-large));
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-7);
  color: var(--color-white);
  text-align: center;
}

.p-problems__man {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

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

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

.p-problems__arrows img {
  width: 455px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 455 / 39;
}

@media (max-width: 768px) {
  .p-problems {
    padding: var(--spacing-40) var(--spacing-24) var(--spacing-12);
  }

  .p-problems__bg-photo {
    display: none;
  }

  .p-problems__title {
    font-size: 24px;
  }

  .p-problems__subtitle {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
  }

  .p-problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-problems__card {
    padding: 24px 2px;
    justify-content: flex-start;
    gap: var(--spacing-24);
  }

  .p-problems__card-icon {
    width: 35px;
    max-height: 35px;
  }

  .p-problems__card-text {
    font-size: var(--font-size-p);
  }

  .p-problems__bottom {
    gap: var(--spacing-16);
  }

  .p-problems__banner-text {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
  }

  .p-problems__arrows img {
    width: 330px;
  }
}


/* ----- p-about ----- */

.p-about {
  position: relative;
  background: var(--color-cream);
  padding: var(--spacing-100) 0;
  overflow: hidden;
}

.p-about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.p-about__bg-bl {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.p-about__bg-bl img {
  position: absolute;
  width: 20.46%;
  height: 63.91%;
  left: -13.7%;
  top: 47.9%;
  max-width: none;
  object-fit: cover;
}

.p-about__bg-manga-left,
.p-about__bg-manga-right {
  position: absolute;
  top: 0;
  width: 21%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-about__bg-manga-left {
  left: calc(-30px - 1vw);
}

.p-about__bg-manga-right {
  right: calc(-30px - 1vw);
}

@media (max-width: 1460px) {
  .p-about__bg-manga-left,
  .p-about__bg-manga-right {
    display: none;
  }
}

.p-about__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.p-about__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-about__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-24);
  height: 115px;
  width: 100%;
}

.p-about__logo {
  width: 109px;
  height: 115px;
  object-fit: contain;
  flex-shrink: 0;
}

.p-about__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-about__title {
  font-size: 0;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  white-space: nowrap;
}

.p-about__title-main {
  font-size: 60px;
  line-height: var(--line-height-1-5);
  color: var(--color-orange);
}

.p-about__title-sub {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-1-5);
  color: var(--color-brown);
}

.p-about__underline {
  width: 336px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 336 / 3;
}

.p-about__lead {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-75);
  text-align: center;
  color: var(--color-brown);
  padding: var(--spacing-16) 0;
}

.p-about__lead-orange {
  color: var(--color-orange);
}

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

.p-about__comparison-img {
  display: block;
  flex: 1;
  width: 0;
  height: auto;
}

.p-about__comparison-arrow {
  display: block;
  flex-shrink: 0;
  width: 48px;
  height: auto;
}

@media (max-width: 768px) {
  .p-about__comparison {
    flex-direction: column;
    gap: 0;
  }

  .p-about__comparison-img {
    width: 100%;
    flex: none;
  }

  .p-about__comparison-arrow {
    transform: rotate(90deg);
    align-self: center;
  }
}

@media (max-width: 768px) {
  .p-about {
    padding: var(--spacing-40) 0;
  }

  .p-about__bg {
    display: none;
  }

  .p-about__inner {
    gap: var(--spacing-16);
    padding: 0 var(--spacing-16);
  }

  .p-about__heading {
    flex-direction: column;
    gap: var(--spacing-4);
    height: auto;
  }

  .p-about__logo {
    width: 116px;
    height: 122px;
  }

  .p-about__title-main,
  .p-about__title-sub {
    font-size: 26px;
  }

  .p-about__underline {
    width: 174px;
  }

  .p-about__lead {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
  }

}


/* ----- p-manga ----- */

.p-manga {
  position: relative;
  background: var(--color-cream);
  padding: var(--spacing-80) var(--spacing-24);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p-manga__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.p-manga__bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.2;
}

.p-manga__flyer {
  position: relative;
  width: 855px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .p-manga {
    padding: var(--spacing-40) var(--spacing-24);
  }

  .p-manga__flyer {
    width: 100%;
    aspect-ratio: 1055 / 1491;
  }
}


/* ----- p-reason ----- */

.p-reason {
  position: relative;
  background-color: var(--color-white);
  padding: 80px 24px 0;
}

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

.p-reason__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-reason__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.p-reason__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-4);
  text-align: center;
}

.p-reason__title-orange {
  color: var(--color-orange);
}

.p-reason__underline {
  width: 153px;
  height: 18px;
}

.p-reason__subtitle {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-4);
  text-align: center;
}

.p-reason__subtitle-gray {
  color: var(--color-brown);
}

.p-reason__subtitle-orange {
  color: var(--color-orange);
}

.p-reason__card {
}

.p-reason__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-reason__row {
  height: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-reason__step {
  position: relative;
  flex: 1 0 0;
  height: 104px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f2e1cf 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px;
}

.p-reason__step-num {
  font-family: var(--font-family-number);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: rgba(246, 117, 17, 0.1);
  position: absolute;
  top: -24px;
  left: 33.5px;
  line-height: 1;
}

.p-reason__step-label {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  color: var(--color-orange);
  line-height: var(--line-height-1-4);
}

.p-reason__step-desc {
  font-size: var(--font-size-p);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
  text-align: center;
}

.p-reason__arrow {
  width: 19px;
  height: 40px;
  flex-shrink: 0;
}

.p-reason__footer {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 10px 30px;
}

.p-reason__photo {
  position: absolute;
  right: -200px;
  bottom: 0;
  width: 24.6%;
}

@media (max-width: 1280px) {
  .p-reason__photo {
    display: none;
  }
}

.p-reason__footer-text {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-4);
}

.p-reason__footer-lead {
  font-size: var(--font-size-large);
  color: var(--color-brown);
}

.p-reason__footer-orange {
  font-size: var(--font-size-semi-large);
  color: var(--color-orange);
}

.p-reason__footer-brown {
  font-size: var(--font-size-semi-large);
  color: var(--color-brown);
}

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

  .p-reason__inner {
    gap: 0;
  }

  .p-reason__title {
    font-size: 26px;
  }

  .p-reason__underline {
    width: 111px;
    height: 13px;
  }

  .p-reason__subtitle {
    font-size: var(--font-size-medium);
  }

  .p-reason__card {
    padding: 24px 0 0;
  }

  .p-reason__row {
    height: auto;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 8px;
    align-items: flex-start;
    padding-top: 24px;
  }

  .p-reason__step {
    flex: 0 0 calc((100% - 16px - 8px - 8px) / 2);
    height: 100px;
    padding: 12px 8px;
  }

  .p-reason__step-num {
    font-size: 28px;
    top: -16px;
    left: 16px;
  }

  .p-reason__step-label {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
  }

  .p-reason__step-desc {
    font-size: var(--font-size-p);
    line-height: 1.35;
  }

  .p-reason__arrow {
    display: block;
    width: 16px;
    height: auto;
    flex-shrink: 0;
    align-self: center;
  }

  .p-reason__arrow--sep {
    display: none;
  }

  .p-reason__footer {
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 20px;
    justify-content: space-around;
  }

  .p-reason__photo {
    position: static;
    width: 122px;
    height: 146px;
    object-fit: cover;
    object-position: 36% 8%;
    flex-shrink: 0;
  }

  .p-reason__footer-lead {
    font-size: var(--font-size-p);
  }

  .p-reason__footer-orange {
    font-size: var(--font-size-medium);
  }

  .p-reason__footer-brown {
    font-size: var(--font-size-medium);
  }
}


/* ----- p-usecases ----- */

.p-usecases {
  position: relative;
  background-color: var(--color-cream);
  padding: 80px 24px;
  overflow: hidden;
}

.p-usecases__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.p-usecases__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.p-usecases__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 1;
}

.p-usecases__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
  text-align: center;
}

.p-usecases__subtitle {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-75);
  text-align: center;
}

.p-usecases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-usecases__card {
  position: relative;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
  padding: 24px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.p-usecases__card-deco {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 12.5px;
  height: 12.5px;
}

.p-usecases__card-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-usecases__card-icon {
  width: 70%;
  max-height: 40px;
  object-fit: contain;
}

.p-usecases__card-title {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-35);
  text-align: center;
}

.p-usecases__card-desc {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-medium);
  color: #666;
  line-height: var(--line-height-1-5);
  text-align: center;
}

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

  .p-usecases__inner {
    gap: 32px;
  }

  .p-usecases__title {
    font-size: 26px;
  }

  .p-usecases__subtitle {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
  }

  .p-usecases__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-usecases__card {
    padding: 12px 8px;
  }

  .p-usecases__card-icon-wrap {
    height: 43px;
  }

  .p-usecases__card-icon {
    width: 40%;
    max-height: 30px;
  }

  .p-usecases__card-title {
    font-size: var(--font-size-p);
  }
}


/* ----- p-portfolio ----- */

.p-portfolio {
  background-color: var(--color-cream);
  padding: 80px 24px;
}

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

.p-portfolio__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.p-portfolio__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
}

.p-portfolio__subtitle {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-35);
}

.p-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-portfolio__card {
  background-color: var(--color-white);
  border: 1px solid var(--color-beige);
  display: flex;
  flex-direction: column;
}

.p-portfolio__card-thumb {
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  flex-shrink: 0;
}

.p-portfolio__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.p-portfolio__card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 0;
  flex: 1;
}

.p-portfolio__card-tags {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.p-portfolio__tag {
  font-size: var(--font-size-x-small);
  font-weight: var(--font-weight-medium);
  line-height: 14px;
  padding: 4px 12px;
  border-radius: 40px;
  white-space: nowrap;
}

.p-portfolio__tag--filled {
  background-color: var(--color-brown);
  color: var(--color-white);
}

.p-portfolio__tag--outline {
  border: 1px solid var(--color-brown);
  color: var(--color-brown);
}

.p-portfolio__card-title {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-35);
}

.p-portfolio__card-desc {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-brown);
  line-height: 24px;
}

.p-portfolio__card-desc--gray {
  color: #666;
}

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

  .p-portfolio__inner {
    gap: 32px;
  }

  .p-portfolio__title {
    font-size: 26px;
  }

  .p-portfolio__subtitle {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
  }

  .p-portfolio__grid {
    grid-template-columns: 1fr;
  }

  .p-portfolio__card-thumb {
    height: 200px;
  }

  .p-portfolio__card-body {
    padding: 8px 16px 16px;
  }

  .p-portfolio__card-title {
    font-size: var(--font-size-p);
  }
}


/* ----- p-cta1 ----- */

.p-cta1,
.p-cta2 {
  position: relative;
  padding: 12px 24px 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-cta1__bg,
.p-cta2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.p-cta1__card,
.p-cta2__card {
  position: relative;
  width: 100%;
  max-width: 1096px;
  height: 25vw;
  min-height: 380px;
  max-height: 400px;
  padding: 40px 10% 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.p-cta2__card {
  padding: 78px 10% 28px;
}

.p-cta1__card-bg,
.p-cta2__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.p-cta1__title,
.p-cta2__title {
  position: relative;
  font-size: min(3.5vw, var(--font-size-h2));
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
}

.p-cta1__body,
.p-cta2__body {
  position: relative;
  font-size: min(2vw, var(--font-size-large));
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-4);
}

.p-cta1__btn,
.p-cta2__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 1vw 32px;
  border-radius: 70px;
  background: var(--gradation-orange);
  color: var(--color-white);
  font-size: min(2vw, var(--font-size-large));
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-4);
  text-decoration: none;
  white-space: nowrap;
}

.p-cta1__woman,
.p-cta2__woman {
  display: none;
}

@media (max-width: 768px) {
  .p-cta1,
  .p-cta2 {
    padding: 12px 24px;
    height: 330px;
  }

  .p-cta1__card,
  .p-cta2__card {
    min-height: auto;
    padding: 28px 0;
    gap: 16px;
    justify-content: center;
  }

  .p-cta1__card-bg,
  .p-cta2__card-bg {
    display: none;
  }

  .p-cta1__title,
  .p-cta2__title {
    font-size: 26px;
  }

  .p-cta1__body,
  .p-cta2__body {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
  }

  .p-cta1__btn,
  .p-cta2__btn {
    width: 200px;
    padding: 16px 40px;
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
    justify-content: flex-start;
  }

  .p-cta1__woman,
  .p-cta2__woman {
    display: block;
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 252px;
  }
}


/* ----- p-strengths ----- */

.p-strengths {
  background-color: var(--color-white);
  padding: 80px 24px;
}

.p-strengths__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.p-strengths__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.p-strengths__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-5);
  text-align: center;
}

.p-strengths__title-orange {
  color: var(--color-orange);
}

.p-strengths__title-brown {
  color: var(--color-brown);
}

.p-strengths__underline {
  width: 88px;
  height: 3px;
  background-color: var(--color-orange);
}

.p-strengths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.p-strengths__card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
  background-color: var(--color-white);
  height: 233px;
  padding: 24px 16px;
}

.p-strengths__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, white 35%, rgba(255, 255, 255, 0.7) 55%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

.p-strengths__card-photo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

.p-strengths__card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding-top: 4px;
}

.p-strengths__card-num {
  font-family: var(--font-family-number);
  font-size: var(--font-size-number-s);
  font-weight: var(--font-weight-bold);
  color: var(--color-beige);
  line-height: var(--line-height-1);
}

.p-strengths__card-title {
  font-size: var(--font-size-semi-large);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-4);
}

.p-strengths__card-desc {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  color: #666;
  line-height: 24px;
}

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

  .p-strengths__inner {
    gap: 16px;
  }

  .p-strengths__head {
    padding-bottom: 12px;
  }

  .p-strengths__title {
    font-size: 26px;
  }

  .p-strengths__grid {
    grid-template-columns: 1fr;
  }

  .p-strengths__card {
    height: auto;
    min-height: 130px;
  }

  .p-strengths__card-title {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
  }
}


/* =========================================
   Project - Pricing (p-pricing)
   ========================================= */

.p-pricing {
  background-color: var(--color-cream);
  padding: 80px 24px;
}

.p-pricing__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.p-pricing__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
  text-align: center;
}

.p-pricing__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-pricing__footer {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.p-pricing__plans {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 24px;
  padding-top: 20px;
}

.p-pricing__plan {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border: 1px solid var(--color-beige);
  border-radius: 12px;
  height: 550px;
  overflow: visible;
}

.p-pricing__plan--recommended {
  border: 3px solid var(--color-orange);
  height: auto;
}

.p-pricing__recommended-badge {
  position: absolute;
  top: -17.5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-1-5);
  padding: 2px 20px;
  border-radius: 70px;
  white-space: nowrap;
}

.p-pricing__plan-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: rgba(246, 117, 17, 0.2);
  border-radius: 12px 12px 0 0;
  min-height: 108px;
  padding: 16px;
}

.p-pricing__plan-name {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-4);
  text-align: center;
}

.p-pricing__plan-desc {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
  text-align: center;
}

.p-pricing__plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
}

.p-pricing__feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.p-pricing__check {
  width: 15.547px;
  height: 22.577px;
  flex-shrink: 0;
}

.p-pricing__feature-text {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
}

.p-pricing__feature-note {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-brown);
  line-height: var(--line-height-1-6);
}

.p-pricing__option-badge {
  flex-shrink: 0;
  background-color: var(--color-brown);
  color: var(--color-white);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-1-6);
  padding: 0 8px;
  border-radius: 4px;
}

.p-pricing__divider {
  width: calc(100% - 32px);
  height: 1px;
  background-color: var(--color-beige);
  margin: 0 16px;
}

.p-pricing__price-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 24px;
}

.p-pricing__price-label {
  font-size: 14px;
  color: #666;
  line-height: var(--line-height-1-4);
}

.p-pricing__price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.p-pricing__price-yen,
.p-pricing__price-unit {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: var(--color-orange);
  line-height: var(--line-height-1-35);
}

.p-pricing__price-amount {
  font-size: var(--font-size-semi-large);
  font-weight: var(--font-weight-bold);
  color: var(--color-orange);
  line-height: var(--line-height-1-4);
}

.p-pricing__price-per {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: #666;
  line-height: var(--line-height-1-35);
}

.p-pricing__price-estimate {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: #666;
  line-height: var(--line-height-1-35);
  text-align: center;
}

.p-pricing__delivery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.p-pricing__delivery-badge {
  background-color: var(--color-beige);
  color: var(--color-brown);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-1-4);
  padding: 2px 8px;
}

.p-pricing__delivery-text {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  color: #666;
  line-height: var(--line-height-1-5);
  text-align: center;
}

.p-pricing__delivery-note {
  font-size: var(--font-size-x-small);
  font-weight: var(--font-weight-medium);
  color: #666;
  line-height: var(--line-height-1-54);
  text-align: center;
}

.p-pricing__scroll-hint {
  display: none;
}

@media (max-width: 768px) {
  .p-pricing__scroll-hint {
    display: block;
    text-align: center;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
    color: var(--color-brown);
    line-height: var(--line-height-1-6);
  }
}

.p-pricing__notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: flex-start;
}

.p-pricing__notes li {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-brown);
  line-height: var(--line-height-1-6);
}

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

  .p-pricing__title {
    font-size: 26px;
  }

  .p-pricing__inner {
    gap: 40px;
  }

  .p-pricing__footer {
  font-size: var(--font-size-medium);
  }

  .p-pricing__plans {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 16px;
    align-items: flex-start;
  }

  .p-pricing__plan {
    flex: 0 0 317px;
    scroll-snap-align: center;
    height: auto;
  }

  .p-pricing__plan--recommended {
    height: auto;
  }

  .p-pricing__notes {
    align-self: stretch;
  }

  .p-pricing__notes li {
    font-size: var(--font-size-small);
  }
}


/* =========================================
   Project - FAQ (p-faq)
   ========================================= */

.p-faq {
  background-color: var(--color-white);
  padding: 80px 24px;
}

.p-faq__inner {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 51px;
}

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

.p-faq__label {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  color: var(--color-beige);
  line-height: var(--line-height-1-5);
}

.p-faq__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
  text-align: center;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-faq__item {
  border-bottom: 1px solid var(--color-beige);
}

.p-faq__question {
  display: flex;
  align-items: center;
  padding: 16px 1px;
  cursor: pointer;
  list-style: none;
  gap: 12px;
}

.p-faq__question-text {
  flex: 1;
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
}

.p-faq__q {
  color: var(--color-orange);
}

.p-faq__arrow {
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-brown);
  border-bottom: 2px solid var(--color-brown);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}

.p-faq__item--open .p-faq__arrow {
  transform: rotate(-135deg) translateY(-2px);
}

.p-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.p-faq__answer-text {
  font-size: var(--font-size-p);
  font-weight: 500;
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
  padding: 0 1px 16px;
}

.p-faq__a {
  color: var(--color-orange);
}

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

  .p-faq__inner {
    gap: 32px;
  }

  .p-faq__title {
    font-size: 26px;
  }
}


/* =========================================
   Project - Process (p-process)
   ========================================= */

.p-process {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}

.p-process__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.p-process__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-process__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.p-process__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.p-process__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: var(--line-height-1-5);
  text-align: center;
}

.p-process__cards {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 100%;
  padding-top: 25px;
}

.p-process__card {
  position: relative;
  flex: 1;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 40px 16px 32px;
}

.p-process__step-badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 49px;
  height: 49px;
  background-color: var(--color-beige);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.p-process__step-label {
  font-size: 11px;
  font-weight: var(--font-weight-medium);
  color: var(--color-brown);
  line-height: 13px;
  text-align: center;
}

.p-process__step-num {
  font-family: var(--font-family-number);
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: 1;
  text-align: center;
}

.p-process__icon {
  width: 34px;
  max-height: 31px;
  object-fit: contain;
}

.p-process__card-title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: 1.75;
  text-align: center;
}

.p-process__card-desc {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  color: var(--color-brown);
  line-height: var(--line-height-1-5);
  text-align: center;
}

.p-process__card-desc--gray {
  color: #666;
}

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

  .p-process__title {
    font-size: 26px;
  }

  .p-process__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0;
  }

  .p-process__card {
    gap: 8px;
    padding-top: 68px;
  }

  .p-process__card:last-child {
    grid-column: 1 / span 2;
    padding-top: 40px;
  }

  .p-process__step-badge {
    top: 12px;
    left: 16px;
    transform: none;
  }

  .p-process__card-title {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-1-6);
  }

  .p-process__card-desc {
    font-weight: 400;
  }
}


/* =========================================
   Project - CTA2 (p-cta2)
   ========================================= */



/* =========================================
   Project - Footer (p-footer)
   ========================================= */

.p-footer {
  border-top: 1px solid #ccc;
}

.p-footer__body {
  background-color: var(--color-brown);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 40px 80px 16px;
}

.p-footer__label {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: var(--line-height-1-5);
  flex-shrink: 0;
}

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

.p-footer__company-name {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: var(--line-height-1-5);
}

.p-footer__company-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-footer__company-detail {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  line-height: var(--line-height-1-5);
}

.p-footer__copyright {
  border-top: 1px solid #ccc;
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-footer__copyright-text {
  font-size: var(--font-size-x-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-brown);
  line-height: var(--line-height-1-54);
  text-align: center;
}

@media (max-width: 768px) {
  .p-footer__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
  }

  .p-footer__label,
  .p-footer__company-name {
    font-size: var(--font-size-small);
  }

  .p-footer__company-detail {
    font-size: 14px;
  }

  .p-footer__copyright-text {
    font-size: 11px;
  }
}


/* =========================================
   Object - Utility (u-)
   ========================================= */

.u-sp-only {
  display: none;
}

@media (max-width: 768px) {
  .u-sp-only {
    display: inline;
  }
}

@media (max-width: 768px) {
  .u-pc-only {
    display: none;
  }
}
