/* Whoswhoスタイル */
 .pageLinkArea {
    line-height: 1.5;
}

 ul.pageLinkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

 .pageLinkList>li {
    margin: 5px 20px 5px 5px
}
 .pageLink {
    -webkit-transition: opacity .2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity .2s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    display: block;
    text-decoration: none;
    font-weight: 400;
    color: #222 !important;
    font-size: 16px;

}

 .pageLink:hover {
    opacity: .7;
    text-decoration: none;
}


 .pageLink::before {
    content:"\f01a";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    margin-right: 10px;
    color:#00B5A6;
}

.small{font-size: 0.7em;}




.introduction_wrapper {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 20px;
    max-width: 900px;
    margin-left:auto ;
    margin-right: auto;
    margin-bottom: 60px;
    border:1px solid #CCCCCC;
    border-radius: 10px;
    padding: 30px;
    
}
.content_area {
    text-align: left;
}

.introduction_wrapper.noimg {
    grid-template-columns: 1fr;
}

.image_area img{
    border-radius: 10px;
}
.introduction_wrapper h3 {
    margin-top: 1em;
}
.introduction_wrapper h4 {
    color: #5082a8;
    background-color: #e9f3f7;
    border-radius: 6px;
    padding: 0.2em;
    margin-bottom: 1em;
    margin-top: 1em;
    font-size: 18px;
}
@media screen and (max-width: 764px) {
    .introduction_wrapper {
        display: block;
    }
    .name{font-size: 1.5rem;}
    .small{display: block;margin-top: 6px;font-size: 1.25rem;}
}


