@charset "UTF-8";
body{
    background-color: rgb(244, 244, 244);
}
.hero{
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Crect fill='%23012169' width='1200' height='600'/%3E%3Cpath d='m0,0 1200,600M0,600 1200,0' stroke='%23fff' stroke-width='120'/%3E%3Cpath d='m0,0 1200,600M0,600 1200,0' stroke='%23C8102E' stroke-width='80'/%3E%3Cpath d='M600,0v600M0,300H1200' stroke='%23fff' stroke-width='200'/%3E%3Cpath d='M600,0v600M0,300H1200' stroke='%23C8102E' stroke-width='120'/%3E%3C/svg%3E");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 90vw;
    padding: 100px 0;
    text-align: center;
     color: rgb(255, 254, 229);
    text-shadow: 2px 2px 4px rgb(0, 0, 0);
    padding: 100px 50px;
    margin-bottom: 60px;
    border-radius: 10px;
}


.hero h1{
   
    font-size:xxx-large;
  
    margin: 0 auto;
}

.hero h2{
  text-align: center;
  margin: 20px 0 0 0;
  font-size: x-large;

}


table{
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin:  50px auto;    
}
th, td{
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
th{
    background-color: #022d92;
    color: aliceblue;
}
td{
    background-color: #f8f9fa;
    font-size: 18px;
    font-weight: bold;
    color: #C8102E;
}
table tr:first-child th{
    font-size: 20px;
    font-weight: bold;
}
footer{
    background-color: #012169;
    color: white;
    padding: 30px;
    margin-top: 50px;
    border-radius: 10px;
    
}
footer h2{
    text-align: center;
    color: white;
    margin-bottom: 20px;
}
footer ul {
    list-style: none;
    padding: 0px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;

}
footer li{
    display: inline;
}
footer a{
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #C8102E;
    border-radius: 5px;
    transition: background-color 0.3s;
}
 footer a:hover {
            background-color: #a00d24;
        }
/*フッターまで完成。後はブログなどの機能を充実したい*/
