body{
    font-family: "ヒラギノ角ゴ ProN W3",sans-serif;
    max-width: 1920px;
    margin: 0 auto;
    box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.6);
    background-color: #fff;
}
.pc{
    display: block;
}
.sp{
    display: none;
}

img{
    width: 100%;
    height: auto;
    display: block;
}
source{
    width: 100%;
    height: auto;
    display: block;
}

p{
    margin: auto 3.33%;
    font-size: clamp(15px, 3.7vw, 35px);
    font-weight: 600;
    color: #707070;
}

.btn_wrapper_01{
    display: block;
    position: absolute;
    width: 41.88%;;
    left: 29.06%;
}
.btn_wrapper_02{
    display: block;
    position: absolute;
    width: 25.26%;
    left: 37.4%;
}

.top{
    position: relative;
}
.top .btn_wrapper_01{
    top: 82%;
    left: 24.53%;
}


.sect_02{
    position: relative;
}
.sect_02 .btn_wrapper_02:nth-of-type(1){
    top: 25%;
}
.sect_02 .btn_wrapper_02:nth-of-type(2){
    top: 47.1%;
}
.sect_02 .btn_wrapper_02:nth-of-type(3){
    top: 73.1%;
}
.sect_02 .btn_wrapper_01{
    top: 94.5%;
}



.sect_04{
    position: relative;
}
.sect_04 .btn_wrapper_01{
    top: 84.5%;
}


footer{
    padding-top: 1.2%;
    padding-bottom: 1.2% ;
    text-align: center;
    background-color: #1E2F5D;
}
.terms{
    display: flex;
    justify-content: center;
    gap: 4%;
    margin-bottom: 0.5%;
}
.terms a{
    display: block;
    color: #fff;
    font-size: clamp(12px,1vw,16px);
    font-weight: 400;
}
small{
    color: #fff;
    font-size: clamp(12px,1vw,16px);
    font-weight: 400;
}



@media screen and (max-width:900px) {
   body{
        max-width: 900px;
   }
   .pc{
        display: none;
    }
    .sp{
        display: block;
    }

   .btn_wrapper_01{
        width: 79.78%;
        left: 10.11%;
    }
    .btn_wrapper_02{
        width: 53.89%;
        left: 23.11%
    }

    .top .btn_wrapper_01{
        top: 81%;
        left: 10.11%;
    }

    .sect_02 .btn_wrapper_02:nth-of-type(1){
        top: 24.2%;
    }
    .sect_02 .btn_wrapper_02:nth-of-type(2){
        top: 46.5%;
    }
    .sect_02 .btn_wrapper_02:nth-of-type(3){
        top: 74.1%;
    }
    .sect_02 .btn_wrapper_01{
        bottom: -1%;
    }

    .sect_04 .btn_wrapper_01{
        bottom: -1%;
    }
 

    footer{
        padding-top: 2.78%;
        padding-bottom: 2.67%;
    }
    .terms a{
        font-size: clamp(12px,2vw,20px);
    }
    small{
        font-size: clamp(12px,2vw,20px);
    }
}

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

@keyframes pulse {
    from {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  
    50% {
      -webkit-transform: scale3d(1.05, 1.05, 1.05);
      transform: scale3d(1.05, 1.05, 1.05);
    }
  
    to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
.shiny-btn {
    position: relative;
    display: block;
    overflow: hidden;
}
.shiny-btn::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
    
    animation-name: shiny;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes shiny {
    0% { left: -20%; }
    10% { left: 120%; }
    100% { left: 120%; }
}


