* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #e7edfc;
}

header img {
    width: 70px;
    padding: 10px;
}


/* メニューーーーーーーーーー */

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
.g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #5980ed;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: -50px;
    top: -50px;
    transition: all .6s;
    /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
.g-nav-list {
    display: none;
    /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.g-nav.panelactive .g-nav-list {
    display: block;
    /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
.g-nav ul {
    opacity: 0;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
.g-nav.panelactive ul {
    opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
.g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*リストのレイアウト設定*/
.g-nav li {
    text-align: center;
    list-style: none;
}

.g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}





/*ポイントカードーーーーーーーーーー */



.point {
    font-weight: 700;
    color: #212534;
    font-size: 50px;
    margin-right: 5px;
}



@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
}


.card {
    margin: 50px auto;
    box-shadow: 10px 10px 21px gray;

    background: aliceblue;
    width: 80%;
    height: 170px;
    padding: 3px;
    position: relative;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    font-size: 1.5em;
    /* color: rgba(250, 88, 88, 0); */
    cursor: pointer;
    /* font-family: cursive; */
    color: gray;
}

/* .card:hover {
    color: rgb(88 199 250 / 100%);
    transition: color 1s;
  } */

/* .card:hover:before, .card:hover:after {
    animation: none;
    opacity: 0;
  } */


.card::before {
    content: "";
    width: 104%;
    height: 102%;
    border-radius: 8px;
    background-image: linear-gradient(var(--rotate), #5dffa6, #3c67e3 43%, #00c206);
    position: absolute;
    z-index: -1;
    top: -1%;
    left: -2%;
    animation: spin 1s linear infinite;
}

.card::after {
    position: absolute;
    content: "";
    top: calc(var(--card-height) / 6);
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    transform: scale(0.8);
    filter: blur(calc(var(--card-height) / 6));
    background-image: linear-gradient(var(--rotate), #5dffa6, #3c67e3 43%, #00c206);
    opacity: 1;
    transition: opacity .5s;
    animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
      background-image: linear-gradient(
    0deg
    ,#5dffa6, #3c67e3 43%, #00c206);
  }
   10% {
      background-image: linear-gradient(
    36deg
    ,#5dffa6, #3c67e3 43%, #00c206);
  }
   20% {
      background-image: linear-gradient(
    72deg
    , #5dffa6, #3c67e3 43%, #00c206);
  }
   30% {
      background-image: linear-gradient(
    108deg
    , #5dffa6, #3c67e3 43%, #00c206);
  } 40% {
      background-image: linear-gradient(
    144deg
    , #5dffa6, #3c67e3 43%, #00c206);
  }
   50% {
      background-image: linear-gradient(
    180deg
    , #5dffa6, #3c67e3 43%, #00c206);
  }
   60% {
      background-image: linear-gradient(
    216deg
    , #5dffa6, #3c67e3 43%, #00c206);
  }
   70% {
      background-image: linear-gradient(
    252deg
    ,#5dffa6, #3c67e3 43%, #00c206);
  }
   80% {
      background-image: linear-gradient(
    288deg
    , #5dffa6, #3c67e3 43%, #00c206);
  }
   90% {
      background-image: linear-gradient(
    324deg
    , #5dffa6, #3c67e3 43%, #00c206);
  }
  100% {
      background-image: linear-gradient(
   360deg
    , #5dffa6, #3c67e3 43%, #00c206);
  }
}

a {
    color: #212534;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    margin-top: 2rem;
}

/* たいとる ーーーーーー*/

.title{
    color:#666;
    margin-left: 10px;
    font-size: 20px;
    margin-top: 30px;
}


/* 53クーポンーーーーーーー */
#coupon-list {
    overflow-x: scroll;
    display: flex;
    width: 100%;
}



.coupon-content a {
    width: 100px;
    height: 150px;
    /* background-color: rebeccapurple;
    border: solid 1px black; */
}



.coupon-list {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.coupon-content {
    /* 横スクロール用 */
    display: inline-block;
    width: 100px;

    /* 見た目調整 */
    height: 130px;
    margin: 16px;
    font-size: 15px;
    /* background: rgba(255, 0, 0, 0.4); */
    border-radius: 5px;
    overflow: hidden;
}

.coupon-content img{
    width: 100%;
    border-radius: 10px;
}

.coupon-content p{
    font-size: 10px;
    font-weight: 600;
    color: #535353;
}



/* 履歴ーーーーーーーーー */

#point-btn{
    background-color:rgb(245, 245, 245);
    width: 60%;
    margin: 30px auto;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    border:  solid 0.5px grey;
}

.point-icon{
    width: 30px;
    height: 30px;
    /* background-color: red; */
    border: solid 1px gray;
    border-radius: 50%;
    position: relative;
    text-align: center;
    margin: 0 auto;
}



.point-icon span{
    font-size: 15px;
    position:absolute;
    top: 7px;
    left: 10px;
}


/* ポイント履歴ーーーーーーーーー */

.topTitle{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
}

#point-history  table{
    width: 100%;
    background-color: whitesmoke;
}

#point-history th{
border-bottom: solid 0.4px gray;
text-align: left;
padding:5px 0 5px 10px
}

#point-history td{
    border-bottom: solid 0.4px gray;
    text-align: right;
    padding-right: 30px;
    }


/* ログイン画面ーーーーーーー */

.login-box {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 400px;
    padding: 40px;
    transform: translate(-50%, -50%);
    /* background: rgba(0,0,0,.5); */
    box-sizing: border-box;
    /* box-shadow: 0 15px 25px rgba(0,0,0,.6); */
    /* border-radius: 10px; */

    text-align: center;
  }
  
  .login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color:#666;
    text-align: center;
  }
  
  .login-box .user-box {
    position: relative;
  }
  
  .login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color:#212534;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #666;
    outline: none;
    background: transparent;
  }
  .login-box .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #666;
    pointer-events: none;
    transition: .5s;
  }
  
  .login-box .user-box input:focus ~ label,
  .login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #00abc2;
    font-size: 12px;
  }
  
  .login-box form button {
    position: relative;
    display: inline-block;
    padding: 10px 60px;
    color: #00abc2;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px;
    background-color: #e7edfc;
  }
  
  .login-box button:hover {
    background: #00abc2;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #00abc2,
                0 0 25px #00abc2,
                0 0 50px #00abc2,
                0 0 100px #00abc2;
  }
  
  .login-box button span {
    position: absolute;
    display: block;
  }
  
  .login-box button span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00abc2);
    animation: btn-anim1 2s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
  }
  
  .login-box button span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #03e9f4);
    animation: btn-anim2 2s linear infinite;
    animation-delay: .5s
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
  }
  
  .login-box button span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #5dffa6);
    animation: btn-anim3 2s linear infinite;
    animation-delay: 1s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
  }
  
  .login-box button span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #00abc2);
    animation: btn-anim4 2s linear infinite;
    animation-delay: 1.5s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
  }

  #login form{
    margin-bottom:  50px;
  }


  /* ポイントゲット */
  
  /* From uiverse.io by @EmmaxPlay */
.spinner {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 50px auto;
 }
 
 .spinner::before,
 .spinner:after {
  content: "";
  position: absolute;
  border-radius: inherit;
 }
 
 .spinner:before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #ff00cc 0%, #333399 100%);
  animation: spin8932 2s infinite linear;
 }
 
 .spinner:after {
  width: 90%;
  height: 90%;
  background-color: #e7edfc;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 }
 
 @keyframes spin8932 {
  to {
   transform: rotate(360deg);
  }
 }

 #pointGet span{
  font-weight: 600;
  color:#333;
  text-align: center;
  position: absolute;
  z-index: 999;
  right: 13%;
  top: 43%;
  width: 140px;
 }






