
/* Main Styles */
main {
    font-family: var(--main-font);
    font-weight: 400;
    font-style: normal;
    height: 100vh;
    background: url(../images/top.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
main .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
main .left-container {
    text-align: left;
    margin-top: 50px;
    
}
main .left-container  h1 {
    font-family: var(--en-font);
    font-weight: 700;
    font-style: normal;
    font-size: 4rem;
    color: var(--primary-color) ;
    padding-bottom: 20px;    
}
main .left-container  h2 {
    font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
    font-size: 2em;
    color: var(--primary-color);     
}
.right-table {
    text-align: right;
}
table {
    margin-top: 150px;
}
table th{
    color: var(--primary-color)!important;
    font-size: 2rem;
    padding: 10px;
}
table td {
    font-size: 1.5em;
    padding: 5px;
}

table td a {
    color: var(--primary-color);
    text-decoration: none;
}

table td a:hover {
    text-decoration: underline;
}
.news_wrap {
    display: flex;
    justify-content: center;
    gap: 70px;
    color: var(--primary-color);
    margin-top: -70px;
}
ul .post-categories a{
    color: var(--primary-color);

}
.news_list_ttl a{
    color: var(--primary-color);
}



/*pad版*/
@media(max-width: 960px){
    .container{
        max-width: 960px;
        justify-content: space-between;
    }
    main .container{
        max-width: 860px;
        display: flex;    
    }
    main .left-container  h1{
        font-size: 50px;
    }
    main .left-container  h2{
        font-size: 30px;
    }
    .right-table{    
        margin-top: 30px;
    }
    table th{
        font-size: 26px;    
    }
    table td{
        font-size: 24px;    
    }
    .news_wrap{
        margin-top: 0;
    }    
}

/*mobile版*/
@media(max-width: 768px){
    .container{
        max-width: 700px;
        justify-content: space-between;
    }
    main .container{
        max-width: 700px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    main .left-container{
        text-align: center;
        margin: 30px auto;
    }
    main .left-container  h1{
        font-size: 42px;
        padding: 0;
    }
    main .left-container  h2{
        font-size: 30px;
        text-align: center;
    }
    .right-table{
        margin: 10px auto 0;
        text-align: center;
    }
    table{
        margin: 0;
    }
    table th{
        font-size: 24px;   
    }
    table td{
        font-size: 20px;    
    }
    .news_wrap{
        margin-top: 5px;

    }

}