body{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.profile{
  min-height: calc(100vh - 110px);
  background-color: peachpuff;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 40px;
  padding: 0 20px;
  color: darkblue;
  font-weight: bold;
  line-height: 1.8;             
}

.profile h1{
  margin-bottom: 32px;
}

.profile h2{
  margin-top: 20px;
  margin-bottom: 10px;
}

.profile h3{
  margin-top: 20px;
  margin-bottom: 10px;
}

.profile-block{
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.profile-block p{
  text-indent: 1em;
  line-height: 1.8;
  margin-bottom: 10px;
}  


.name-tag{
  display: inline-block;
  padding: 4px 12px;
  font-size: clamp(20px, 4vw, 30px);
  border-radius: 20px;
  overflow: hidden;
  }

.profile-tag{
  font-size: 48px;
  background-color: white;
  padding: 12px 20px;
  border-radius: 20px;
  overflow: hidden;
}

.tantan{
  background-color: skyblue;
}

.ikechan{
  background-color: papayawhip;
}

@media (max-width: 1024px){
  .profile{
    margin:20px auto 30px;
    min-height: calc(100vh - 50px);
    height: auto;
  }
  
  .profile-tag{
    font-size: clamp(28px, 6vw, 48px);
  }

  .tantan,
  .ikechan{
    font-size: 20px;
  }

  .profile p{
    font-size: 14px;
    line-height: 2;
  }
}






  
