/* ====== 全体 ====== */
body {
  background-color: #EEEEEE;
  font-family: 'meiryo', sans-serif;
  font-weight: bold;
  color: #575757;
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden;
}

/* ====== ふわっとアニメーション ====== */
.load-fade {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.load-fade.is-show { opacity: 1; }

.scroll-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ====== HEROセクション ====== */

.heroAboutText {
  font-size: 13px;
  line-height: 1.8;
  color: #575757;
  margin-top: 16px;
  margin-bottom: 18px;
}

.aboutHero {
  padding: 10px 0 40px;
   margin-top: -30px;
}

.aboutHeroInner {
  display: flex;
  align-items: flex-start;
  justify-content: center;   
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px 0px;
}


.heroLeft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;             
  padding-top: 0;
}

.heroTitleImg {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 12px;
  margin-top: 20px;   
  margin-left: -230px;
}

.heroCharaImg {
  width: 320px;
  height: auto;
  display: block;
}

.heroRight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;            
}

.profileTitleImg {
  display: block;
  margin-left: auto;         
  margin-right: 0;
  margin-bottom: 16px;
  width: 300px;  
  height: auto;
}


.profileName {
  font-size: 26px;
  margin: 0 0 2px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.profileRole {
  font-size: 14px;
  color: #999;
  margin: 0 0 8px;
  letter-spacing: 0.08em;
}

/* SNSアイコン */
.sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.sns-links img {
  width: 52px;
  height: auto;
  transition: opacity 0.2s;
}
.sns-links a:hover img { opacity: 0.7; }

/* スキルタグ */
.skillLabel {
  font-size: 12px;
  color: #aaa;
  margin: 0px 0px 8px;
  letter-spacing: 0.1em;
}

.skillTag {
  white-space: nowrap;        
  writing-mode: horizontal-tb; 
  min-width: fit-content;
}

.skillTags {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 5px;
  width: max-content; 
}

.skillTag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 200, 200, 0.8);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  color: #575757;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* ====== 区切り線 ====== */
.aboutDivider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #3D9EBF, transparent);
  margin: 0 auto;
  border: none;
}

/* ====== 詳細セクション ====== */
.aboutDetail {
  padding: 0px 0px 60px;
}

.aboutDetailInner {
  display: flex;
  flex-direction: column;   
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto;
  gap: 24px;
  padding: 0px 20px;
}

.detailCard {
  width: 100%;
  box-sizing: border-box;
}

/* カード */
.detailCard {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  padding: 30px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07), inset 0 1px 1px rgba(255,255,255,0.4);
}

/* 横幅いっぱいのカード */
.detailCard--wide {
  grid-column: 1 / -1;
}

.detailCardTitle {
  font-size: 18px;
  color: #3D9EBF;
  font-style: italic;
  margin: 0 0 16px;
  letter-spacing: 0.1em;
}

.detailCardText {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

.detailList {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 2;
}

/* スキル詳細グリッド */
.skillDetail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
}

.skillDetailName {
  font-size: 16px;
  color: #3D9EBF;
  font-style: italic;
  margin: 0 0 8px;
}

.skillDetailText {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

/* 依頼ボタン */
.detailBtn {
  display: block;
  width: fit-content;
  margin: 0 auto;         
  padding: 16px 60px;      
  font-size: 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  color: #575757;
  transition: all 0.3s;
}

.detailBtn:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ====== コピーライト ====== */
.copyright {
  text-align: center;
  font-size: 11px;
  color: #aaa;
  margin: 20px 0 30px;
}

/* ====== タブレット（〜1024px） ====== */
@media screen and (max-width: 1024px) {
  .skillDetail {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 微妙な幅（768px〜1100px程度）のときは負のマージンをキャンセル */
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .heroTitleImg {
    margin-left: 0;
  }
}

/* ====== スマホ（〜768px） ====== */
@media screen and (max-width: 768px) {

  .aboutHero {
    margin-top: 0;
  }

  .aboutHeroInner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 16px;
  }

  .heroLeft {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .heroTitleImg {
    width: 110px;
    margin: 0;
    align-self: flex-start;
  }

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

  .heroRight {
    width: 100%;
    align-items: center;
    margin-top: 8px;
  }

  .profileTitleImg {
    width: 120px;
    margin: 0 auto 8px;
  }

  .profileName {
    font-size: 20px;
    text-align: center;
  }

  .profileRole {
    text-align: center;
    margin-bottom: 12px;
  }

  .heroAboutText {
    text-align: center;
    font-size: 12px;
    margin-bottom: 16px;
  }

  .skillTags {
    justify-content: center;
  }

  .sns-links {
    justify-content: center;
    margin-top: 8px;
  }
  .sns-links img { width: 38px; }

  .aboutDetailInner {
    padding: 0 16px;
    gap: 14px;
  }

  .detailCard--wide {
    grid-column: 1;
  }

  .skillDetail {
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
  }

  .detailCard {
    padding: 22px 20px;
  }
}