@charset "utf-8";
/* CSS Document */

.top {
    background-image: url(../img/bk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    background-position: center center;
    position: relative;
    animation: fadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
/*古いブラウザ用*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.topmain   {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 800px;
}
.rope  {
    position: absolute;
    bottom: 15px;
    margin-left: -88px;
}
.top .copy {
    width: 250px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    left: 0;
}
.top .copy p {
    color: rgba(255,132,168,1.00);
    font-weight: bold;
    font-size: 1.4em;
}
.sec #tablecenter {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}

/*top table*/
table{
    border-collapse: separate;
    border-spacing: 0;
}

table th:first-child{
  border-radius: 5px 0 0 0;
}

table th:last-child{
    border-radius: 0 5px 0 0;
    border-right: 1px solid #FF9BCD;
}

table th{
    text-align: center;
    color: white;
    background: linear-gradient(#FFA7A7,#FF6CB9);
    border-left: 1px solid #FF9BCD;
    border-top: 1px solid #FF9BCD;
    border-bottom: 1px solid #FF9BCD;
    box-shadow: 0px 1px 1px rgba(231,153,154,0.30) inset;
    padding: 10px 0;
}

table td{
    text-align: center;
    border-left: 1px solid #FF9BCD;
    border-bottom: 1px solid #FF9BCD;
    border-top: none;
    box-shadow: 0px -3px 5px 1px #eee inset;
    padding: 10px 0;
    background-color: rgba(255,249,234,1.00);
}

table td:last-child{
    border-right: 1px solid #FF9BCD;
}

table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
/*top table*/
.remodal-close:before {
    font-size: 60px;
    line-height: 40px;
}

@media screen and (max-width:1060px){
.sec #tablecenter {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px)
}

}

@media screen and (max-width:600px){

.rope {
    position: absolute;
    bottom: 36px;
    width: 227%;
}
.top .copy {
    width: 300px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    margin-top: -110px;
}
.top .copy p {
    color: rgba(255,132,168,1.00);
    font-weight: bold;
    font-size: 5vw;
}


}
