@charset "utf-8";
/*-------------------------
  html
-------------------------*/
body{
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
}
a{
    text-decoration: none;
}
h1{
    font-size:2.5vw;
}
span.blue{
    color:#0E47A1;
    font-weight: bold;
}
.cta-wrap .btn{
    margin: 0 auto;
}
.cta-wrap a{
    position: relative;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    font-size:1.875vw;
    line-height: 333%;
    background: linear-gradient(270deg, #EA512E 0%, rgba(220, 43, 50, 0) 83.75%), #FF7D01;
    border-radius: 100px;
    text-align: center;
    display:block;
}
.cta-wrap a:after{
    content: "";
    margin-left: 0.5em;
    display: inline-block;
    border-style: solid;
    border-width: 0.5em 0 0.5em 0.865em;
    border-color: transparent transparent transparent #fff;
    transform: translateY(0.1em) scale(0.8) rotate(90deg);
}
.sp{
    display: none;
}
a{
    color: #333333;
}
.txt{
    font-size:1.042vw;
    margin-bottom: 3%;
}
/*-------------------------
  table
-------------------------*/
#table{
    min-height: 90%;
}
#table .table-inner{
    padding: 60px 0 100px;
    margin: auto;
    text-align: center;
    width: 62.5%;
}
#table h1{
    margin: 0 auto 40px;
}
#table .table{
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    font-size:1.25vw;
    font-weight: bold;
}
.table th{
    color: #ffffff;
    border:solid 1px #ffffff;
}
.table th:not(.none),
.table td {
    padding: 10px;
    text-align: left;
}
.table td{
    border:solid 1px #ccc;
    padding: 10px 20px;
}
.table tr th.blue{
    background-color: #0E49A3;
}
.table tr td {
    background-color: #ffffff;
}
.table tr:first-child th:nth-child(n+4){
    background-color: #FFE3AE;
    color: #959595;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
/*-------------------------
  footer
-------------------------*/
footer{
    display: block;
    position: relative;
    text-align: center;
    background: #333333;
    padding: 40px 0;
    z-index: 99;
}
footer p{
    color: #ffffff;
    margin:auto;
    text-align: center;
}
/*-------------------------
  sp
-------------------------*/
@media screen and (max-width: 768px) {
    h1 {
        font-size:6.4vw;
    }
    .sp{
        display: block;
    }
    .cta-wrap a {
        font-size:4.8vw;
        margin: auto;
    }
    .txt{
        font-size:2.5vw;
    }
    /*-------------------------
      table
    -------------------------*/
    #table .table{
        font-size: 2.5vw;
    }
    #table{
        min-height: 90%;
    }
    #table .table-inner{
        width: 92%;
    }
    #table table{
        width: 100%;
    }
    .table th{
        border:solid 1px #0E49A3;
    }
    #table th,#table td{
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 10px 2%;
    }
    #table tbody th{
        left: 0;
        z-index: 1;
    }
    tr:last-child,td:last-child {
        border-bottom: 1px solid #ccc;
      }
    /*-------------------------
      footer
    -------------------------*/
    footer p{
        font-size: 2.5vw;
    }
}