/* aboutページ */
.row a:hover {
    color: #86B9C7;
  }
/* ------------------------------------
個人のメッセージ
------------------------------------ */
.members .message-container {
    padding: 2em 0;
}
.message-container{
    display: flex;
    column-gap: 5%;
    width: 100vw;
    align-items: flex-start;
    justify-content: flex-start;
}
.message-container img {
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
}

/* メッセージ */
.block-container {
    vertical-align: top;
}
.block-container h4 {
    flex-wrap: wrap;
}
/* 名前 */
.name-container {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    column-gap: 3vw;
    flex-direction: row;  
    margin: 0;
}
/* メッセージ */
.message-container h3 {
    font-size: 150%;
}
.message-container h4 {
    font-size: 120%;
}
.message-container p.belong{
    font-size: 100%;
    margin-bottom: 1vw;
}
.message-container p.belong br{
    font-size: 25%;
}
.message-container p {
    font-size: 115%;
    margin-bottom: 0;
}
/* .name-container p{
    font-size: 120%;
    margin-bottom: 5vw;
} */

/* ARLISS時の写真 */
.arliss-memory h3{
    font-weight: 500;
}
.arliss-memory img{
    border-radius: 5%;
    width: 25%;
    height: 25%;
    margin: 0vw 1vw 0px 0px;
    aspect-ratio: 1/1;
}

.row a:hover {
    color: #86B9C7;
  }
/* ----------------------------------
基本情報
---------------------------------- */

/* .about-information h3 {
    width: 30vw;
} */

/* ----------------------------------
賞
---------------------------------- */
.award .cell {
    padding: 0 5px;
}
.award p {
    letter-spacing: 0.1em;
    text-decoration: underline; /* 下線 */
    text-decoration-thickness: 0.4em; /* 線の太さ */
    text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
    text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.over-all p {
    text-decoration-color: #cd4c4c80;
}
.accuracy p {
    text-decoration-color: #e6a13a80;
}
.best-mission p {
    text-decoration-color: #3abb7280;
}
.technical-system p {
    text-decoration-color: #4798d280;
}
.unisec p {
    text-decoration-color: #9a67d880;
}

/* ----------------------------------
大会日程
---------------------------------- */

.single {
    width: 30vw;
}
.period {
    width: 50vw;
}


/* ----------------------------------
紹介動画
---------------------------------- */
.about-movie .video{
    align-items: center;
    justify-content: center;
    /* aspect-ratio: 16 / 9; 横:縦 */
}
.about-movie iframe {
    height: 600px;
}



@media (max-width: 768px) {
    .row a:hover {
      color: #86B9C7;
    }
    
    .block-container p {
        flex-wrap: wrap;
        letter-spacing: 0.05em;
        line-height: 1.9em;
    }
    .flex-container p{
        font-size: 95%;
        flex-wrap: wrap;
    }

    /* ----------------------------------
    個人のメッセージ
    ---------------------------------- */
    .message-container .flex-container{
        display: flex;
        justify-content: flex-start;
        flex-direction: column; /*クラス内の並びを縦方向に*/
        row-gap: 5px; /*要素の行方向の感覚*/
    }
    .message-container p{
        letter-spacing: 0.1em;
        line-height: 2em;
        font-size: 90%;
    }
    .message-container .arliss-memory h3{
        font-size: 100%;
    }
    .name-container{
        display: flex;
        column-gap: 0;
        justify-content: center;
        flex-direction: column; /*クラス内の並びを縦方向に*/
        margin-bottom: 15px;
    }
    .arliss-memory .flex-container{
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    .arliss-memory img{
        border-radius: 5%;
        width: 50%;
        height: 25%;
        margin: 0vw 1vw 0px 0px;
        aspect-ratio: 1/1;
    }

    /* ----------------------------------
    基本情報
    ---------------------------------- */

    /* ----------------------------------
    賞
    ---------------------------------- */
    .award h4 {
        font-size: 100%;
    }
    .award .cell {
        padding: 5px;
    }

    /* ----------------------------------
    大会日程
    ---------------------------------- */
    .about-schedule h4 {
        font-size: 90%;
    }

    .single {
        width: 35vw;
    }
    .period {
        width: 40vw;
    }

    /* ----------------------------------
    紹介動画
    ---------------------------------- */
    .about-movie .video{
        align-items: center;
        justify-content: center;
        /* width: 350px; */
        /* aspect-ratio: 16 / 9; 横:縦 */
    }
    .about-movie iframe {
        height: 300px;
    }
}