/* =========================
   About Page Base
========================= */
.aboutPage {
  padding: 140px 5% 120px;
}

.aboutPage * {
  box-sizing: border-box;
}

/* =========================
   Heading
========================= */
.aboutHeader {
  text-align: center;
  margin-bottom: 80px;
}

.aboutH1 {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  letter-spacing: 0.12em;
}

/* =========================
   Intro
========================= */
.aboutIntro {
  max-width: 1100px;
  margin: 0 auto 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.aboutPhoto {
  width: 220px;
  margin: 0 auto;
}

.aboutText {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 24px;
  line-height: 2;
  font-size: 1.6rem;
}

/* =========================
   Section title
========================= */
.sectionTitle {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 48px;
}

/* =========================
   Philosophy
========================= */
.philosophy {
  margin-bottom: 120px;
}

.philosophyList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.philosophyList li {
  background: rgba(255,255,255,0.7);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 1.4rem;
}

/* =========================
   Skill
========================= */
.skillSection {
  margin-bottom: 120px;
}

.skillList {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.skillCard {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.skillCard img {
  width: 70%;
  max-width: 180px;
  margin-bottom: 24px;
}

.skillCard h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.skillCard p {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* =========================
   Tools / Languages
========================= */
.toolsLang {
  margin-bottom: 120px;
}

.h3Soft_wap {
  max-width: 1100px;
  margin: 0 auto;
}

.h3Soft {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.softLanguagePairWap {
  display: grid;
  gap: 24px;
}

.softLanguage {
    width: 50px;
}

.softLanguagePair {
  display: flex;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.65);
  padding: 24px;
  border-radius: 20px;
}

.softImg {
  width: 48px;
}

.softTitle {
  font-weight: 600;
  margin-bottom: 8px;
}

.softTxt {
  font-size: 1.4rem;
  line-height: 1.7;
}


/* ===== Tools / Languages : PC 3列 ===== */
@media (min-width: 1024px) {
    .softLanguagePairWap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
  
    .softLanguagePair {
      height: 100%;
      align-items: flex-start;
    }
  }
  
  /* アイコン */
  .softLanguage{
    flex-shrink: 0;
  }
  
  .softImg{
    width: 48px;
    height: auto;
  }
  
  /* テキスト */
  .txtMargin{
    font-size: 1.4rem;
    line-height: 1.7;
  }
  
  .softTitle{
    font-weight: 600;
    display: inline-block;
    margin-bottom: 4px;
  }

  
/* =========================
   Like
========================= */
.h2AboutPage_like_wap {
  margin-bottom: 120px;
}

.h2AboutPage_like {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 48px;
}

.likeWap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.like {
  background: rgba(255,255,255,0.65);
  padding: 24px;
  border-radius: 24px;
  text-align: center;
}

.likeImg {
  width: 100%;
  max-width: 240px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* =========================
   PC layout
========================= */
@media (min-width: 768px) {
  .aboutIntro {
    flex-direction: row;
    align-items: center;
  }

  .aboutPhoto {
    flex: 0 0 260px;
  }

  .skillList {
    grid-template-columns: repeat(3, 1fr);
  }

  .likeWap {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   Float animation
========================= */
.fuwa {
  animation: fuwa 4s ease-in-out infinite;
}

@keyframes fuwa {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}


