@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&display=swap');

/* ============================================
   Variables & Base
   ============================================ */
:root {
  --color-primary: #FFEB00;
  --color-black: #111111;
  --color-white: #FFFFFF;
  --color-line: #06C755;
  --color-line-border: #00b34d;
  --font-base: 'Noto Sans JP', sans-serif;
  --angle: -11deg;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background-color: var(--color-primary);
  margin: 0;
  color: var(--color-black);
  overflow-x: hidden;
}

/* ============================================
   Utilities
   ============================================ */
.u-color-yellow {
  color: var(--color-primary) !important;
  font-weight: 900;
  font-size: clamp(18px, 2.08vw, 30px);
}

.u-highlight {
  background: var(--color-primary);
  display: inline;
  padding: 0.1em 0.2em;
  font-weight: 900;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* 姉妹サイト風マーカー（メッセージ内用） */
.u-marker {
  background-color: var(--color-primary);
  color: #000;
  font-weight: 900;
  padding: 0 0.2em;
}

.u-hidden-pc {
  display: none !important;
}

.u-hidden-sp {
  display: block !important;
}

@media (max-width: 768px) {
  .u-hidden-pc {
    display: block !important;
  }

  .u-hidden-sp {
    display: none !important;
  }
}

/* ============================================
   Header
   ============================================ */
.l-header {
  position: absolute;
  /* PC:追尾しない */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: min(2.08vw, 30px) 0;
  transition: background-color 0.3s, padding 0.3s, box-shadow 0.3s;
}

.l-header.is-scrolled {
  background-color: rgba(255, 235, 0, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.l-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__logo img {
  width: min(8.33vw, 120px);
  height: auto;
  transition: width 0.3s;
}

.l-header.is-scrolled .l-header__logo img {
  width: min(7vw, 100px);
}

.l-header__list {
  display: flex;
  gap: min(2.77vw, 40px);
  list-style: none;
}

.l-header__link {
  font-weight: 900;
  font-size: min(0.97vw, 14px);
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.3s;
}

.l-header__link:hover {
  opacity: 0.7;
}

/* Header SP Styles */
@media (max-width: 768px) {
  .l-header {
    position: fixed;
    /* SP:追尾する */
    padding: 3.8vw 0;
  }

  .l-header.is-scrolled {
    padding: 2vw 0;
  }

  .l-header__inner {
    padding: 0 5.1vw;
  }

  .l-header__logo img {
    width: 23vw;
  }

  .l-header__hamburger {
    position: relative;
    display: block;
    background: var(--color-black);
    width: 11.2vw;
    height: 11.2vw;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
    /* メニューより手前に */
  }

  .l-header__hamburger span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 4px;
    background-color: var(--color-white);
    margin: 0;
    transition: all 0.3s;
  }

  .l-header__hamburger span:nth-child(1) {
    top: 30%;
  }

  .l-header__hamburger span:nth-child(2) {
    top: 50%;
  }

  .l-header__hamburger span:nth-child(3) {
    top: 70%;
  }

  .l-header__hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .l-header__hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  /* SP Navigation Overlay */
  .l-header__nav.is-active {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 999;
    padding-top: 80px;
    text-align: center;
  }

  .l-header__nav.is-active .l-header__list {
    flex-direction: column;
    gap: 30px;
  }

  .l-header__nav.is-active .l-header__link {
    font-size: 20px;
    color: #000;
  }
}

/* ============================================
   Common Components
   ============================================ */
.c-button--line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-line);
  width: min(45.1vw, 650px);
  padding: min(1.45vw, 23px) 0;
  border-radius: 30px;
  font-weight: 900;
  font-size: min(1.9vw, 28px);
  color: #fff;
  text-decoration: none;
  border-bottom: min(0.55vw, 8px) solid var(--color-line-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, border-bottom-width 0.2s;
}

.c-button--line:hover {
  transform: translateY(4px);
  border-bottom-width: 4px;
}

.c-button__icon {
  width: min(3vw, 40px);
  margin-right: min(1.5vw, 20px);
}

@media (max-width: 768px) {
  .c-button--line {
    width: 100%;
    max-width: none;
    height: 18vw;
    border-bottom: 1.8vw solid var(--color-line-border);
    border-radius: 100vh;
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.2);
  }

  .c-button--line:active {
    transform: translateY(1vw);
    border-bottom-width: 0.8vw;
  }

  .c-button__icon {
    width: 11vw;
    margin-right: 3vw;
    margin-bottom: 1vw;
  }

  .c-button__text {
    text-align: center;
    line-height: 1.3;
    font-size: 4.4vw;
    padding-bottom: 0.5vw;
  }

  .c-button__text-large {
    font-size: 8.2vw;
    line-height: 1.1;
    display: inline-block;
    margin-bottom: 0.5vw;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.l-main {
  position: relative;
  background-color: var(--color-primary);
}

.p-hero {
  height: min(59.02vw, 850px);
  position: relative;
  overflow: hidden;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('../images/bg_pc.png');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

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

.p-hero__line {
  position: absolute;
  background: var(--color-black);
  width: 200vw;
  left: -50vw;
  transform: rotate(var(--angle)) translateX(100%);
  animation: slideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.p-hero__line--upper {
  bottom: min(13.8vw, 200px);
  height: min(10.4vw, 150px);
}

.p-hero__line--lower {
  bottom: max(-13.8vw, -200px);
  height: min(20.8vw, 300px);
}

@keyframes slideIn {
  to {
    transform: rotate(var(--angle)) translateX(0);
  }
}

.p-hero__inner {
  position: relative;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4.16vw;
  z-index: 10;
}

.p-hero__content {
  width: 50%;
  padding-top: min(6vw, 86px);
  position: relative;
  z-index: 20;
}

.p-hero__title-sub,
.p-hero__title-main {
  display: inline-block;
  background: var(--color-black);
  color: var(--color-white);
  padding: min(0.7vw, 10px) min(1.4vw, 20px);
  transform: rotate(var(--angle));
  font-size: min(3.8vw, 70px);
  white-space: nowrap;
  line-height: 1.1;
  font-weight: 900;
}

.p-hero__title-main {
  margin-top: min(3.4vw, 30px);
}

.p-hero__lead {
  display: block;
  font-size: min(1.7vw, 22px);
  line-height: 1.9;
  margin: min(5vw, 60px) 0 min(2.6vw, 50px);
  font-weight: 700;
  transform: rotate(var(--angle));
  transform-origin: left center;
}

.p-hero__leadm_t {
  margin-top: 6vw !important;
}

.p-hero__action-area {
  display: flex;
  flex-direction: column;
}

.p-hero__features {
  display: flex;
  gap: min(1.7vw, 25px);
  justify-content: center;
  width: min(35vw, 500px);
  margin: 0 auto;
  position: relative;
  z-index: 10;
  order: 1;
}

.p-hero__feature-item {
  background: var(--color-black);
  color: var(--color-white);
  width: min(13.8vw, 200px);
  height: min(13.8vw, 200px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: min(0.4vw, 6px) solid var(--color-white);
  font-weight: 900;
  font-size: min(1.6vw, 24px);
  text-align: center;
  flex-shrink: 0;
}

.p-hero__feature-val {
  font-size: min(4vw, 58px);
  color: var(--color-primary);
  line-height: 1;
}

.p-hero__cta {
  order: 2;
  margin-top: min(-2.2vw, -36px);
  position: relative;
  z-index: 30;
  display: flex;
}

.p-hero__image-wrap {
  position: absolute;
  bottom: 0;
  right: max(-13.7vw, -200px);
  width: min(62.5vw, 900px);
  height: 105%;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.p-hero__person {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

@media (max-width: 768px) {
  .p-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .p-hero__bg-sp {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/bg_sp.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
  }

  .p-hero__line--upper {
    display: none !important;
  }

  .p-hero__line--lower {
    display: block !important;
    width: 150vw;
    height: 30vw;
    left: -25vw;
    bottom: auto;
    top: 115vw;
    z-index: 1;
    transform: rotate(var(--angle)) translateX(100%);
  }

  .p-hero__inner {
    width: 100%;
    padding: 15vw 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .p-hero__content {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .p-hero__title {
    padding-left: 5.1vw;
    margin-bottom: 5.1vw;
  }

  .p-hero__title-sub,
  .p-hero__title-main {
    font-size: 6.15vw;
    padding: 1.5vw 3.8vw;
    transform: rotate(var(--angle));
    box-shadow: 0.8vw 0.8vw 0 rgba(0, 0, 0, 0.1);
  }

  .p-hero__title-main {
    margin-top: 3.8vw;
  }

  .p-hero__lead {
    font-size: 3.6vw;
    line-height: 1.8;
    margin: 6.4vw 5.1vw 3vw;
    transform: none;
  }

  .p-hero__action-area {
    margin-top: 11vw;
    position: relative;
    width: 100%;
    z-index: 30;
  }

  .p-hero__image-wrap {
    position: absolute;
    bottom: auto;
    top: 10vw;
    right: 0vw;
    width: 75vw;
    max-width: none;
    height: auto;
    z-index: 5;
  }

  .p-hero__person--sp {
    display: block;
    width: 100%;
  }

  .p-hero__cta {
    order: 1;
    margin: 0 5.1vw -11vw;
    z-index: 30;
    justify-content: center;
  }

  .p-hero__features {
    order: 2;
    background: var(--color-black);
    width: 100%;
    margin: 0;
    padding: 13vw 5.1vw 4vw;
    justify-content: center;
    gap: 3.8vw;
  }

  .p-hero__feature-item {
    width: 29vw;
    height: 29vw;
    max-width: none;
    max-height: none;
    border: 0.5vw solid var(--color-white);
    font-size: 2.8vw;
  }

  .p-hero__feature-text {
    font-size: 2.8vw;
    line-height: 1.4;
  }

  .p-hero__feature-val {
    font-size: 8.7vw;
  }
}

/* ============================================
   Empathy Section
   ============================================ */
.p-empathy {
  position: relative;
  padding: min(5.5vw, 80px) 0 min(6.9vw, 100px);
  background: linear-gradient(to bottom, #fff 70%, #f4f4f4 70%);
  overflow: hidden;
}

.p-empathy__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(8vw, 120px);
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.p-empathy__line.is-active {
  transform: scaleX(1);
}

.p-empathy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.p-empathy__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: min(4vw, 60px);
}

.p-empathy__text-area {
  width: 48%;
  flex-shrink: 0;
}

.p-empathy__heading {
  font-weight: 900;
  font-size: min(2.2vw, 30px);
  color: #fff;
  margin-bottom: min(1.4vw, 20px);
}

.p-empathy__heading-bg {
  background-color: var(--color-black);
  padding: 0.5em 1em;
  display: inline-block;
  line-height: 1.4;
}

.p-empathy__sub-heading {
  font-weight: 900;
  font-size: min(1.6vw, 24px);
  margin-bottom: min(2vw, 30px);
}

.p-empathy__list {
  margin-bottom: min(2.8vw, 40px);
}

.p-empathy__item {
  font-weight: 700;
  font-size: min(1.1vw, 16px);
  margin-bottom: 0.8em;
  padding-left: 1.5em;
  position: relative;
}

.p-empathy__item::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000;
}

.p-empathy__lead {
  font-size: min(1.1vw, 16px);
  line-height: 1.8;
  margin-bottom: min(2.8vw, 40px);
  font-weight: 700;
}

.p-empathy__solution {
  margin-top: min(2.8vw, 40px);
  position: relative;
  padding-left: min(1.4vw, 20px);
}

.p-empathy__solution::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(0.6vw, 8px);
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary) 40%, var(--color-black) 40%, var(--color-black) 100%);
}

.p-empathy__solution-title {
  font-size: min(1.6vw, 24px);
  font-weight: 900;
  margin-bottom: min(1.4vw, 20px);
  line-height: 1.2;
}

.p-empathy__solution-text {
  font-size: min(1vw, 15px);
  line-height: 1.8;
  font-weight: 700;
}

.p-empathy__grid {
  width: 52%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(1.4vw, 20px);
}

.p-empathy__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.p-empathy__card-head {
  background: var(--color-primary);
  padding: 0 1em;
  font-weight: 900;
  font-size: min(0.97vw, 14px);
  text-align: left;
  line-height: 1.4;
  height: min(4.2vw, 60px);
  display: flex;
  align-items: center;
}

.p-empathy__card-body {
  padding: 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.p-empathy__card-img {
  width: 80%;
  height: auto;
  margin-bottom: 10px;
  display: block;
}

.p-empathy__card-text {
  font-size: min(0.83vw, 12px);
  font-weight: 700;
  color: #333;
  width: 100%;
}

@media (max-width: 768px) {
  .p-empathy {
    padding: 15.3vw 0;
    background: linear-gradient(to bottom, #fff 85%, #f4f4f4 85%);
  }

  .p-empathy__line {
    height: 20vw;
    background-image: none;
    background-color: var(--color-primary);
  }

  .p-empathy__inner {
    padding: 0 5.1vw;
  }

  .p-empathy__content {
    display: block;
  }

  .p-empathy__text-area {
    width: 100%;
    margin-bottom: 12.8vw;
  }

  .p-empathy__heading {
    font-size: 5vw;
    margin-bottom: 3.8vw;
  }

  .p-empathy__heading-bg {
    padding: 2vw 4vw;
  }

  .p-empathy__sub-heading {
    font-size: 4.6vw;
    margin-bottom: 7.7vw;
  }

  .p-empathy__list {
    margin-bottom: 7.7vw;
  }

  .p-empathy__item {
    font-size: 3.6vw;
    margin-bottom: 2vw;
  }

  .p-empathy__lead {
    font-size: 3.6vw;
    line-height: 1.8;
    margin-bottom: 10.2vw;
  }

  .p-empathy__solution {
    margin-top: 7.7vw;
    padding-left: 4vw;
  }

  .p-empathy__solution::before {
    width: 2vw;
  }

  .p-empathy__solution-title {
    font-size: 5.1vw;
    margin-bottom: 5.1vw;
  }

  .p-empathy__solution-text {
    font-size: 3.6vw;
  }

  .p-empathy__grid {
    width: 100%;
    gap: 3.8vw;
    grid-template-columns: 1fr 1fr;
  }

  .p-empathy__card {
    border-radius: 2.6vw;
    box-shadow: 0 1vw 2.6vw rgba(0, 0, 0, 0.1);
  }

  .p-empathy__card-head {
    font-size: 2.8vw;
    padding: 0 2.6vw;
    height: 13vw;
  }

  .p-empathy__card-body {
    padding: 3.8vw 2.6vw;
  }

  .p-empathy__card-img {
    margin-bottom: 2.6vw;
  }

  .p-empathy__card-text {
    font-size: 2.6vw;
  }
}

/* ============================================
   Points Section
   ============================================ */
.p-points {
  padding: min(8.3vw, 120px) 0 min(5.5vw, 80px);
  background-color: var(--color-primary);
  text-align: center;
  position: relative;
  z-index: 10;
}

.p-points__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(8vw, 120px);
  background-color: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 20;
}

.p-points__line.is-active {
  transform: scaleX(1);
}

.p-points__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 30;
}

.p-points__title {
  margin-bottom: min(4.2vw, 60px);
  color: var(--color-black);
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, 2px 0px 0 #fff, -2px 0px 0 #fff, 0px 2px 0 #fff, 0px -2px 0 #fff;
}

.p-points__title-sub {
  font-size: min(1.6vw, 24px);
  font-weight: 900;
  display: block;
  margin-bottom: 0.2em;
}

.p-points__title-main {
  font-size: min(3.2vw, 46px);
  font-weight: 900;
  line-height: 1.2;
}

.p-points__list {
  display: flex;
  justify-content: center;
  gap: min(2.8vw, 40px);
}

.p-points__item {
  background: #fff;
  border-radius: 20px;
  width: 32%;
  padding: min(3.5vw, 35px) min(1.4vw, 20px) min(2.8vw, 30px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.p-points__item-label {
  background-color: #756D52;
  color: #fff;
  font-size: min(1.4vw, 20px);
  font-weight: 900;
  padding: 0.5em 2.5em;
  border-radius: 50px;
  position: absolute;
  top: -1.2em;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.p-points__item-title {
  font-size: min(1.6vw, 22px);
  font-weight: 900;
  margin: 0;
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-points__item-icon {
  width: min(10vw, 150px);
  height: min(10vw, 150px);
  margin-bottom: 20px;
}

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

.p-points__item-lead {
  font-size: min(1.25vw, 18px);
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  margin-bottom: min(1vw, 15px);
}

.p-points__item-text {
  font-size: min(0.97vw, 14px);
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 768px) {
  .p-points {
    padding: 18vw 0 10vw;
  }

  .p-points__line {
    height: 20vw;
  }

  .p-points__inner {
    padding: 0 5.1vw;
  }

  .p-points__title {
    margin-bottom: 12vw;
  }

  .p-points__title-sub {
    font-size: 4.6vw;
    margin-bottom: 1vw;
  }

  .p-points__title-main {
    font-size: 8.2vw;
  }

  .p-points__list {
    flex-direction: column;
    gap: 12vw;
    margin-top: 5vw;
  }

  .p-points__item {
    width: 100%;
    border-radius: 5.1vw;
    padding: 9vw 5.1vw 8vw;
  }

  .p-points__item-label {
    font-size: 4.5vw;
    padding: 1.5vw 8vw;
    top: -4vw;
  }

  .p-points__item-title {
    font-size: 6vw;
    margin-bottom: 2vw;
    min-height: auto;
  }

  .p-points__item-icon {
    width: 35vw;
    height: 35vw;
    margin-bottom: 5vw;
  }

  .p-points__item-text {
    font-size: 4vw;
  }

  .p-points__item-lead {
    font-size: 5vw;
    margin-bottom: 4vw;
    line-height: 1.5;
  }
}

/* ============================================
   Manager Section
   ============================================ */
.p-manager {
  padding: min(8.3vw, 120px) 0 min(5.5vw, 80px);
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.p-manager__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(8vw, 120px);
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 20;
}

.p-manager__line.is-active {
  transform: scaleX(1);
}

.p-manager__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 30;
}

.p-manager__title {
  font-size: min(2.2vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: min(1.4vw, 20px);
  text-align: left;
  position: relative;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, 2px 0px 0 #fff, -2px 0px 0 #fff, 0px 2px 0 #fff, 0px -2px 0 #fff;
}

.p-manager__title .u-highlight {
  background: linear-gradient(transparent 65%, var(--color-primary) 65%);
}

.p-manager__lead {
  font-size: min(1.1vw, 16px);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: min(3.5vw, 50px);
  text-align: left;
}

.p-manager__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(2.8vw, 40px);
  align-items: start;
}

.p-manager__img-box:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.p-manager__img-box--right {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  margin-top: min(5.5vw, 80px);
}

.p-manager__img-box img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.p-manager__list {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: min(0.7vw, 10px);
  margin-left: 0;
  width: 100%;
}

.p-manager__item {
  font-size: min(1.25vw, 18px);
  font-weight: 900;
  position: relative;
  padding-left: 1.5em;
  text-align: left;
  line-height: 1.5;
}

.p-manager__item::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff;
  filter: drop-shadow(1px 1px 0 #000);
}

@media (max-width: 768px) {
  .p-manager {
    padding: 18vw 0 10vw;
  }

  .p-manager__line {
    height: 20vw;
  }

  .p-manager__inner {
    padding: 0 5.1vw;
  }

  .p-manager__title {
    font-size: 5.6vw;
    margin-bottom: 5.1vw;
  }

  .p-manager__lead {
    font-size: 3.6vw;
    margin-bottom: 10.2vw;
  }

  .p-manager__content {
    display: flex;
    flex-direction: column;
    gap: 7.7vw;
    margin-bottom: 0vw;
  }

  .p-manager__img-box:nth-child(1) {
    order: 1;
    margin-bottom: 0;
  }

  .p-manager__img-box--right {
    order: 2;
    margin-top: 0;
    margin-bottom: 0;
  }

  .p-manager__list {
    order: 3;
    gap: 3vw;
    margin-left: 0;
  }

  .p-manager__item {
    font-size: 4vw;
  }
}

/* ============================================
   Reward Section
   ============================================ */
.p-reward {
  padding: min(8.3vw, 120px) 0 min(5.5vw, 80px);
  background-color: #fff;
  position: relative;
  z-index: 10;
  text-align: center;
}

.p-reward__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(8vw, 120px);
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 20;
}

.p-reward__line.is-active {
  transform: scaleX(1);
}

.p-reward__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 30;
}

.p-reward__title {
  margin-bottom: min(3.5vw, 50px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-black);
  position: relative;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, 2px 0px 0 #fff, -2px 0px 0 #fff, 0px 2px 0 #fff, 0px -2px 0 #fff;
}

.p-reward__title-sub {
  font-size: min(1.6vw, 24px);
  display: block;
  margin-bottom: 0.5em;
}

.p-reward__title .u-highlight {
  font-size: min(2.5vw, 36px);
  line-height: 1.4;
}

.p-reward__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(1.5vw, 20px);
  margin-bottom: min(3.5vw, -10px);
  text-align: left;
}

.p-reward__text-area {
  width: 55%;
}

.p-reward__lead {
  font-size: min(1.1vw, 16px);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 1em;
}

.p-reward__text-huge {
  font-size: min(2.8vw, 40px);
  line-height: 1.4;
  margin-top: 0.2em;
  display: inline-block;
}

.p-reward__img-box {
  width: 40%;
  display: flex;
  justify-content: center;
}

.p-reward__img-box img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.p-reward__qa-box {
  background-color: #F9F9F9;
  border-radius: 15px;
  padding: min(2.8vw, 40px);
  text-align: left;
  margin-bottom: min(3.5vw, 50px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.p-reward__qa-row {
  display: flex;
  align-items: flex-start;
  gap: min(1.1vw, 16px);
  margin-bottom: min(1.4vw, 20px);
}

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

.p-reward__qa-icon {
  width: min(2.5vw, 36px);
  height: min(2.5vw, 36px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: min(1.25vw, 18px);
  flex-shrink: 0;
}

.p-reward__qa-icon--q {
  background-color: #6d6452;
  color: #fff;
}

.p-reward__qa-icon--a {
  background-color: var(--color-primary);
  color: var(--color-black);
}

.p-reward__qa-text {
  font-size: min(1.1vw, 16px);
  font-weight: 700;
  line-height: 1.6;
  padding-top: 0.2em;
}

.p-reward__footer {
  text-align: center;
}

.p-reward__footer-text {
  font-size: min(1.25vw, 18px);
  font-weight: 700;
  margin-bottom: 0.5em;
}

.p-reward__footer-main {
  margin: 1.5em 0;
}

.p-reward__footer-main .u-highlight {
  font-size: min(2.5vw, 36px);
}

@media (max-width: 768px) {
  .p-reward {
    padding: 18vw 0 10vw;
  }

  .p-reward__line {
    height: 20vw;
  }

  .p-reward__inner {
    padding: 0 5.1vw;
  }

  .p-reward__title {
    margin-bottom: 10.2vw;
  }

  .p-reward__title-sub {
    font-size: 4.6vw;
  }

  .p-reward__title .u-highlight {
    font-size: 7vw;
    padding: 1vw 2vw;
  }

  .p-reward__content {
    flex-direction: column;
    gap: 0vw;
    margin-bottom: 5vw;
  }

  .p-reward__text-area {
    width: 100%;
  }

  .p-reward__lead {
    font-size: 3.6vw;
  }

  .p-reward__text-huge {
    font-size: 7vw;
    padding: 1vw 2vw;
    margin-top: 1vw;
  }

  .p-reward__img-box {
    width: 80%;
    margin: 0 auto;
  }

  .p-reward__qa-box {
    padding: 7.7vw 5.1vw;
    margin-bottom: 10.2vw;
  }

  .p-reward__qa-row {
    gap: 3vw;
    margin-bottom: 5vw;
  }

  .p-reward__qa-icon {
    width: 8vw;
    height: 8vw;
    font-size: 4.5vw;
  }

  .p-reward__qa-text {
    font-size: 3.6vw;
  }

  .p-reward__footer-text {
    font-size: 3.8vw;
  }

  .p-reward__footer-main .u-highlight {
    font-size: 6vw;
    padding: 1vw 2vw;
    line-height: 1.6em;
  }
}

/* ============================================
   Media Section
   ============================================ */
.p-media {
  padding: min(8.3vw, 120px) 0 min(5.5vw, 80px);
  background-color: #fff;
  position: relative;
  z-index: 10;
  text-align: center;
}

.p-media__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(8vw, 120px);
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 20;
}

.p-media__line.is-active {
  transform: scaleX(1);
}

.p-media__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 30;
}

.p-media__title {
  font-size: min(2.5vw, 36px);
  font-weight: 900;
  line-height: 2;
  margin-bottom: min(2.8vw, 40px);
  color: var(--color-black);
  position: relative;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, 2px 0px 0 #fff, -2px 0px 0 #fff, 0px 2px 0 #fff, 0px -2px 0 #fff;
}

.p-media__lead {
  font-size: min(1.1vw, 16px);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: min(4.2vw, 60px);
}

.p-media__list {
  display: flex;
  justify-content: center;
  gap: min(1.4vw, 20px);
  margin-bottom: min(4.2vw, 60px);
}

.p-media__item {
  width: 24%;
}

.p-media__item img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s;
}

.p-media__item img:hover {
  transform: translateY(-5px);
}

.p-media__footer-head {
  font-size: min(1.6vw, 24px);
  font-weight: 900;
  margin-bottom: min(1.4vw, 20px);
}

.p-media__footer-text {
  font-size: min(1.1vw, 16px);
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .p-media {
    padding: 18vw 0 10vw;
  }

  .p-media__line {
    height: 20vw;
  }

  .p-media__inner {
    padding: 0 5.1vw;
  }

  .p-media__title {
    font-size: 5.6vw;
    margin-bottom: 5.1vw;
  }

  .p-media__title .u-highlight {
    padding: 1vw 1vw;
  }

  .p-media__lead {
    font-size: 3.6vw;
    margin-bottom: 10.2vw;
    text-align: left;
  }

  .p-media__list {
    flex-wrap: wrap;
    gap: 3vw;
    margin-bottom: 10.2vw;
    justify-content: space-between;
  }

  .p-media__item {
    width: 48%;
    margin-bottom: 0;
  }

  .p-media__footer-head {
    font-size: 4.6vw;
    margin-bottom: 3.8vw;
  }

  .p-media__footer-text {
    font-size: 3.6vw;
    text-align: left;
  }
}

/* ============================================
   Voice Section
   ============================================ */
.p-voice {
  padding: min(8vw, 80px) 0;
  background-color: #F5F8FF;
}

.p-voice__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-voice__header {
  text-align: center;
  margin-bottom: min(4vw, 50px);
  position: relative;
}

.p-voice__header::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.p-voice__title {
  font-family: sans-serif;
  font-weight: 900;
  font-size: min(8vw, 60px);
  color: #050D22;
  background-color: #F5F8FF;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 20px;
}

.p-voice__sub {
  display: block;
  font-weight: 800;
  font-size: min(3.5vw, 18px);
  margin-top: 5px;
  position: relative;
  z-index: 2;
}

.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: min(3vw, 30px);
}

.p-voice__item {
  background: #fff;
  border: 3px solid #000;
  border-radius: 15px;
  padding: min(5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(3vw, 30px);
}

.p-voice__icon {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

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

.p-voice__body {
  width: 100%;
  font-weight: 500;
  line-height: 1.8;
  font-size: min(3.5vw, 16px);
  text-align: left;
}

/* ============================================
   Creator Section
   ============================================ */
.p-creator {
  padding: min(8vw, 80px) 0;
  background-color: var(--color-primary);
  overflow: hidden;
}

.p-creator__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.p-creator__header {
  text-align: center;
  margin-bottom: min(4vw, 50px);
  position: relative;
}

.p-creator__header::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.p-creator__title {
  font-family: sans-serif;
  font-weight: 900;
  font-size: min(8vw, 60px);
  color: #050D22;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 20px;
  background-color: var(--color-primary);
}

.p-creator__sub {
  display: block;
  font-weight: 800;
  font-size: min(3.5vw, 18px);
  margin-top: 5px;
  position: relative;
  z-index: 2;
}

.p-creator__slide {
  transition: transform 0.3s;
}

.p-creator .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.9);
}

.p-creator__card {
  position: relative;
  border: 3px solid #000;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

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

.p-creator__info {
  background: #000;
  color: #fff;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  border-top-right-radius: 10px;
}

.p-creator__name {
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.2;
}

.p-creator__id {
  font-size: 0.8em;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .p-creator__info {
    width: 100%;
    border-radius: 0;
    text-align: left;
  }
}

/* ============================================
   Events Section
   ============================================ */
.p-events {
  padding: min(8vw, 80px) 0;
  background-color: #F5F8FF;
}

.p-events__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.p-events__header {
  text-align: center;
  margin-bottom: min(4vw, 50px);
  position: relative;
}

.p-events__header::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.p-events__title {
  font-family: sans-serif;
  font-weight: 900;
  font-size: min(8vw, 60px);
  color: #050D22;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 20px;
  background-color: #F5F8FF;
}

.p-events__sub {
  display: block;
  font-weight: 800;
  font-size: min(3.5vw, 18px);
  margin-top: 5px;
  position: relative;
  z-index: 2;
}

.p-events__card {
  border: 3px solid #000;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.p-events .swiper-slide {
  height: auto;
}

.p-events .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.6;
  transform: scale(0.9);
  transition: opacity 0.3s, transform 0.3s;
}

.p-events__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.p-events__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-events__info {
  background: #000;
  color: #fff;
  padding: 15px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(15vw, 80px);
}

.p-events__name {
  font-weight: 700;
  font-size: min(3.5vw, 15px);
  line-height: 1.4;
}

/* Swiper Pagination */
.swiper-pagination {
  position: static !important;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #999;
  opacity: 1;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: #000;
}

/* ============================================
   Message CTA & Message Section
   ============================================ */
.p-section-cta {
  position: relative;
  z-index: 50;
  background-color: transparent;
  padding: min(2vw, 30px) 0;
  text-align: center;
}

.p-section-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .p-section-cta {
    padding: 5vw 5.1vw;
  }

  .p-section-cta__inner {
    padding: 0;
    width: 100%;
  }
}

.p-message-cta {
  padding: min(10vw, 100px) 0;
  background-color: #fff;
  text-align: center;
}

.p-message-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-message-cta__heading {
  margin-bottom: min(6vw, 60px);
}

.p-message-cta__heading .u-highlight {
  font-size: min(4vw, 36px);
  padding: 0.2em 0.5em;
  line-height: 1.4;
  background-color: var(--color-primary);
  color: var(--color-black);
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 0px 0 #fff, -2px 0px 0 #fff, 0px 2px 0 #fff, 0px -2px 0 #fff;
}

.p-message-cta__text {
  margin-bottom: min(6vw, 50px);
}

.p-message-cta__text p {
  font-size: min(2.5vw, 18px);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 2em;
}

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

@media (max-width: 768px) {
  .p-message-cta {
    padding: 5vw 0;
  }

  .p-message-cta__heading .u-highlight {
    font-size: 6vw;
    text-shadow: 1.5px 1.5px 0 #fff, -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff, 1.5px 0px 0 #fff, -1.5px 0px 0 #fff, 0px 1.5px 0 #fff, 0px -1.5px 0 #fff;
  }

  .p-message-cta__text p {
    font-size: 4.2vw;
    line-height: 1.8;
  }
}

/* MESSAGE Section */
.p-message {
  padding: min(10vw, 100px) 0;
  background-color: #000;
  color: #fff;
}

.p-message__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-message__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: min(8vw, 60px);
}

.p-message__header::before,
.p-message__header::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #fff;
}

.p-message__title {
  font-family: sans-serif;
  font-weight: 900;
  font-size: min(8vw, 60px);
  color: #fff;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

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

.p-message__body p {
  margin-bottom: 1.5em;
  line-height: 2;
  font-weight: 500;
  font-size: min(3.8vw, 16px);
  text-align: center;
}

.p-message__list {
  background: #fff;
  color: #000;
  padding: min(4vw, 20px);
  border-radius: 15px;
  border: 4px solid var(--color-primary);
  margin: 30px 0;
  width: 100%;
}

.p-message__list ul li {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 1em;
  font-weight: 700;
  font-size: min(4vw, 18px);
  line-height: 1.5;
  text-align: left;
}

.p-message__list ul li:last-child {
  margin-bottom: 0;
}

.p-message__list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.5em;
  height: 1.5em;
  background-color: #000;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}

.p-message__image {
  width: 100%;
  max-width: 600px;
}

/* ============================================
   Company Section
   ============================================ */
.p-company {
  padding: min(10vw, 80px) 0;
  background-color: #fff;
}

.p-company__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-company__logo {
  text-align: center;
  margin-bottom: min(10vw, 60px);
}

.p-company__logo img {
  width: min(60vw, 280px);
  height: auto;
}

.p-company__info ul li {
  display: flex;
  align-items: flex-start;
  padding: 2em 0;
  border-bottom: 1px solid #eee;
}

.p-company__label {
  flex: 0 0 160px;
  font-size: 16px;
  font-weight: 900;
  color: #000;
}

.p-company__val {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  color: #000;
}

.p-company__val a {
  text-decoration: underline;
}

/* プライバシーポリシーを開くボタン */
.p-company__privacy {
  text-align: center;
  margin-top: min(5vw, 40px);
}

.p-company__privacy-btn {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  background-color: transparent;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s;
  outline: none;
  /* クリック時のデフォルト枠線を消去 */
}

.p-company__privacy-btn:hover {
  opacity: 0.7;
}

/* SP Company Override (Fixed) */
@media (max-width: 768px) {
  .p-company {
    padding: 60px 0;
  }

  .p-company__info ul li {
    flex-direction: column;
    gap: 4px;
    /* Gap fix */
    padding: 20px 0;
    /* Padding fix */
    border-bottom: 1px solid #d6d6d6;
  }

  .p-company__info ul li:first-child {
    border-top: 1px solid #d6d6d6;
  }

  .p-company__label {
    flex: none;
    /* Flex fix */
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
    color: #666;
  }

  .p-company__val {
    width: 100%;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.4;
  }
}

/* ============================================
   Modal (Privacy Policy)
   ============================================ */
.p-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.p-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.p-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.p-modal__content {
  position: relative;
  background-color: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* 右上のバツ画像ボタン */
.p-modal__close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: opacity 0.3s;
}

.p-modal__close-icon:hover {
  opacity: 0.7;
}

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

.p-modal__header {
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.p-modal__title {
  font-size: 20px;
  font-weight: 900;
  color: #000;
}

.p-modal__body {
  padding: 30px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* モーダル内のリストや見出しスタイル */
.p-modal__body ol {
  list-style-type: decimal;
  padding-left: 1.5em;
  margin: 1.5em 0;
}

.p-modal__body li {
  margin-bottom: 1.5em;
}

.p-modal__body h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 0.5em;
  color: #000;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.p-modal__body h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 1em 0 0.5em;
  color: #000;
}

.p-modal__body p {
  margin-bottom: 1em;
}

.p-modal__body .indented {
  display: block;
  padding-left: 1em;
}

.p-modal__body a {
  color: #0066cc;
  text-decoration: underline;
}

/* 下部の閉じるボタンエリア */
.p-modal__footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-modal__close-btn-bottom {
  background-color: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.p-modal__close-btn-bottom:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .p-modal__content {
    width: 95%;
    max-height: 90vh;
  }

  .p-modal__header {
    padding: 15px 20px;
  }

  .p-modal__title {
    font-size: 18px;
  }

  .p-modal__body {
    padding: 20px;
  }
}

/* ============================================
   Footer
   ============================================ */
.p-footer {
  background-color: #000;
  padding: 15px 0;
  text-align: center;
}

.p-footer__copy {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================
   Animations
   ============================================ */
.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.js-fade-in.is-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.js-fade-in:nth-child(3) {
  transition-delay: 0.4s;
}

.js-fade-in:nth-child(4) {
  transition-delay: 0.6s;
}