@charset "utf-8";

html,
body {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #333333;
  background-color: #ffffff;

}

.container {
  background-image: url(prof-background.png);
  background-size: cover;
  background-size: contain;
  background-repeat: no-repeat;
}



.profile {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}


#proftop {
  width: 40%;
  height: 100;
  padding-top: 100;
  padding-left: 20;
  align-items: center;

}

.btn {
  position: relative;
  text-decoration: none;
  border-radius: 5px;
  padding-left: 70px;
}

.btn span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.2em;
  color: #333333;
  line-height: 1.8em;
  color: #000000;
  position: relative;
}

.btn span::before {
  content: "";
  position: absolute;
  left: -35px;
  width: 13px;
  height: 13px;
  border-top: 4px solid #000000;
  border-right: 4px solid #000000;
  transform: rotate(225deg);
  top: 6px;
}

/* 正方形の枠 */
.add-btn2 {
  width: 25px;
  height: 25px;
  border: 3px solid #111;
  border-radius: 7px;
  /* 角丸をなくしたければ 0 に */
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease;
  margin-left: 350;
}

/* プラス記号（縦線＋横線） */
.add-btn2::before,
.add-btn2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #111;
  transform: translate(-50%, -50%);
}


.add-btn2::before {
  width: 3px;
  height: 25px;
}

.add-btn2::after {
  width: 25px;
  height: 3px;
}

/* hover時 */
.add-btn2:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* フォーカス時 */
.add-btn2:focus {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: 3px;
  border-radius: 6px;
}

/* 2つのアイコンを横に並べるグループ */
.icon-group {
  display: flex;
  align-items: center;
  gap: 20px;
  /* 十字とハンバーガーの間隔 */
  margin-right: 20px
}

/* ハンバーガーメニュー本体 */
.hamburger {
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

}

/* 3本線 */
.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

/* hover時 */
.hamburger:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}


.mypage {
  display: flex;
  padding-left: 28px;
  padding-top: 38px;
  align-items: center;
}

.image {
  width: 110px;
  height: 110px;
  background-image: url(prof-imag.png);
  background-size: cover;
}

.info-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 26px;
}


.stats {
  display: flex;
  gap: 25px;
  padding-right: 59px;
  margin-top: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
  justify-content: flex-end;
}

.stat {
  text-align: center;
}

.stat p {
  margin: 0;
  line-height: 1.1;
}

.stat .label {
  font-size: 0.9em;
  color: #666;
}


.stat .number {
  font-size: 1.3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.bio {
  text-align: center;
  font-size: 0.7em;
  color: #444;
  /* padding-right: 30px; */
  text-align: left;
  margin-top: 35px;
}

.sentence {
  margin-right: 35px;


}






/* タブアイコン */
.feed {
  margin-top: 30px;
  background-image: url(feed-background.png);
}

.banner1 {
  width: 390px;
  height: 25px;
  display: flex;
  align-items: center;
}

.banner1 img {
  padding-left: 56px;
  padding-right: 56px;
}

/* 画像グリッド */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 10px 10px 80px 10px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 5px;
}

.banner2 {
  width: 100%; /* 横幅いっぱいにする */
  height: 101px;
  background-image: url(banner2-back.png);
  background-size: cover; /* 念のため追加 */
  background-repeat: no-repeat;

  position: fixed;  /* ← これがポイント！ */
  bottom: 0;        /* 画面の一番下に固定 */
  left: 0;
  z-index: 10;      /* 他の要素より前に出す */
}


.b2 {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.b2 img {
  padding-top: 45px;
  padding-left: 10px;
  padding-right: 10px;
}