@charset "UTF-8";

body{
  margin: 0;
}


/* PC */
.inner {
  width: 1024px;
  margin: 0 auto;
}
.pc-none {
  display: none !important;
}
.sp-none {
  display: block !important;
}
.button {
  text-align: center;
}
/* ボタンを光らせる */
.reflection{
display:inline-block;
position:relative;
overflow:hidden;
}
.reflection:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180px;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: reflection 2s ease-in-out infinite;
}
footer {
  width: 100%;
  text-align: center;
}
table {
  margin: 50px 20px;
  border-collapse: collapse;
  border-spacing: 0px;
}
table th{
  background: #eee;
  padding: 10px;
  border: 1px solid black;
  width: 25%;
}
table td{
  padding: 10px;
  border: 1px solid black;
  width: 75%;
}
.age_btn {
  text-align: center;
}
.yes_btn {
  margin-top: 0.8em;
  display: inline-block;
  background-color: #ff6e97;
  color: #fff;
  padding: 1em 0;
  width: 12em;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 0 #d6709b;
  border-radius: 2px;
  font-size: 18px;
}
.no_btn {
  margin-top: 0.8em;
  display: inline-block;
  background-color: #7f7f7f;
  color: #fff;
  padding: 1em 0;
  width: 12em;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 0 #5d5c5c;
  border-radius: 2px;
}


@keyframes reflection {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
/* SP */
@media screen and (max-width: 768px) {
  #wrapper .inner {
    width: 100%;
/*    padding: 10px 10px;*/
    box-sizing: border-box;
  }
  .pc-none {
    display: block !important;
  }
  .sp-none {
    display: none !important;
  }
  .button img{
    width: 66.666vw;
    margin: 0 auto;
  }
  img{
    width: 100%;
    height: auto;
  }
}
