@charset "utf-8";
/* CSS Document */
/* ============================================
   About page (PC)
   ============================================ */
.p-about-root {
  background: #ffffff;
}
/* TOPは固定・overflow hidden なので、Aboutではスクロールできるように上書き */
html.p-about-root {
  height: auto;
  overflow: visible;
}
body.p-about-root {
  height: auto;
  overflow: visible;
  display: block;
  position: relative;
}
/* Header（Aboutページだけ） */
.p-about-root .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}
.p-about-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.p-about-header__logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}
.p-about-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.p-about-header__nav-link {
  font-size: 14px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}
.p-about-header__nav-link:hover {
  text-decoration: underline;
}
.p-about-page {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 120px var(--spacing-container) 110px;
  box-sizing: border-box;
}
.p-about-hero {
  padding: 80px 0 56px;
}
.p-about-root .about__video {
  display: none;
}
.p-about-hero__badge {
  text-align: center;
  margin: 0 0 32px;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #E67B00;
}
.p-about-hero__title {
  margin: 0 auto 40px;
  max-width: 980px;
  font-size: 84px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.55);
}
.p-about-hero__jp {
  margin: 0 auto;
  max-width: 980px;
  font-size: 22px;
  line-height: 2.2;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}
/* Features */
.p-about-features {
  margin-top: 56px;
}
.p-about-features__head {
  text-align: center;
  margin-bottom: 28px;
}
.p-about-features__title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #E67B00;
}
.p-about-features__subtitle {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
}
.p-about-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-about-feature-card {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  overflow: hidden;
  padding: 16px 16px 18px;
}
.p-about-feature-card__media {
  height: 170px;
  border-radius: 10px;
  background: #f3f3f3;
  margin-bottom: 14px;
  overflow: hidden;
}
.p-about-feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-about-feature-card__title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.78);
}
.p-about-feature-card__sub {
  margin: 0 0 10px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.45);
}
.p-about-feature-card__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.55);
}
/* Company */
.p-about-company {
  margin-top: 56px;
}
.p-about-company__head {
  text-align: center;
  margin-bottom: 28px;
}
.p-about-company__title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #E67B00;
}
.p-about-company__subtitle {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
}
.p-about-company__list {
  width: 60%;
  margin: 0 auto;
}
.p-about-company__item {
  padding: 20px 16px;
  border-top: solid #dfdfdf 2px;
}
.p-about-company__item:last-child {
  border-bottom: solid #dfdfdf 2px;
}
.p-about-company__item__ttl {
    font-weight: 600;
margin-bottom: 5px;}
.p-about-company__item__ttl {}
/* Footer（画像のように下部を帯に） */
.p-about-root .footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3b3b3b;
  padding: 18px 0;
  margin-top: 56px;
  width: 100%;
  text-align: center;
}
.p-about-root .footer__copyright {
  color: rgba(255, 255, 255, 0.9);
}
/* ============================================
   About page (SP)
   ============================================ */
@media (max-width: 768px) {
  .p-about-root .header {
    padding: 14px 16px;
  }
  .p-about-header__inner {
    position: relative;
    justify-content: center;
  }
  .p-about-header__nav {
    display: none;
  }
  .p-about-header__logo {
    font-size: 22px;
  }
  /* トグルは右上に配置（必要な機能は維持） */
  .p-about-root .header__toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-about-page {
    padding: 88px 18px 56px;
  }
  .p-about-hero {
    padding: 28px 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .p-about-hero__badge {
    font-size: 32px;
    margin-bottom: 22px;
  }
  /* 画像の見た目に合わせて SP では 日本語 → 英文 の順に見せる */
  .p-about-hero__jp {
    order: 2;
    font-size: 16px;
    line-height: 2.1;
    margin-bottom: 26px;
    padding: 0 6px;
  }
  .p-about-hero__title {
    order: 3;
    font-size: 38px;
    line-height: 1.18;
    margin-bottom: 0;
    padding: 0 6px;
  }
  .p-about-features {
    margin-top: 34px;
  }
  .p-about-features__title {
    font-size: 22px;
  }
  .p-about-features__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .p-about-feature-card {
    padding: 14px 14px 16px;
  }
  .p-about-feature-card__media {
    height: 200px;
  }
	.p-about-company__list{
		width:100%;
		margin-bottom: 80px;
	}
	.p-about-company__item{
		padding: 12px 6px;
	}
}