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


body{
background-color: #603813;
font-family: Arial, Helvetica, sans-serif;
color:#603813;

}


#container{
  position: relative; /* ← フッターを内部に固定できるようにする */
  margin: 0 auto;
  overflow: hidden;
    background-color:#f9f8f4;
    padding-bottom: 100px;
     max-width :390px;
    width: 390px;
    margin: 0 auto;
 -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}



#header{
    background-color: #f9f8f4;
    text-align: right;
    height: 40px;
}
#header img{
    width: 40px;
}
#profile{
    background-color: #f9f8f4;
    height: 350px;
    
  
}

.photo_radius{
position: absolute;
top: 80px;
margin-left: 30px;
border-radius: 50%;
width: 80px;
height: 80px;
}
#profile_name{
 position: absolute;
top: 40px;
margin-left: 140px;
margin-top: 40px;
font-size: 25px;


}
.hover-scale:hover {
  transform: scale(1.05);
}
.hover-scale{
    width: 100px;
    height: 100px;
}

.eat{
    display: flex;
    padding: 65px 40px 0px 140px;
justify-content: space-between;
font-size: 13px;

}


.title{
 display: flex;
 padding: 0px 40px 0px 40px;
 font-size: 15px;
 justify-content: space-between;

}



#mybest{
    display: flex;
    font-size: 13px;
     padding: 0px 20px 0px 40px;
    background-color:#f9f8f4;
    height: 200px;
    
}

.konomi{
 position: relative;
  top: -10px;

}
.circle{
 position: absolute; /* ← 他の要素に影響を与えない！ */
  width: 60px;  /* サイズ指定（%ではなくpxで） */
  height: 30px;
  left: 60px;  /* 横位置（調整可） */
  top: 12px;    /* 縦位置（調整可） */
}
.circle2{
position: absolute; /* ← 他の要素に影響を与えない！ */
  width: 60px;  /* サイズ指定（%ではなくpxで） */
  height: 30px;
  left: -10px;  /* 横位置（調整可） */
  top: 47px;    
}
.circle3{
position: absolute; /* ← 他の要素に影響を与えない！ */
  width: 60px;  /* サイズ指定（%ではなくpxで） */
  height: 30px;
  left: -10px;  /* 横位置（調整可） */
  top: 85px;    
}
.abura{
    
    margin-left: -15px;
}
.abura{
 margin-left: -5px;
}
.amasa{
margin-left: -15px;
}
   
.count{
  position: relative;
  left: 55px;
  top: -10px;
  font-size: 15px;
}

#ranking{
    font-size: 13px;
    margin-top: -10px;
    margin-left: 70px;

    background-color:#f9f8f4;
    height: 130px;
      gap: 10px;
}

#pan{
    background-color: #f9f8f4;
   margin:0 auto;
    background-image: url(coment.png);
    background-repeat:no-repeat;
    background-size:cover;
    height: 70px;
     margin-top: -30px;
  
}
#cment{
position: relative;
top: 10px;
left: 30px;
font-size: 10px;
}


.melon{
position: relative;
top: -10px;
height:100px;  
width: 100px;
}

.kuro{
position: relative;
left:160px;
top: -90px;
height:90px;  
width: 90px;
}
#pans{
    padding: 60px 30px 0px 40px;
}

.fixed-footer {
  position: fixed; /* ← ここを fixed に戻す！ */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* ← 中央に寄せる */
  width: 390px; /* ← #container と同じ幅に固定 */
  height: 60px;
  background-color: #603813;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 2px solid #f9f8f4;
  z-index: 100;

}

/* ===== ボタン ===== */
.footer-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== アイコン画像 ===== */
.footer-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* 白っぽく見せたい時に便利（任意） */
}


