@charset "utf-8";

body {
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("/hubfs/eisai.jp/lp/lp-bb-mileage-cp-overview-25-01/assets/img/background_pc.jpg");
    background-position: center center;
    background-repeat: repeat;
    margin: 0;
}

h1{
    color: red;
    text-align: center;
    background-color: white;
    margin: 60px 0;    
    font-size: 36px;
}

h2{
    text-align: center;
    font-size: 28px;
}

h3{
    text-align: center;
}

.cp-table-sp {
    display: none;
}

table th {
    background-color: #f8c4d5;
}

table td {
    background-color: white;
}

table th,table td{
  border-radius: 5px;
  padding: 20px 10px;
  border: solid 1px #778ca3; 
}

table {
  border-collapse:separate;
  border-spacing: 5px;
  width: 70%;
  margin: auto;
}

.cp-caution {
    margin: auto;
    background-color: white;
    width: 50%;
}

.cp-button {
    margin: 50px 0;
    text-align: center;
}

.cp-button a {
    background: #FFD372;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 350px;
    padding: 25px 45px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 900;
}
.cp-button a:hover {
    background: #f7aa00;
    color: #FFF;
}
.cp-button a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.cp-button a:hover:after {
    border-color: #FFF;
}

.copyright {
    text-align: center;
    background-color: #F63343;
    color: #FFF;
    padding: 20px;
    margin: 0;
}

@media (max-width: 768px) {

body {
    background-image: url("/hubfs/eisai.jp/lp/lp-bb-mileage-cp-overview-25-01/assets/img/background.jpg");
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 24px;
}

.cp-table-pc {
    display: none;
}

.cp-table-sp {
    display: block;
}

.sp {
    background-color: #f8c4d5;
    font-weight: 900;
    font-size: 20px;
}

table {
    width: 90%;
}

table th,table td{
  text-align: center;
  padding: 15px 10px;
}

.cp-caution {
    width: 90%;
}

.cp-button {
    padding: 15px 25px;
}

}