@charset "UTF-8";

/*------------------------------------------------------------
    ◆読み込みHTML
    /officers.html
------------------------------------------------------------*/

/* iconMenu_box */
.iconMenu_box {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.iconMenu_box a.textCard_arrowDown::after {
    content: "\f078";
}
@media print, screen and (min-width:770px) {
    .iconMenu_box a.textCard {
        padding: 0 30px 0 20px;
    }
    .iconMenu_box {
        margin-top: 60px;
        flex-direction: row;
        gap: 32px;
    }
    .iconMenu_box a.textCard {
        width: 206px;
    }
    .iconMenu_box a.textCard::after {
        right: 10px;
    }
}


/* officersTitle*/

.officersTitle {
    font-size: 2.0rem;
    line-height: 1.45;
    position: relative;
    display: block;
    padding-left: 10px;
    margin-top: 40px;
}
.officersTitle::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 29px;
    background-color: #508433;
    position: absolute;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
    transition: all .3s;
}
@media print, screen and (min-width:770px) {
    .officersTitle {
        font-size: 2.4rem;
        line-height: 1.458;
        padding-left: 20px;
        margin-top: 60px;
    }
    .officersTitle::before {
        width: 4px;
        height: 36px;
        background-color: var(--main-blue);
    }
}


/* officersBox  */

.officersBox {
    font-size: 1.3rem;
    line-height: 1.462;
    margin-top: 20px;
}
.officersBox .profile {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #C5C5C5;
    margin-bottom: -1px;
    margin-top: -1px;
}
.officersBox div > dd {
    border: 1px solid #C5C5C5;
    margin-bottom: -1px;
}
.boxWith_pic .profile {
    cursor: pointer;
}
.boxWith_pic div > .profile img {
    width: 80px;
    object-fit: contain;
    margin-right: 10px;
    background: #F4FAFF;
}
.boxWithout_pic > .profile {
    min-height: 95px;
    padding-left: 10px;
}
.imgBox {
    display: flex;
    align-items: center;
}
.nameText {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 4px;
}
.biography > dl {
    padding: 10px;
    background: #F4FAFF;
}
.biographyIcon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
    margin-top: 22px;
}
.biographyIcon::after {
    font-family: "Font Awesome 5 Pro";
    content: "\f078";
    font-weight: 900;
    color: var(--main-blue);
    transition: transform .3s;
}
.active .biographyIcon::after {
    transform: rotate(180deg);
}
.biography {
    display: none;
}
.active .biography {
    display: block;
}
.biography > dl dt + dd:not(:last-of-type) {
    margin-bottom: 10px;
}

@media print, screen and (min-width:770px) {
    .officersBox {
        font-size: 1.6rem;
        line-height: 1.5;
        font-weight: 500;
        margin: 30px 20px 0 16px;
    }
    .boxWith_pic div > .profile img {
        width: 103px;
        margin-right: 30px;
    }
    .nameText {
        font-size: 2.0rem;
        line-height: 1.45;
        margin-top: 10px;
    }
    .biography > dl {
        padding: 30px;
    }
    .biography > dl dt {
        display: inline-block;
        padding-right: 1.18em;
    }
    .biography > dl dd {
        display: inline-block;
        width: 89%;
        vertical-align: top;
    }
    .biographyIcon {
        font-weight: 500;
        flex-direction: row;
        margin-right: 20px;
        margin-top: 0;
    }
    .biographyIcon::after {
        line-height: 1.188;
        margin-top: 0.1em;
        margin-left: 0.4em;
    }
    .boxWithout_pic > .profile {
        height: auto;
        padding: 20px 0 20px 30px;
    }
}