@charset "utf-8";
/* CSS Document */

/* レポート一覧 */
#about_program {
    background: #fff;
    border: 1px solid #ccc;
    padding: 40px;
    box-sizing: border-box;
}
#about_program h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 20px;
}
#about_program p {
    font-weight: normal;
}
#about_program figure {
    flex: none;
    margin-left: 30px;
    width: 50%;
    max-width: 527px;
}

/* その他の参加者レポート */
#others .flex > div {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 50px;
}
#others .flex > div:nth-child(3n) {
    margin-right: 0;
}
#others figure {
    background: #fff;
    border: 1px solid #ccc;
}
#others .flex > div a {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1;
    display: block;
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    border: 3px solid #fff;
    width: 200px;
    margin: 0 auto 10px;
    filter: drop-shadow(0px 0px 4px #999);
    transition: .8s;
}
#others .flex > div a:hover {
    text-decoration: none;
    background: #333;
}
#others .flex > div p.disabled {
    line-height: 1;
    background: #ccc;
    color: #fff;
    padding: 20px;
    text-align: center;
    border: 3px solid #fff;
    width: 200px;
    margin: 0 auto 10px;
    filter: drop-shadow(0px 0px 4px #999);
    font-weight: normal;
}

/* title部分 */
#gpu #main {
    background-position: center 250px;
}
section {
    padding: 50px 0;
}
.content h1 {
    font-size: clamp(2.5rem, 3vw, 4rem);
    padding: 0;
}
.content .title {
    align-items: center;
}
.content .title figure {
    width: 44%;
    margin-left: 40px;
}
.content h2 {
    text-align: left;
}
.content h3 {
    background: #000;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 3.0rem);
    padding: 10px 15px;
    font-weight: normal;
}

/* レポート本文_タブ */
#report .tab {
    display: flex;
    justify-content: center;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}
#report .tab li {
    background: #cecece;
    color: #8e8e8e;
    padding: 20px;
    margin: 0 10px;
    min-width: 200px;
    font-size: clamp(1.2rem, 3vw, 2.0rem);
    text-align: center;
    border: 1px solid #ddd;
    border-bottom: none;
}
#report .tab li#tab_interim,
#report .tab li#tab_final {
    cursor: pointer;
}
#report .tab li.active {
    background: #fff;
    color: #333;
    cursor: auto;
}
#report #final {
    display: none;
}

/* レポート本文*/
#report .report_content {
    background: #fff;
    position: relative;
    z-index: 0;
    border-top: 1px solid #ddd;
    padding: 40px 80px 80px;
    box-sizing: border-box;
}
#report .report_content p {
    font-weight: normal;
    margin-bottom: 30px;
}
#report .report_content figure > img {
    border: 1px solid #ccc;
}
#report .report_content .flex {
    justify-content: space-between;
}
#report .report_content .flex p {
    width: 45%;
}
#report .report_content .flex figure {
    width: 50%;
}
#report .report_content .figure_caption {
    text-align: center;
}
#report .report_content .figure_caption figure {
    display: inline-block;
    padding-bottom: 20px;
}
#report .report_content .figure_caption figure > img {
    margin-bottom: 5px;
}

@media (max-width: 999px) {
    #main .flex {
        display: block;
    }
    #about_program figure {
        width: 100%;
        margin: 0 auto;
    }
    #others .flex > div {
        width: 100%;
        margin: 0 auto 50px;
    }
    .content .title figure {
        width: 80%;
        margin: 0 auto;
    }
    #report .tab li {
        min-width: auto;
        max-width: 200px;
        margin: 0 5px;
    }
    #report .report_content {
        padding: 20px;
    }
    #report .report_content .flex p {
        width: 100%;
    }
    #report .report_content .flex figure {
        width: 100%;
        text-align: center;
    }
    #report .report_content > div {
        margin-bottom: 40px;
    }
}





