@charset "UTF-8";

body{
    font-family:
        "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    font-size: 16px;
    border-top: 23px solid #79a1b1;
}
a{
    text-decoration: none;
    color: black;
}
.logo{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
.logo img{
    display: inline-block;
}
.header{
    width: 1200px;
    margin: 0 auto;}
.header ul{
    display: flex;
}
.header ul li{
    width: 240px;
    text-align: center;
    border-right: 1px solid #ddd;
    background-color: #fff;
    transition: background-color 0.5s ease;
}
.header ul li:hover{
    background-color: #fdae5e;
}
.header ul li a{
    display: block;
}
.header ul li:first-child{
    border-left: 1px solid #ddd;
}
.main{
    width: 1200px;
    margin: 0 auto;
}
.title{
  margin-top: 50px;
  text-align: center;
  margin-bottom: 20px;
}
.footer{
    margin-top: 40px;
    text-align: center;
    background-color: #79a1b1;
    color: #fff;
}
table{
  width: 100%;
  border-collapse: collapse;
}

table tr{
  background-image: linear-gradient(40deg, #fce043 0%, #fb7ba2 74%);
}

table tr:last-child *{
  border-bottom: none;
}

table th,table td{
  text-align: center;
  border: solid 2px #fff;
  color: white;
  padding: 10px 0;
}