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

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.nowrap-pc {
  white-space: nowrap;
}

.sp-only {
  display: none;
}

.section {
  padding: 160px 0;
}

.section__label {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.175rem;
  text-transform: uppercase;
  text-align: center;
  color: #23418a;
  line-height: 0.875rem;
  margin-bottom: 8px;
}

.section__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  line-height: 3.25rem;
  text-align: center;
  color: #333;
  margin-bottom: 120px;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.header__logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  line-height: 1;
}

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

.header__nav-list {
  display: flex;
  gap: 40px;
}

.header__nav-list a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
  color: #333333;
  transition: color 0.3s;
}

.header__nav-list a:hover {
  color: #6b2fa0;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__list {
  text-align: center;
}

.mobile-nav__list li {
  margin-bottom: 32px;
}

.mobile-nav__list a {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  margin-top: 80px;
  height: calc(100vh - 80px);
  min-height: 600px;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #c8d0dc;
}

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

.hero__content {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  color: #fff;
  z-index: 2;
}

.hero__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: 0.45rem;
  line-height: 5.875rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__title br {
  display: none;
}

.hero__subtitle {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero__since {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8125rem;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* ========================================
   PURPOSE
   ======================================== */
.purpose {
  background: #F0EBF5;
}

.purpose__content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.purpose__image {
  flex: 0 0 500px;
  border-radius: 8px;
  overflow: hidden;
  background: #d0d8e4;
  aspect-ratio: 1/1;
}

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

.purpose__text {
  flex: 1;
  max-width: 603px;
}

.purpose__heading {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #23408a;
  letter-spacing: 0;
  line-height: 3rem;
  margin-bottom: 24px;
}

.purpose__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin-bottom: 16px;
  color: #333333;
}

/* ========================================
   STRENGTH
   ======================================== */
.strength {
  background: #F0EBF5;
  padding-top: 0;
}

.strength__content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.strength__text {
  flex: 1;
  max-width: 598px;
}

.strength__heading {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #23408a;
  letter-spacing: 0;
  line-height: 3rem;
  margin-bottom: 24px;
}

.strength__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin-bottom: 16px;
  color: #333333;
}

.strength__image {
  flex: 0 0 500px;
  border-radius: 8px;
  overflow: hidden;
  background: #d0d8e4;
  aspect-ratio: 1/1;
}

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

/* ========================================
   PHILOSOPHY
   ======================================== */
.philosophy__text {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #23408a;
  text-align: center;
  letter-spacing: 0;
  line-height: 3.625rem;
  margin-bottom: 80px;
}

.philosophy__image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #b8d8a8;
  aspect-ratio: 12/5;
}

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

/* ========================================
   SUPPORT (Profile)
   ======================================== */
.support {
  background: #F0EBF5;
}

.support__profile {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.support__profile-image {
  flex: 0 0 500px;
  background: #e8dce8;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.support__profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support__profile-company {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3125rem;
  color: #23418a;
  margin-bottom: 0;
}

.support__profile-cert {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3125rem;
  color: #23418a;
  margin-bottom: 4px;
}

.support__profile-name {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #23418a;
  line-height: 2.25rem;
  margin-top: 4px;
  margin-bottom: 16px;
}

.support__profile-text {
  flex: 1;
  max-width: 557px;
}

.support__profile-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #333333;
  margin-bottom: 16px;
}

.support__profile-text p.support__profile-company,
.support__profile-text p.support__profile-cert {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3125rem;
  color: #23418a;
  margin-bottom: 0;
}

.support__profile-text p.support__profile-name {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #23418a;
  line-height: 2.25rem;
  margin-top: 4px;
  margin-bottom: 16px;
}

.support__profile-history {
  margin-top: 16px;
}

.support__profile-history li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #333;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0;
}

.support__profile-history li::before {
  content: "■";
  position: absolute;
  left: 0;
  font-size: 0.625rem;
  top: 0.35em;
}

/* ========================================
   Gradient Section (Bridge → Service → Team → Why Mental → Cards)
   ======================================== */
.gradient-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f0ebf5 29%, #f0ebf5 100%);
  padding: 120px 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

.gradient-section > .container,
.gradient-section > .stress-support__team-image {
  width: 100%;
}

/* ========================================
   Stress Support
   ======================================== */
.stress-support.section {
  padding-bottom: 0;
}

.stress-support__heading {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #23408a;
  text-align: center;
  letter-spacing: 0;
  line-height: 3.625rem;
  margin-bottom: 60px;
}

.stress-support__content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.stress-support__text {
  flex: 1;
  max-width: 603px;
}

.stress-support__text h3 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.25rem;
  color: #333333;
  margin-bottom: 20px;
}

.stress-support__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #333333;
  margin-bottom: 16px;
}

.stress-support__image {
  flex: 0 0 500px;
  border-radius: 8px;
  overflow: hidden;
  background: #c8d0dc;
  aspect-ratio: 1/1;
}

.stress-support__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stress-support__bridge {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #333333;
  letter-spacing: 0;
  line-height: 2.25rem;
  margin-bottom: 24px;
}

.stress-support__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
}

