@charset "UTF-8";

.h1 {
    padding-top: 80px;
}

.profile_card {
    margin: 0 auto;
    text-align: center;
}

.profile_img {
    width: 30%;
    margin-top: 30px;
}

.profile_name {
    margin-top: 5px;
}

.name_ruby {
    font-size: 10px;
}

.name {
    font-size: 18px;
}

.profile_block {
    padding-bottom: 30px;
}

.profile_title {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.profile_text {
    display: block;
    width: 80%;
    margin: 10px auto;
}

.buttonp {
    display: flex;
    justify-content: space-between;

    width: 30%;
    margin: 20px auto 0 auto;

    background-color: #040148;
    border: 1px solid #040148;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.50);

    color: #FFFFFF;
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s ease;
}

.arrow {
    font-size: 14px;
    transition: transform 0.5s ease;
}

.buttonp:hover {
    color: #040148;
    background-color: #FFFFFF;
    border: 1px solid #040148;
}

.buttonp:hover .arrow {
    transform: translateX(4px);
}

.button_box {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}