main {
    font-size: 0.9rem;
}

.item_line {
    margin: 1rem 0;
}

.about {
    width: 90%;
    margin: auto;
    margin-top: 23vh;
}

.profile {
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 300;
    color: #616c7d;
}

.profile_icon {
    width: 300px;
    height: 300px;
    margin: 1rem auto;
}

.profile_icon img {
    width: 100%;
    height: 100%;
    border-radius: 1000px;
}

/*プロフィールの情報*/
.profile_info {
    margin: 2rem 0rem 2rem 5rem;
}

.profile_text p {
    margin-bottom: 0.5rem;
}

.profile_text a {
    padding: 0 0.5rem;
}

.profile_name {
    display: flex;
    align-items: baseline;
}

.profile_name p {
    font-size: 1.1rem;
}

.mail_copy {
    border: none;
    outline: none;
    background-color: #f2f7ff;
    font-size: 1em;
    color: #333333;
}

.mail_copy_btn {
    padding: 0 0.3rem;
    border: none;
    outline: none;
    background-color: #f2f7ff;
}

.fa-copy {
    color: #616c7d;
}

/*プロフィールアイテム*/
.profile_item {
    margin: 1rem 0;
}

.profile_text {
    margin: 2rem 0;
}

.profile_item span {
    margin-right: 1rem;
}

/* SNSリンク */
.snslink {
    margin: 2rem 0;
}

.snslink ul {
    display: flex;
    margin: 1rem 0;
    position: relative;
    left: -0.5rem;
}

.snslink ul li {
    list-style: none;
    margin-right: 1em;
}

.snslink ul li a {
    color: #616c7d;
    text-decoration: none;
    padding: 0.5rem;
}

.snslink ul li a {
    font-family: "Montserrat", sans-serif;
}


/* バナー */
.banner_link {
    max-width: 800px;
    height: 150px;
    margin: auto;
    outline: 1px #333333 solid;
}

.banner_link img {
    width: 100%;
    height: fit-content;
}

/* 問い合わせバナー */
.contact_banner {
    max-width: 1000px;
    margin: 7vw auto;
}

.contact_banner img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border: solid 1px #333333;
}

/* レスポンシブ用 */
@media screen and (max-width: 900px) {

    .about {
        margin-top: 18vh;
    }

    .profile {
        display: block;
        justify-content: space-between;
        align-items: center;
    }

    .profile_icon {
        width: 150px;
        height: 150px;
        margin: auto;
    }

    .profile_icon img {
        width: 100%;
        height: 100%;
    }

    .profile_info {
        margin: 3rem 1rem;
    }

    .contact_banner {
        margin: 7vw 1rem;
    }
}