.stress-support__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #23418A;
}

.stress-support__lead {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #333333;
  margin-bottom: 8px;
}

.stress-support__service-title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  letter-spacing: 0;
  line-height: 2.25rem;
  margin-bottom: 24px;
}

.stress-support__service-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #333333;
  text-align: left;
}

.stress-support__team-image {
  margin-top: 120px;
  margin-bottom: 0;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.stress-support__team-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Why Mental Health
   ======================================== */
.why-mental {
  padding-top: 0;
  padding-bottom: 0;
}

.why-mental__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.25rem;
  color: #333333;
  text-align: center;
  margin-bottom: 80px;
}

.why-mental__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #333333;
  text-align: left;
  margin-bottom: 0;
}

/* ========================================
   Team Photo
   ======================================== */
.team-photo {
  margin: 0;
  padding: 0;
  background: #c8d0dc;
  aspect-ratio: 16/7;
  max-height: 500px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Services
   ======================================== */
.services {
  padding-top: 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 352px);
  gap: 40px;
  justify-content: center;
  max-width: 751px;
  margin: 0 auto;
}

.services__card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 40px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 248px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services__card-title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0;
  line-height: 1.5rem;
  margin-bottom: 20px;
}

.services__card-icon {
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__card-icon img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* ========================================
   INDUSTRIAL COUNSELOR
   ======================================== */
.counselor__manga {
  display: flex;
  flex-direction: column;
  background: #F0EBF5;
  border-radius: 0;
  padding: 40px 120px;
  text-align: center;
  margin: 0 auto 120px;
  max-width: 656px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.counselor__manga:hover {
  opacity: 0.8;
}

.counselor__manga-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #23408a;
  margin-top: 16px;
  align-items: center;
  gap: 40px;
}

.counselor__manga-title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #23408a;
  letter-spacing: 0;
  line-height: 3.625rem;
}

.counselor__manga-image {
  width: 270px;
  height: 378px;
  margin: 0 auto;
  overflow: hidden;
}

.counselor__manga-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.counselor__comparison-title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #23408a;
  text-align: center;
  letter-spacing: 0;
  line-height: 3.625rem;
  margin-bottom: 40px;
}

.counselor__comparison {
  display: flex;
  gap: 80px;
}

.counselor__comparison-card {
  flex: 1;
  background: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  padding: 40px;
}

.counselor__comparison-card--counselor {
  background: #F0EBF5;
  border: none;
}

.counselor__comparison-card h4 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.25rem;
  color: #333333;
  text-align: center;
  margin-bottom: 24px;
}

.counselor__comparison-card ul {
  list-style: none;
}

.counselor__comparison-card li {
  font-size: 0.875rem;
  color: #333;
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.7;
}

.counselor__comparison-card li::before {
  content: "■";
  position: absolute;
  left: 0;
  font-size: 0.625rem;
  top: 0.35em;
}

/* ========================================
   Wellness
   ======================================== */
.wellness.section {
  background: #F0EBF5;
  text-align: center;
  padding: 120px 0;
}

.wellness__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.wellness__logo-img {
  height: 48px;
  width: auto;
}

.wellness__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 3.625rem;
  color: #23408a;
  margin-bottom: 24px;
}

.footer__wellness-logo-img {
  height: 36px;
  width: auto;
}

.wellness__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #333;
  margin-bottom: 40px;
}

.wellness__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #23418A;
  color: #fff;
  padding: 0 48px;
  height: 3.5rem;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
  transition: opacity 0.3s;
}

.wellness__btn:hover {
  opacity: 0.8;
}

.wellness__btn span {
  font-size: 0.875rem;
}

/* ========================================
   COMPANY
   ======================================== */
.company__table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}

.company__table tr {
  border-bottom: 1px solid #e0e0e0;
}

.company__table th,
.company__table td {
  padding: 24px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  text-align: left;
  vertical-align: top;
}

.company__table th {
  font-weight: 700;
  color: #333333;
  width: 160px;
  white-space: nowrap;
}

.company__table td {
  font-weight: 500;
  color: #333333;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #333;
  color: #fff;
  padding: 80px 40px 40px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 80px;
  gap: 80px;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__logos {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__logo {
  margin-bottom: 0;
}

.footer__logo-img {
  height: 32px;
  width: auto;
}

.footer__wellness-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #8bc34a;
  margin-bottom: 0;
}

.footer__sns {
  display: flex;
  gap: 20px;
}

.footer__sns a {
  color: #fff;
  transition: opacity 0.3s;
}

.footer__sns a:hover {
  opacity: 0.7;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer__nav {
  display: flex;
  gap: 120px;
}

.footer__nav a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
  color: #ffffff;
  transition: opacity 0.3s;
}

.footer__nav a:hover {
  opacity: 0.7;
}

.footer__info p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7rem;
  color: #ffffff;
}

.footer__info {
  margin-bottom: 0;
}

