body {
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #FFFEF9;
    color: black;
    max-width: 960px;
    margin: 0 auto;
}

.main-area {
    width: 75%;
    margin: 0 auto;
    padding-top: 5%;
}

.profile-img {
    padding-right: 20px;
}

.img-icon{
    width: 180px;
    height: 180px;
    border-radius: 20%;
}

.profile-info {
    color: black;
}

.profile-name {
    font-size: 1.9rem;
    font-weight: 500;
}

.profile-overview {
    margin-top: 10px;
}

.profile-overview p {
    white-space: pre-line;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 400;
}

.detail-area {
    width: 75%;
    margin: 0 auto;
    padding-top: 1.5%;
}

.titles{
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 0px;
}

.detail-area p {
    white-space: pre-line;
    font-size: 1.0rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 0px;
}

.link-area {
    width: 75%;
    margin: 0 auto;
    padding-top: 2%;
    font-size: 1.0rem;
}

.link-panels{
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
    text-align: center;
}

.link-line {
    border:1.5px solid;
    border-radius: 20px;
    margin-right: 5px;
    margin-bottom: 5px;
    min-width: 20%;
}

.link-line:hover {
    background-color: rgb(192, 240, 236);
}

.link-snstextTitle {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px;
}

.link-snstextDetails {
    font-size: 1rem;
    vertical-align: top;
    font-weight: 400;
    padding-left: 10px;
}

a {
    text-decoration: none;
    color:black
  }

  a:hover{
    color:black;
  }

.link{
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 480px) {
    .profile-img {
        padding-right: 0px;
        padding-bottom: 5px;
    }
    .img-icon {
        margin: 0 auto;
        display: block;
        width: 150px;
        height: 150px;
    }
    .profile-info {
        margin: 0 auto;
        text-align: center;
    }
    .link-line{
        width: 100%;
    }
}

@media screen and (min-width: 480px) {
    .main-area {
        display: flex;
    }
  }