@charset "UTF-8";
/* CSS Document */
.presidentTitle{
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 0.8em;
}
.presidentTitleSub{
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 0.8em;
}
.topCopyCom01.--last{
    padding-bottom: 3em;
}
.presidentHide {
    position: relative;
    margin-bottom: 4em;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

/* グラデーションをかけて隠す */
.presidentHide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px; /* グラデーション部分 */
    background: linear-gradient(to bottom, rgba(239,239,237,0), #F5F6F4);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* 全表示時はマスクを消す */
.presidentHide.open::after {
    opacity: 0;
}

.presidentMoreBtn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 200px;
    margin-top: 10px;
    cursor: pointer;
    display: inline-block;
    color: #fff;
    background: #333;
    padding: 1em 12px;
    text-align: center;
    border: 1px solid #333;
}
.presidentMoreBtn:hover{
    text-decoration: underline;
}