.footer__copyright {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04375rem;
  line-height: 1.3125rem;
  color: #ffffff;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   Responsive - Tablet (769px - 1024px)
   ======================================== */
@media (max-width: 1024px) and (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .section {
    padding: 100px 0;
  }

  .section__title {
    margin-bottom: 60px;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .purpose__image,
  .strength__image {
    flex: 0 0 360px;
  }

  .support__profile-image {
    flex: 0 0 360px;
  }

  .stress-support__image {
    flex: 0 0 360px;
  }

  .gradient-section {
    padding: 80px 0 100px;
    gap: 80px;
  }

  .stress-support__team-image {
    margin-top: 60px;
  }

  .philosophy__image img {
    max-height: 400px;
  }

  .counselor__comparison {
    gap: 40px;
  }

  .counselor__comparison-card {
    padding: 32px;
  }

  .wellness.section {
    padding: 80px 0;
  }

  .footer__inner {
    gap: 40px;
  }
}

/* ========================================
   Responsive - SP (768px and below)
   ======================================== */
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__inner {
    padding: 0 20px;
    height: 64px;
  }

  .hero {
    margin-top: 64px;
    height: calc(100vh - 64px);
    height: calc(100svh - 64px);
    min-height: 0;
  }

  .hero__content {
    top: auto;
    bottom: 80px;
    bottom: calc(48px + env(safe-area-inset-bottom, 32px));
    max-width: none;
    padding: 0 20px;
  }

  .footer {
    padding: 60px 20px 24px;
  }

  .hero__title {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .hero__title br {
    display: inline;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    letter-spacing: 0.05rem;
  }

  .container {
    padding: 0 20px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  .section {
    padding: 60px 0;
  }

  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 32px;
  }

  .section__label {
    margin-bottom: 8px;
  }

  /* PURPOSE */
  .purpose__content {
    flex-direction: column;
    gap: 32px;
  }

  .purpose__image {
    flex: none;
    width: 100%;
  }

  .purpose__heading,
  .strength__heading {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .purpose__text p,
  .strength__text p {
    line-height: 1.8;
  }

  /* STRENGTH */
  .strength__content {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .strength__image {
    flex: none;
    width: 100%;
  }

  /* SUPPORT */
  .support__profile {
    flex-direction: column;
    gap: 32px;
  }

  .support__profile-image {
    flex: none;
    width: 200px;
    margin: 0 auto;
  }

  .support__profile-text p {
    line-height: 1.8;
  }

  /* Stress Support */
  .stress-support__heading {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .stress-support__content {
    flex-direction: column;
    gap: 32px;
  }

  .stress-support__text p {
    line-height: 1.8;
  }

  .stress-support__bridge {
    line-height: 1.5;
  }

  .stress-support__service-desc {
    line-height: 1.8;
  }

  .stress-support__image {
    flex: none;
    width: 100%;
  }

  /* Why Mental */
  .why-mental__title {
    font-size: 1.125rem;
    margin-bottom: 24px;
  }

  .why-mental__text {
    line-height: 1.8;
    margin-bottom: 8px;
  }

  /* Gradient section gaps */
  .gradient-section {
    padding: 40px 0 60px;
    gap: 32px;
  }

  .stress-support__team-image {
    margin-top: 0;
  }

  .stress-support__bridge {
    margin-bottom: 24px;
  }

  .stress-support__service-title {
    margin-bottom: 24px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .services__card {
    padding: 24px 16px;
    height: auto;
  }

  /* Counselor comparison */
  .counselor__comparison {
    flex-direction: column;
    gap: 24px;
  }

  .counselor__manga {
    padding: 32px 20px;
  }

  .counselor__manga-title,
  .counselor__comparison-title {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  /* Philosophy */
  .philosophy__text {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  /* Wellness */
  .wellness.section {
    padding: 48px 0;
  }

  .wellness__title {
    line-height: 1.5;
  }

  .wellness__desc {
    line-height: 1.8;
  }

  /* Company */
  .company__table th,
  .company__table td {
    line-height: 1.6;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

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

/* ========================================
   Responsive - SP (smartphone)
   ======================================== */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero__title {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: 0.1rem;
  }

  .hero__subtitle {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.05rem;
  }

  .hero__content {
    top: auto;
    bottom: 40px;
    max-width: none;
    padding: 0 20px;
  }

  .section__title {
    font-size: 1.375rem;
  }

  .purpose__heading,
  .strength__heading {
    font-size: 1.375rem;
  }

  .stress-support__heading {
    font-size: 1.0625rem;
  }

  .stress-support__service-title {
    font-size: 1.25rem;
  }

  .wellness__logo-img {
    height: 36px;
  }

  .wellness__title {
    font-size: 1.125rem;
  }

  .nowrap-pc {
    white-space: normal;
  }

  .company__table th {
    width: 80px;
    min-width: 80px;
    font-size: 0.8125rem;
    white-space: normal;
  }

  .company__table td {
    font-size: 0.8125rem;
    word-break: break-all;
  }

  .company__table th,
  .company__table td {
    padding: 12px 8px;
  }

  .company__table {
    table-layout: fixed;
    width: 100%;
  }

  .services__card-title {
    font-size: 0.8125rem;
  }

  .services__card-icon {
    width: 48px;
    height: 48px;
  }
}
