@charset "utf-8";

/* 目立ち文字 */
/* font-family: 'Rampart One', cursive; */
/* font-family: 'Alfa Slab One', cursive; */

/* 共通 */

body{
  background-color: rgb(236, 253, 255);
  color: rgb(80, 60, 39);
  font-family: 'Noto Sans JP', sans-serif;
  min-height: 100vh;
}

a{
  color: rgb(80, 60, 39);
}

li{
  list-style: none;
}


/* 縦型画面設定 */
@media screen and (orientation: portrait) {


/* flex関係、relative関係 */

  .flex_row_start_start{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .flex_row_start_end{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .flex_row_end_center{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .flex_row_start_center{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .flex_row_center_start{
    display: flex;
    justify-content: center;
    align-items: start;
  }
  
  .flex_row_between{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .flex_row_between_center{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .flex_row_around{
    display: flex;
    justify-content: space-around;
  }
  
  .flex_row_around_center{
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .flex_row_center{
    display: flex;
    justify-content: center;
  }
  
  .flex_row_center_center{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .flex_row_wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .flex_column{
    display: flex;
    flex-direction: column;
  }
  
  .flex_column_between_center{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  .flex_column_between_left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }
  
  .flex_column_around_center{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  
  .flex_column_around_left{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
  }
  
  .flex_column_center_center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .flex_column_end_center{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }

  .flex_column_center_start{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .flex_column_end_end{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-end;
  }
  
  .relative_object{
    position: relative;
  }
  
  .border_div{
    width: 80px;
    margin: 0 auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }
  
  .border_long_div{
    width: 280px;
    margin: 20px auto 8px;
    border-bottom: solid 1px rgb(70, 40, 0);
  }
  
  .body_full_screen{
    min-height: 100vh;
  }
  
  .error_message{
    font-size: 12px;
    color: black;
    border: 2px solid red;
    background-color: rgba(255,0,0,0.2);
    padding: 12px;
    margin: 12px auto 0;
  }
  
  


/* header */

  header{
    width: 100%;
    position: fixed;
    z-index: 990;
    height:  60px;
    background-color: rgb(236, 253, 255);
    box-shadow: 0 0 10px black;
  }

  .header_base{
    width: 100%;
    position: fixed;
    height:  60px;
  }

  .header_space{
    height:  60px;
  }

  .header_ul li{
    height:  60px;
  }

  .header_title{
    display: block;
    font-size: 24px;
    color: darkred;
    text-shadow: 0 0 3px white , 0 0 3px white , 0 0 3px white , 0 0 3px white , 0 0 3px white;
    font-family: 'Rampart One', cursive;
    letter-spacing: -6px;
    margin: 16px 0 0 8px;
    white-space: nowrap;
  }

  .space_li{
    width: 90px;
  }

  .remain_ball_a{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 120px;
    height: 32px;
    padding-right: 8px;
    box-sizing: border-box;
    color: white;
    background-color: #303030;
    border-radius: 20px;
  }
  .remain_ball_span{
    font-size: 15px;
  }
  .remain_ball_span_in{
    font-size: 0.5em;
    letter-spacing: -0.5px;
    margin-left: 2px;
  }
  .remain_ball_image{
    position: absolute;
    top: -10px;
    left: -15px;
    width: 32px;
  }

  .icon_item{
    width: 24px;
    height: 24px;
  }

  .header_under{
    width: 100%;
    height:  60px;
  }

  .header_bord{
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
    height: 100%;
  }

  .header_m_h1{
    font-size: 23px;
    color: white;
    margin-top: 2vh;
    margin-left: 5%;
  }

  .h_border_long_div{
    width: 90%;
    margin: 2vh auto;
    border-bottom: solid 1px lightgray;
  }

  .keep_ball_div{
    margin: 0 0 0 5%;
  }
  .keep_ball_img{
    width: 30px;
  }
  .keep_ball_span{
    font-size: 20px;
    color: white;
  }

  .ball_count_p{
    font-size: 20px;
    color: white;
    margin-bottom: 1.5vh;
  }
  .ball_count_span{
    font-size: 40px;
    color: white;
    margin: 0 3% 0 16%;
    letter-spacing: 2px;
  }

  .ball_payment_button{
    display: block;
    text-align: center;
    width: 60%;
    height: auto;
    font-size: 20px;
    color: black;
    padding: 12px;
    margin: 0 auto 3vh;
    background-color: white;
    border-radius: 10px;
  }

  .delivery_edit_h2{
    display: block;
    font-size: 20px;
    color: white;
    margin: 0 0 1vh 12%;
  }

  .delivery_edit_a{
    box-sizing: border-box;
    width: 85%;
    height: 23vh;
    margin: 1vh auto 4vh;
    border: 2px solid lightgray;
    border-radius: 10px;
    padding: 15px;
  }

  .delivery_edit_left{
    color: white;
  }
  .delivery_no_reg{
    font-size: 20px;
  }
  .delivery_name{
    font-size: 20px;
    margin-bottom: 1vh;
    letter-spacing: 1px;
  }
  .delivery_postal{
    font-size: 17px;
    margin-bottom: 0.5vh;
    letter-spacing: 1px;
  }
  .delivery_address{
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .delivery_edit_right{
    width: 10%;
  }

  .pokeka_show_button{
    display: inline-block;
    font-size: 15px;
    letter-spacing: 1.5px;
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black;
    padding: 16px 20px;
    border-radius: 10px;
    background: linear-gradient( to right bottom, gold 0%, white 50%, gold 100% );
    margin: 0 0 4.5vh 8%;
  }

  .top_show_button , 
  .logout_button , 
  .contact_show_button ,
  .pass_edit{
    display: block;
    font-size: 15px;
    letter-spacing: 1.5px;
    color: white;
    text-decoration: underline;
    margin: 0 0 2vh 9%;
  }


  /* オリパトップページ */

  .item_li{
    width: 80vw;
    height: 80vw;
    max-width: 450px;
    max-height: 450px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 5px 5px 8px 3px darkslategray;
  }

  .index_soldout{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
  }

  .item_form{
    width: 100%;
    height: 100%;
  }
  .item_button{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    box-shadow: 0 0 7px 7px white inset;
  }

  .item_title{
    width: 95%;
    height: 16%;
    margin-top: 10px;
    background-image: url(../image/telop_whitegold.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .item_title_h2{
    font-size: 20px;
    color: black;
    text-shadow: 0 0 1px aqua;
    font-family: 'Rampart One', cursive;
    width: 85%;
    text-align: center;
    white-space: nowrap;
    overflow: scroll;
  }

  .item_under{
    width: 85%;
    height: 20%;
    margin-bottom: 15px;
  }

  .need_ball_box{
    width: 35%;
    height: 38%;
    padding: 3px 5px 2px 2px;
    border-radius: 10px 10px 0 0;
    background-color: rgba(0,0,0,0.6);
  }
  .item_ball_img{
    width: 30%;
  }
  .item_ball_span{
    font-size: 15px;
    color: white;
    letter-spacing: 1px;
  }

  .item_pokeca_remain_back{
    box-sizing: content-box;
    width: 100%;
    height: 38%;
    border: 2px solid black;
    border-radius: 10px;
    background-color: rgba(100, 100, 100, 0.6);
  }
  .item_pokeca_remain_front{
    box-sizing: content-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(
      to right bottom,
      #00cdff 0%,
      #e7faff 50%,
      #00a1ff 100%
    );
  }
  .item_pokeca_remain_span{
    position: absolute;
    color: black;
    text-shadow: 0 0 5px white, 0 0 3px white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 12px;
    white-space: nowrap;
  }



  /* poke_item個別ページ */

  .poke_item_body{
    width: 100%;
    height: auto;
  }

  .poke_item_bg{
    position: fixed;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    top:  60px;
    left: 50%;
    transform: translate(-50%, -0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, -0%);
  }
  .poke_item_bg_image{
    display: block;
    min-width: 350px;
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .poke_item_main{
    width: 100%;
    max-width: 450px;
    height: auto;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    margin: 75vh auto 0;
    padding: 28px 0 45vh;
  }

  .poke_item_main_h1_1{
    font-family: 'Alfa Slab One', cursive;
    font-size: 50px;
    margin: 40px auto 50px;
    color: #DA8E00;
    background: -webkit-linear-gradient(-45deg, gold, white, rgb(230, 190, 0), white, gold, white, rgb(230, 190, 0), white, gold, white, rgb(230, 190, 0),gold, white, rgb(230, 190, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .poke_item_main_h1_2{
    font-family: 'Alfa Slab One', cursive;
    font-size: 45px;
    margin: 40px auto 40px;
    color: #DA8E00;
    background: -webkit-linear-gradient(-45deg, silver, white, rgb(160, 160, 160), white, silver, white, rgb(160, 160, 160), white, silver, white, rgb(160, 160, 160),silver, white, rgb(160, 160, 160));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .poke_item_main_h1_3{
    font-family: 'Alfa Slab One', cursive;
    font-size: 40px;
    margin: 40px auto 30px;
    color: #DA8E00;
    background: -webkit-linear-gradient(-45deg, skyblue, white, rgb(84, 189, 231), white, skyblue, white, rgb(84, 189, 231), white, skyblue, white, rgb(84, 189, 231),skyblue, white, rgb(84, 189, 231));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .master_card_space{
    width: 90%;
    max-width: 405px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .master_item{
    box-sizing: border-box;
    padding: 10px 5px 15px;
    width: 140px;
    height: 192px;
    border-radius: 10px;
    margin: 0 15px 30px 15px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    box-shadow: 0 0 20px 5px white, 0 0 10px 3px gold, 0 0 10px 3px white inset;
  }
  .master_item_p{
    font-size: 20px;
    color: white;
    font-family: serif;
  }
  .master_item_h2{
    width: 100%;
    font-size: 15px;
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    letter-spacing: -2px;
    font-family: serif;
    white-space: nowrap;
    overflow: hidden;
  }
  .master_item_under{
    width: 85%;
  }
  .master_item_under_psa{
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    font-size: 15px;
    font-family: serif;
  }
  .master_item_under_quantity{
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    font-size: 20px;
    font-family: serif;
  }

  .hyper_card_space{
    width: 90%;
    max-width: 405px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .hyper_item{
    box-sizing: border-box;
    padding: 8px 2px;
    width: 100px;
    height: 136px;
    border-radius: 8px;
    margin: 0 10px 30px 10px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    box-shadow: 0 0 10px 4px white, 0 0 5px 2px silver, 0 0 5px 2px white inset;
  }
  .hyper_item_p{
    font-size: 15px;
    color: white;
    font-family: serif;
  }
  .hyper_item_h2{
    width: 100%;
    font-size: 13px;
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    letter-spacing: -2px;
    font-family: serif;
    white-space: nowrap;
    overflow: hidden;
  }
  .hyper_item_under{
    width: 85%;
  }
  .hyper_item_under_psa{
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    font-size: 10px;
    font-family: serif;
  }
  .hyper_item_under_quantity{
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    font-size: 15px;
    font-family: serif;
  }

  .super_card_space{
    width: 90%;
    max-width: 405px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .super_item{
    box-sizing: border-box;
    padding: 6px 1px;
    width: 64px;
    height: 88px;
    border-radius: 5px;
    margin: 0 8px 20px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    box-shadow: 0 0 5px 3px skyblue, 0 0 2px 1px white inset;
  }
  .super_item_p{
    font-size: 10px;
    color: white;
    font-family: serif;
  }
  .super_item_h2{
    width: 100%;
    font-size: 9px;
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    letter-spacing: -2px;
    font-family: serif;
    white-space: nowrap;
    overflow: hidden;
  }
  .super_item_under{
    width: 85%;
  }
  .super_item_under_psa{
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    font-size: 7px;
    font-family: serif;
  }
  .super_item_under_quantity{
    color: white;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    font-size: 12px;
    font-family: serif;
  }

  .poke_item_main_h3{
    font-size: 16px;
    color: white;
    margin:  60px auto 20px;
  }

  .poke_item_main_p{
    font-size: 12px;
    color: white;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .poke_item_under{
    position: fixed;
    width: 100%;
    max-width: 450px;
    height: 25vh;
    z-index: 3;
    background-color: rgb(236, 253, 255);
    box-shadow: 0 -5px 20px 20px rgb(236, 253, 255);
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, -0%);
  }

  .poke_item_title{
    width: 290px;
    height: 8vh;
    z-index: 4;
    position: relative;
    background-image: url(../image/telop_whitegold.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .poke_item_title_h2{
    font-size: 19px;
    color: black;
    text-shadow: 0 0 1.5px gold;
    font-family: 'Rampart One', cursive;
    width: 250px;
    text-align: center;
    white-space: nowrap;
    overflow: scroll;
  }

  .poke_need_ball_box{
    width: 80px;
    padding: 1px;
    border-radius: 10px 10px 0 0;
    background-color: rgba(0,0,0,0.6);
  }
  .poke_item_ball_img{
    width: 24px;
  }
  .poke_item_ball_span{
    font-size: 14px;
    color: white;
    letter-spacing: 1px;
  }

  .poke_item_remain{
    margin-bottom: 1vh;
  }
  .poke_item_pokeca_remain_back{
    box-sizing: content-box;
    width: 290px;
    height: 24px;
    max-height: 25px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: rgba(100, 100, 100, 0.6);
  }
  .poke_item_pokeca_remain_front{
    box-sizing: content-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    max-height: 25px;
    border-radius: 10px;
    background: linear-gradient(
      to right bottom,
      #00cdff 0%,
      #e7faff 50%,
      #00a1ff 100%
    );
  }
  .poke_item_pokeca_remain_span{
    position: absolute;
    color: black;
    text-shadow: 0 0 5px white, 0 0 3px white, 0 0 3px white;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 13px;
  }

  .poke_item_form{
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }

  .poke_item_button1{
    width: 100px;
    height: 40px;
    max-height: 40px;
    margin-left: 35px;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 10px;
    background: linear-gradient(
      to right bottom,
      red 0%,
      white 50%,
      rgb(230, 0, 0) 100%
    );
  }
  .poke_item_button2{
    width: 100px;
    height: 40px;
    max-height: 40px;
    margin-right: 35px;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 10px;
    background: linear-gradient(
      to right bottom,
      gold 0%,
      white 50%,
      rgb(230, 190, 0) 100%
    );
  }
  .poke_item_button_span{
    font-size: 13px;
    white-space: nowrap;
    font-style: italic;
    color: white;
    text-shadow: 0 0 2px black, 0 0 2px black, 0 0 2px black;
  }



  /* アラートダイアログ */

  #dialog_disp{
    position: fixed;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    animation-name: fadeIn1;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
  }
  @keyframes fadeIn1{
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 1; }
  }
  .dialog{
    width: 250px;
    height: 150px;
    background-color: white;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px 20px 20px 20px;
    box-shadow: 0 0 3px 5px gray;
    animation-name: fadeIn2;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
  }
  @keyframes fadeIn2{
    0% { opacity: 0; }
    20% { opacity: 0; }
    100% { opacity: 1; }
  }
  .dialog_p{
    font-size: 18px;
  }
  #dialog_button{
    font-size: 18px;
    margin: 0 0px 0 auto;
    padding: 6px 20px;
    border-radius: 8px;
    background-color: orangered;
    border: 1.5px solid black;
  }



  /* gacha_done.phpページ */

  .gacha_main{
    width: 90vw;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .gacha_a{
    display: block;
    box-sizing: border-box;
    background-color: white;
    width: 120px;
    height: 35px;
    text-align: center;
    margin: 20px 0 20px auto;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px gray;
    font-size: 15px;
    line-height: 2.2;
  }

  .gacha_submit{
    display: block;
    box-sizing: border-box;
    background-color: white;
    width: 120px;
    height: 35px;
    text-align: center;
    margin: 20px 0 20px auto;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px gray;
    font-size: 15px;
  }

  .gacha_h1{
    font-size: 24px;
    text-align: center;
    margin: 20px auto 40px;
    color: rgba(0, 0, 0, 0.6);
  }

  .gacha_ul{
    width: 100%;
  }

  .gacha_li{
    box-sizing: border-box;
    width: 85%;
    height: 65px;
    margin: 0px 0 50px 25px;
    padding: 5px 0 5px 70px;
    border-radius: 5px;
    font-size: 10px;
    color: black;
  }

  .gacha_card{
    height: 100%;
  }

  .gacha_card_img{
    position: absolute;
    top: -15px;
    left: -15px;
    box-sizing: border-box;
    width: 70px;
    height: 98px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    transform: rotate(-10deg);
  }

  .gacha_card_rarity{
    text-shadow: 0 0 1.2px black;
    font-style: italic;
    font-size: 1.4em;
    margin-right: 10px;
  }

  .gacha_card_name{
    font-size: 1.2em;
  }

  .gacha_card_ball_span{
    font-size: 1.3em;
    margin-right: 3px;
  }




/* get_card.php ページ */

  /* jsでのタブ部分処理 */
  .get_card_tab{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 15px;
    margin-top: 15px;
    width: 100%;
  }
  .get_card_tab_a{
    display: block;
    text-align: center;
    padding: 15px;
    border-bottom: 4px solid rgba(0,0,0,0.3);
  }
  .get_card_tab_li.tab_active a{
    color: blue;
    border-bottom: 4px solid blue;
  }

  .get_card_area{
    display: none;
    opacity: 0;
  }
  .get_card_area.is_tab_active{
    display: block;
    animation-name: disp_anime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  @keyframes disp_anime{
    from{opacity: 0;}
    to{opacity: 1;}
  }
  /* jsでのタブ部分終了 */

  .get_card_main{
    width: 90vw;
    max-width: 320px;
    margin: 0 auto;
  }

  .get_card_field{
    width: 100%;
  }

  .get_card_form{
    width: 100%;
  }

  .get_card_ul{
    flex-wrap: wrap;
    width: 100%;
    max-height: 60vh;
    overflow: scroll;
  }
  .send_card_ul{
    flex-wrap: wrap;
    width: 100%;
    max-height: 80vh;
    overflow: scroll;
  }
  .reduction_card_ul{
    flex-wrap: wrap;
    width: 100%;
    max-height: 80vh;
    overflow: scroll;
  }
  .select_card_ul{
    flex-wrap: wrap;
    width: 100%;
    overflow: scroll;
  }

  .get_card_label{
    box-sizing: border-box;
    width: 44%;
    height: 70px;
    margin: 20px 5px 10px 10px;
  }

  .get_card_li_no{
    font-size: 15px;
    margin-top: 50px;
  }

  .get_card_li{
    box-sizing: border-box;
    width: 100%;
    height: 70px;
    padding: 5px 0 5px 50px;
    border-radius: 5px;
    font-size: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(0, 0, 0, 0);
  }

  .hidden_check{
    display: none;
  }

  .get_card_img{
    position: absolute;
    top: -1px;
    left: -6px;
    box-sizing: border-box;
    width: 50px;
    height: 70px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    transform: rotate(-7deg);
  }
  .circl_check{
    position: absolute;
    bottom: 0px;
    right: 0px;
    box-sizing: border-box;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background-color: white;
  }
  .circl_check_in{
    position: absolute;
    bottom: 2px;
    right: 2px;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    text-align: center;
    line-height: 1.5;
    color: white;
    background-color: gray;
  }

  .get_card_rarity{
    text-shadow: 0 0 1.2px black;
    font-style: italic;
    font-size: 1.4em;
    margin-right: 10px;
  }

  .get_card_name{
    font-size: 1.1em;
    text-shadow: 1px 1px 2px black;
  }

  .get_card_ball_span{
    font-size: 1.5em;
    margin-right: 3px;
    color: red;
    text-shadow: 0 0 1px black;
  }

  .get_card_submit_div{
    box-sizing: border-box;
    width: 100%;
    height: 12vh;
  }
  .get_card_submit{
    width: 30%;
    height: 6vh;
    margin: 0 25px;
    border-radius: 10px;
    box-shadow: 1px 1px 1px gray;
    border: none;
    font-size: 15px;
    letter-spacing: 2px;
    text-align: center;
    color: white;
  }
  .get_card_submit:nth-child(1){
    background-color: darkred;
  }
  .get_card_submit:nth-child(2){
    background-color: seagreen;
  }



/* get_card_select */

  .g_c_s_body{
    height: 100vh;
  }

  .g_c_s_h1{
    margin: 20px auto 30px;
    font-size: 20px;
    text-align: center;
  }

  .g_c_s_p{
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
  }


  /* card_select_done */

  .c_s_d_a{
    width: 30%;
    height: 30px;
    border-radius: 10px;
    box-shadow: 1px 1px 1px gray;
    font-size: 13px;
    letter-spacing: 0px;
    text-align: center;
    color: black;
    line-height: 2.2;
    background-color: cyan;
  }



  /* delivery_req */

    .delivery_req_tab_li{
      width: 50%;
    }

    .delivery_req_li{
      box-sizing: border-box;
      width: 100%;
      height: 70px;
      padding: 12px;
      border-radius: 5px;
      font-size: 10px;
      color: white;
      background-color: rgba(0, 0, 0, 0.3);
      border: 3px solid rgba(0, 0, 0, 0);
    }

    .delivery_req_h2{
      text-align: left;
      letter-spacing: 1.2px;
    }
    .delivery_req_p{
      text-align: right;
      padding: 8px 10px 0 0;
      letter-spacing: 1.5px;
    }

    .delivery_req_span{
      font-size: 1.6em;
      text-shadow: 0 0 3px black;
    }



  /* delivery_req_check */

    .drc_body{
      padding-bottom: 50px;
    }

    .drc_top_p{
      font-size: 15px;
      line-height: 1.3;
      text-align: center;
      margin: 30px 0 20px;
    }

    .drc_member_info{
      margin: 20px 0 0;
      letter-spacing: 1px;
      line-height: 1.3;
      width: 90vw;
      max-width: 320px;
    }
    .drc_member_info p{
      margin: 5px;
    }

    .drc_li{
      letter-spacing: 0.5px;
    }

    .drc_line{
      background-color: darkslategray;
      border-radius: 1px;
      width: 300px;
      height: 2px;
      margin: 30px auto 20px;
    }




  /* ハンバーガーメニュー */

  .global_nav_menu{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 60% 15%;
    height: 100vh;
    box-sizing: border-box;
  }
  .gnav_menu_item{
    font-size: 14px;
    font-family: serif;
    position: relative;
  }
  .gnav_menu_item a{
    width: 320px;
    height: auto;
    color: #fff;
  }
  .gnav_menu_item span{
    font-size: 1.7em;
    margin-right: 12px;
    font-family: sans-serif;
  }

  /* ハンバーガーをクリックしたらナビを表示する処理 */
  .click_fade_nav{
    position: fixed;
    z-index: 996;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
  }






/* oripa_register関係 */

/* oripa_name */

  .o_n_main{
    width: 90vw;
    max-width: 320px;
    flex-grow: 1;
    margin: 0 auto;
  }
  .o_n_h1{
    font-size: 24px;
    text-align: center;
    margin: 30px 0 20px;
  }
  .o_n_p{
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin: 20px auto;
  }
  .o_n_file{
    margin-bottom: 8px;
  }
  .o_n_need_ball{
    box-sizing: border-box;
    width: 45%;
    font-size: 12px;
    margin-bottom: 6px;
  }
  .o_n_input{
    box-sizing: border-box;
    width: 80%;
    font-size: 12px;
  }
  .o_n_submit{
    box-sizing: border-box;
    width: 15%;
    margin-left: 3%;
    font-size: 12px;
    color: black;
    background-color: lightgreen;
    border: 1px solid black;
    border-radius: 3px;
  }

  .o_n_main table{
    width: 95%;
    margin: 0 auto;
  }
  .o_n_main td{
    border: 1px solid black;
    padding: 6px;
  }

  .o_n_draft_name_td{
    font-size: 15px;
    width: 83%;
  }

  .o_n_draft_submit{
    box-sizing: border-box;
    width: 100%;
    font-size: 12px;
    color: black;
    background-color: lightgreen;
    border: 1px solid black;
    border-radius: 3px;
  }



/* oripa_register */

  .o_r_main{
    width: 90vw;
    max-width: 320px;
    margin: 0 auto;
  }
  .o_r_main form{
    width: 100%;
  }

  .o_r_h1{
    font-size: 25px;
    text-align: center;
    margin: 20px 0;
  }

  .o_r_oripa_name{
    font-size: 18px;
    text-align: center;
    margin: 20px 0 10px;
  }

  .o_r_name_edit_div{
    text-align: right;
    margin-bottom: 10px;
  }
  .o_r_name_edit_input{
    display: inline-block;
    width: 85px;
    text-align: center;
    color: black;
    font-size: 12px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: #ececec;
    padding: 6px;
  }

  .o_r_ul{
    width: 100%;
  }

  .o_r_li{
    width: 100%;
    margin-bottom: 20px;
    color: black;
  }

  .o_r_h2{
    display: inline-block;
    background-color: rgb(150, 245, 245);
    border: 2px solid black;
    border-bottom: none;
    width: 65px;
    height: 30px;
    box-sizing: border-box;
    font-size: 15px;
    margin-left: 0;
    padding: 5px;
    text-align: center;
  }
  .o_r_item_delete_span{
    position: absolute;
    top: -2px;
    left: 61px;
    box-sizing: border-box;
    width: 65px;
    height: 30px;
    background-color: rgb(150, 245, 245);
    border: 2px solid black;
    border-bottom: none;
  }
  .o_r_item_delete_input{
    font-size: 10px;
    background-color: orange;
    border: 1px solid black;
    border-radius: 3px;
  }

  .o_r_block{
    box-sizing: border-box;
    background-color: rgb(150, 245, 245);
    width: 100%;
    border: 2px solid black;
  }

  .o_r_block_line{
    width: 95%;
    margin: 0 auto;
    border-bottom: 1px solid black;
  }

  .o_r_select_div{
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    margin: 5px 0;
  }

  .o_r_select_left{
    box-sizing: border-box;
    text-align: center;
    width: 65px;
    min-width: 65px;
    line-height: 1.2;
    letter-spacing: 1px;
    font-size: 15px;
    border-right: 1px solid black;
  }

  .o_r_select_right{
    flex-grow: 1;
  }
  .o_r_select_submit{
    width: 130px;
    letter-spacing: 1px;
    color: black;
    background-color: lightgreen;
    border: 1px solid black;
    border-radius: 3px;
  }

  .o_r_new_div{
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    margin: 5px 0;
  }

  .o_r_new_left{
    box-sizing: border-box;
    text-align: center;
    width: 65px;
    min-width: 65px;
    line-height: 1.2;
    letter-spacing: 1px;
    font-size: 15px;
    border-right: 1px solid black;
  }

  .o_r_new_right{
    flex-grow: 1;
    height: 60px;
    margin-left: 5px;
  }

  .o_r_new_input{
    width: 220px;
  }

  .o_r_rarity{
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    margin: 5px 0;
    font-size: 14px;
  }

  .o_r_radio{
    margin-top: 0px;
    margin-right: 1px;
    margin-bottom: 2px;
  }
  .o_r_radio_span{
    margin-right: 7px;
  }

  .o_r_others{
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    margin: 5px 0;
    font-size: 14px;
  }

  .o_r_input_ball{
    width: 30px;
    text-align: center;
  }
  .o_r_ball_span{
    margin-left: 3px;
    margin-right: 10px;
  }

  .o_r_input_psa{
    margin-left: 3px;
    width: 70px;
  }

  .o_r_input_quantity{
    margin-left: 3px;
    width: 30px;
    text-align: center;
  }
  .o_r_quantity_span{
    margin-left: 10px;
  }

  .submit_space{
    width: 85%;
    margin: 20px auto 50px;
  }
  .o_r_submit{
    width: 80%;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 13px;
    color: black;
    background-color: lightgreen;
    border: 1px solid black;
    border-radius: 3px;
  }

  .o_r_under{
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    margin: 5px 0;
  }

  .o_r_under_item{
    width: 25%;
    text-align: center;
  }
  .o_r_short_line{
    width: 80%;
    margin: 5px auto;
    border-bottom: 1px solid black;
  }
  .o_r_under_h4{
    font-size: 14px;
  }
  .o_r_under_p{
    font-size: 11px;
  }
  .o_r_under_span{
    font-size: 14px;
  }

  .all_delete_div{
    text-align: right;
    margin-bottom: 30px;
  }
  .all_delete_submit{
    display: inline-block;
    width: 110px;
    text-align: center;
    color: black;
    font-size: 12px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: lightgray;
    padding: 6px;
  }


/* oripa_register_select */

  .card_select_main{
    width: 90vw;
    max-width: 320px;
    margin: 0 auto;
  }

  .card_select_h1{
    font-size: 24px;
    text-align: center;
    margin: 20px auto;
  }

  .search_place{
    width: 90vw;
    max-width: 320px;
    margin: 0 auto;
  }
  .search_text{
    width: 70%;
    font-size: 13px;
    margin-right: 5px;
    padding: 2px;
  }
  .search_submit{
    width: 12%;
    color: black;
    padding: 2px;
    font-size: 11px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: aquamarine;
  }

  .search_place_a{
    width: 100%;
    margin: 10px auto 20px;
    color: black;
  }
  .no_select_a{
    width: 40%;
    font-size: 12px;
    text-align: center;
    border: 1px solid black;
    border-radius: 5px;
    background-color: violet;
    padding: 4px;
    color: black;
  }
  .no_search_a{
    width: 40%;
    font-size: 12px;
    text-align: center;
    border: 1px solid black;
    border-radius: 5px;
    background-color: aquamarine;
    padding: 4px;
    color: black;
  }

  .card_select_li{
    width: 70px;
    height: 120px;
    padding: 3px;
    border: 1px solid black;
    border-radius: 5px;
    margin: 10px;
  }
  .card_select_ul{
    margin: 0 auto 20px;
    flex-wrap: wrap;
  }

  .card_select_bg{
    width: 70px;
    height: 75px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
  }
  .card_select_h2{
    font-size: 11px;
    margin: 5px 2px;
    white-space: nowrap;
    overflow: scroll;
  }
  .card_select_h2::-webkit-scrollbar{
    display: none;
  }
  .card_select_submit{
    display: block;
    font-size: 10px;
    width: 95%;
    margin: 0 auto;
    background-color: aqua;
    border: 1px solid black;
    border-radius: 3px;
    color: black;
    padding: 1px;
  }


/* oripa_register_check */
  .o_r_c_main{
    width: 85vw;
    max-width: 320px;
    margin: 0 auto;
  }

  .o_r_c_h1{
    font-size: 25px;
    text-align: center;
    margin: 20px;
  }

  .o_r_c_conf_p{
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 10px;
    white-space: nowrap;
  }

  .o_r_c_oripa_name{
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .o_r_c_p{
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .o_r_c_card_num{
    text-align: center;
    font-size: 13px;
  }

  .o_r_c_master,
  .o_r_c_hyper,
  .o_r_c_super,
  .o_r_c_others{
    border-left: 2px solid black;
    padding: 0 0 20px 5px;
    margin-top:20px;
    margin-left: 15%;
  }

  .o_r_c_master_h2,
  .o_r_c_hyper_h2,
  .o_r_c_super_h2,
  .o_r_c_others_h2{
    font-size: 22px;
    margin-bottom: 10px;
  }

  .o_r_c_master_p,
  .o_r_c_hyper_p,
  .o_r_c_super_p,
  .o_r_c_others_p{
    font-size: 15px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
  }

  .o_r_c_master_span,
  .o_r_c_hyper_span,
  .o_r_c_super_span,
  .o_r_c_others_span{
    font-size: 0.5em;
  }

  .o_r_c_form{
    margin: 25px auto;
  }
  .o_r_c_form input{
    width: 100px;
    font-size: 15px;
    margin: 0px 10px;
    color: black;
    background-color: lightgreen;
    border: 1px solid black;
    border-radius: 3px;
  }

  .o_r_d_form{
    margin: 25px auto;
  }
  .o_r_d_form input{
    width: 70px;
    height: 50px;
    color: black;
    background-color: lightgray;
    text-align: center;
    font-size: 16px;
    margin: 0px 15px;
  }

  .o_r_c_button{
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    background-color: #69e0dc;
    margin: 10px;
  }
  .o_r_c_button a{
    display: inline-block;
    font-size: 15px;
    color: black;
    text-shadow: 0 0 5px white, 0 0 5px white;
  }





/* oripa_list */

  .o_l_main{
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }
  .o_l_main table{
    margin: 0 auto;
    width: 100%;
    box-shadow: 2px 2px 5px gray;
  }
  .o_l_main td{
    border: 1px solid black;
    padding: 4px;
    font-size: 13px;
  }

  .o_l_h1{
    margin: 30px auto 10px;;
    font-size: 20px;
    text-align: center;
  }

  .o_l_p{
    margin: 10px auto 20px;
    font-size: 15px;
    text-align: center;
    line-height: 1.2;
  }

  .o_l_td_status{
    width: 20%;
    text-align: center;
  }

  .o_l_td_submit{
    width: 17%;
    text-align: center;
  }
  .o_l_detail_submit,
  .o_l_period_submit{
    color: black;
    background-color: lightgreen;
    border: 1px solid black;
    border-radius: 3px;
  }

  .o_d_ul{
    margin-top: 30px;
  }

  .o_d_top_image_div{
    margin: 30px auto 10px;
  }

  .o_d_top_image_p{
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-right: 10px;
  }

  .o_d_edit_submit{
    font-size: 15px;
    width: 50px;
    background-color: aquamarine;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .o_d_top_image{
    width: 300px;
    height: 320px;
    max-height: 300px;
    margin: 0 auto 30px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    box-shadow: 0 0 7px 7px white inset;
  }

  .o_l_period_form{
    text-align: center;
  }







/* payment */


/* payment_ball */

  .payball_main{
    width: 90%;
    max-width: 400px;
    margin: 40px auto;
  }

  .payball_h1{
    text-align: center;
    font-size: 25px;
    margin-bottom: 15px;
  }

  .payball_possession_ball{
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .payball_span{
    font-size: 1.6em;
    margin-right: 2px;
  }

  .payball_info{
    text-align: center;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .payball_ul{
    width: 100%;
    margin: 0 auto;
  }

  .payball_li{
    width: 80%;
    max-width: 320px;
    height: 80px;
    background-color: rgb(200, 246, 255);
    box-shadow: 3px 3px 5px gray;
    padding: 5px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .price_div{
    width: 120px;
    height: 50px;
  }
  .payball_ball{
    font-size: 16px;
    color: black;
  }
  .payball_pay{
    font-size: 14px;
    color: rgba(0, 0, 0,0.6);
  }

  .stripe_a{
    width: 90px;
    height: 37px;
    background-color: #1a1a1a;
    color: white;
    box-sizing: border-box;
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 5px 3px black inset;
    line-height: 2.3;
  }

  .payment_err_a{
    font-size: 15px;
    color: darkblue;
    text-decoration: underline;
  }

  .payball_img{
    display: block;
    width: 40px;
    margin: 0 auto 15px;
  }






/* others */


/* PrivacyPolicy */

  .privacy_main{
    width: 90%;
    margin: 40px auto;
  }
  .space_height{
    height: 70px;
  }
  .privacy_main h1{
    margin: 0 auto 8px;
    text-align: center;
    font-size: 28px;
  }
  .privacy_p{
    text-align: center;
    margin: 8px auto 20px;
  }

  .privacy_main h2{
    margin: 60px auto 20px;
    text-align: center;
    font-size: 24px;
  }

  .privacy_main p,
  .privacy_main li{
    font-family: serif;
    font-size: 16px;
    letter-spacing: 1px;
  }



/* 特定商取引法 */

  .sct_main{
    width: 100%;
  }

  .sct_main h1{
    margin: 28px auto 28px;
    text-align: center;
    font-size: 26px;
  }

  .sct_table{
    width: 90%;
    margin: 0 auto 28px;
    border-collapse: collapse;
    background-color: #efe5cd;
    box-shadow: 2px 2px 5px black;
  }
  .sct_table tbody{
    display: block;
    width: 95%;
    margin: 0 auto;
  }
  .sct_table th{
    width: 25%;
  }
  .sct_table th,.sct_table td{
    color: black;
    font-size: 14px;
    padding: 12px 0;
    letter-spacing: 1px;
    border-bottom: solid 1px #606060;
    line-height: 1.2;
    vertical-align: middle;
  }
  .sct_table span{
    display: block;
    margin-top: 4px;
    font-size: 0.8em;
    letter-spacing: 0.6px;
  }



/* コンタクトフォーム */

  .contact_main{
    text-align: start;
    width: 90vw;
    max-width: 350px;
  }
  .contact_main h1{
    font-size: 24px;
    text-align: center;
    margin: 16px;
  }
  .contact_main h2{
    font-size: 20px;
    margin: 16px 0 4px;
  }
  .contact_main input{
    width: 160px;
    height: 28px;
    display: block;
    margin: 4px 0 16px;
  }
  .contact_main input[type="submit"]{
    background-color: aquamarine;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .contact_main .contact_input{
    width: 320px;
  }

  .contact_p{
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
  }

  .contact_textarea{
    width: 320px;
  }

  .contact_button{
    border: 1px solid black;
    border-radius: 10px;
    padding: 12px;
    background-color: #69e0dc;
    margin: 20px;
  }
  .contact_button a{
    display: inline-block;
    font-size: 18px;
    color: black;
    text-shadow: 0 0 5px white, 0 0 5px white;
  }





/* 管理者ログイン・登録ページ */

  .admin_login_main{
    text-align: center;
  }
  .admin_login_main h1{
    font-size: 24px;
    margin: 16px;
  }
  .admin_login_main h2{
    font-size: 20px;
    margin: 16px 0 4px;
  }
  .admin_login_main input{
    width: 240px;
    display: block;
    margin: 4px 0 16px;
  }
  .admin_login_main input[type="submit"]{
    display: block;
    margin: 4px 0 16px;
    width: 160px;
    height: 28px;
    background-color: aquamarine;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .admin_top_main{
    height: 45%;
  }
  .admin_top_main ul{
    height: 100%;
    padding-top: 20px;
  }

  .admin_register_button{
    border: 1px solid black;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    height: 45px;
    margin-bottom: 2vh;
    background-color: rgb(111 213 255);
  }
  .admin_register_button a{
    display: block;
    font-size: 18px;
    color: black;
    text-shadow: 0 0 2px white;
    width: 200px;
    height: 45px;
    line-height: 2.3;
  }

/* 管理者一覧 */

  .admin_list_body{
    min-height: 100vh;
  }

  .admin_nolist_p{
    font-size: 20px;
    line-height: 2;
    text-align: center;
  }

  .admin_list_h1{
    font-size: 28px;
    text-align: center;
    margin: 5vh auto;
  }

  .admin_list_table{
    width: 320px;
    background-color: #ffd5a3;
    box-shadow: 2px 2px 5px gray;
  }

  .admin_list_tr td{
    padding: 8px;
    border: 1px solid black;
  }

  .admin_list_login_id{
    font-size: 20px;
    letter-spacing: 1px;
    width: 70%;
  }
  .admin_list_submit{
    width: 15%;
  }
  .admin_list_button{
    font-size: 14px;
    color: black;
    background-color: lightgreen;
    border: 1px solid black;
    border-radius: 3px;
  }

  .admin_list_under_button{
    border: 1px solid black;
    border-radius: 10px;
    text-align: center;
    width: 120px;
    height: 35px;
    margin: 10px;
    background-color: rgb(111 213 255);
  }
  .admin_list_under_button a{
    display: block;
    font-size: 15px;
    color: black;
    text-shadow: 0 0 2px white;
    width: 120px;
    height: 35px;
    line-height: 2.3;
  }

/* 管理者delete */

  .admin_delete_main{
    width: 60vw;
    max-width: 300px;
  }
  .admin_delete_main h1{
    font-size: 28px;
    text-align: center;
    margin-top: 3vh;
    margin-bottom:  60px;
  }
  .admin_delete_main h2{
    font-size: 20px;
    margin-bottom: 12px;
  }
  .admin_delete_main p{
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    white-space: nowrap;
  }
  .admin_delete_main .input_pass{
    display: block;
    font-size: 20px;
    width: 100px;
    margin:0 auto 48px;
  }
  .admin_delete_main input[type=submit]{
    display: block;
    font-size: 14px;
    width: 160px;
    margin:20px auto;
    color: black;
    background-color: lightgreen;
    border: 1px solid black;
    border-radius: 3px;
  }





/* 会員登録ページ */

  .member_register_body .error_message{
    margin: 40px 0 0;
  }

  .member_register_main{
    width: 300px;
  }
  .member_register_main h1{
    font-size: 28px;
    margin: 30px 0 10px;
    text-align: center;
  }
  .member_register_main h2{
    font-size: 16px;
    margin: 20px 0 8px;
  }
  .member_register_main input{
    display: inline;
    font-size: 16px;
  }
  .member_register_main button{
    background-color: #e1e1e1;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 14px;
    width: 200px;
    display: block;
    text-align: center;
    margin-top: 12px;
  }
  .member_register_main span{
    font-size: 16px;
  }
  .member_register_main .register_button{
    width: 160px;
    height: 28px;
    background-color: aquamarine;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    margin: 20px auto;
    display: block;
  }
  .member_register_main .required{
    font-size: 12px;
    color: red;
    display: inline-block;
  }

  .member_form_explanation{
    font-size: 15px;
    color: black;
    line-height: 1.3;
    letter-spacing: 0.5px;
  }

  .m_first_a{
    display: block;
    text-align: center;
    font-size: 18px;
    margin: 20px auto;
    text-decoration: underline;
  }


  .member_name{
    width: 240px;
  }

  .member_email{
    width: 280px;
  }

  .member_pass{
    width: 280px;
  }

  .member_tel{
    width: 280px;
  }

  .member_postal{
    width: 200px;
    box-sizing: border-box;
  }

  .member_address{
    width: 280px;
  }

  .birth_select select{
    font-size: 18px;
    padding: 4px 0;
  }

  .register_confirm_p{
    display: inline-block;
    font-size: 20px;
    margin: 0 12px 8px 40px;
  }

  .resetting_p{
    line-height: 1.3;
  }

  .admin_login_main .resetting_input{
    width: 280px;
  }

  .delivery_done_main{
    width: 320px;
    margin: 0 auto;
  }

  .delivery_done_h1{
    text-align: center;
    font-size: 24px;
    margin-bottom: 6vh;
    letter-spacing: 1px;
  }

  .delivery_done_p{
    font-size: 16px;
    margin-bottom: 6vh;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .delivery_done_button{
    width: 170px;
    text-align: center;
    border: 1px solid black;
    border-radius: 10px;
    padding: 12px;
    background-color: #69e0dc;
    margin: 12px 0;
  }
  .delivery_done_button a{
    display: inline-block;
    font-size: 18px;
    color: black;
    text-shadow: 0 0 5px white, 0 0 5px white;
  }




/* footer */

  footer{
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
  }

  .long_border_div{
    margin: 40px auto 15px;
    border-top: 2px solid rgb(70, 40, 0);
    border-radius: 10%;
    width: 80%;
    max-width: 350px;
    height: 2px;
  }

  .footer_title_p{
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer_title_h{
    font-size: 28px;
    font-family: 'Marcellus', serif;
  }

  .footer_box {
    width: 80px;
    font-size: 16px;
    margin: 10px 20px;
    padding: 16px 8px;
    border: solid 1px rgb(70, 40, 0);
  }

  .footer_pri_sct{
    width: 75%;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .footer_pri_sct a{
    text-decoration: underline;
  }
 
  .operation{
    font-size: 16px;
    position: relative;
    z-index: 0;
    padding: 6px 8px;
  }
  .operation::before, .operation::after {
    content: '';
    width: 24px;
    height: 16px;
    position: absolute;
  }
  .operation::before {
    border-left: solid 1px rgb(70, 40, 0);
    border-top: solid 1px rgb(70, 40, 0);
    top: 0;
    left: 0;
  }
  .operation::after {
    border-right: solid 1px rgb(70, 40, 0);
    border-bottom: solid 1px rgb(70, 40, 0);
    bottom: 0;
    right: 0;
  }

  .lastP{
    font-size: 12px;
    margin: 10px auto 25px;
  }





/* ------------------script------------------- */



  /* クリックでハンバーガーをバツにする処理 */
    /*ボタン外側*/
  .openbtn8{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    z-index: 999;
    width: 60px;
    height: 60px;
  }
  /*ボタン内側*/
  .openbtn8 .openbtn-area{
    transition: all .6s;/*アニメーションの設定*/
    width: 100%;
    height:100%;
  }
  .openbtn8 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 15.2px;
    height: 2.8px;
    border-radius: 5px;
    background: #fff;
    width: 50%;
    box-shadow: 0 0 5px black;
  }
  .openbtn8 span:nth-of-type(1) {
    top:32%; 
  }
  .openbtn8 span:nth-of-type(2) {
    top:50%;
  }
  .openbtn8 span:nth-of-type(3) {
    top:50%;
    opacity: 0;
  }
  .openbtn8 span:nth-of-type(4) {
    top:68%;
  }
  /*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
  .openbtn8.active .openbtn-area{
    transform: rotate(180deg);
  }
  .openbtn8.active span:nth-of-type(1) {
    opacity: 0;
  }
  .openbtn8.active span:nth-of-type(2) {
    transform: rotate(45deg);
  }
  .openbtn8.active span:nth-of-type(3) {
    transform: rotate(-45deg);
    opacity: 100;
  }
  .openbtn8.active span:nth-of-type(4){
    opacity: 0;
  }


}

























/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */





























/* 横型画面設定 */
@media screen and (orientation: landscape) {


  /* flex関係、relative関係 */
  
    .flex_row_start_start{
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .flex_row_start_end{
      display: flex;
      justify-content: flex-start;
      align-items: flex-end;
    }
  
    .flex_row_end_center{
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
    
    .flex_row_start_center{
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }
    
    .flex_row_center_start{
      display: flex;
      justify-content: center;
      align-items: start;
    }
    
    .flex_row_between{
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }
    
    .flex_row_between_center{
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .flex_row_around{
      display: flex;
      justify-content: space-around;
    }
    
    .flex_row_around_center{
      display: flex;
      justify-content: space-around;
      align-items: center;
    }
    
    .flex_row_center{
      display: flex;
      justify-content: center;
    }
    
    .flex_row_center_center{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .flex_row_wrap{
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
    
    .flex_column{
      display: flex;
      flex-direction: column;
    }
    
    .flex_column_between_center{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }
    
    .flex_column_between_left{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: start;
    }
    
    .flex_column_around_center{
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: center;
    }
    
    .flex_column_around_left{
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: start;
    }
    
    .flex_column_center_center{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .flex_column_end_center{
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
    }
  
    .flex_column_center_start{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }
    
    .flex_column_end_end{
      display: flex;
      flex-direction: column;
      justify-content: end;
      align-items: flex-end;
    }
    
    .relative_object{
      position: relative;
    }
    
    .border_div{
      width: 80px;
      margin: 0 auto;
      border-bottom: solid 1px rgb(70, 40, 0);
    }
    
    .border_long_div{
      width: 280px;
      margin: 20px auto 8px;
      border-bottom: solid 1px rgb(70, 40, 0);
    }
    
    .body_full_screen{
      min-height: 100vh;
    }
    
    .error_message{
      font-size: 12px;
      color: black;
      border: 2px solid red;
      background-color: rgba(255,0,0,0.2);
      padding: 12px;
      margin: 12px auto 0;
    }
    
    
  
  
  /* header */
  
    header{
      width: 100%;
      position: fixed;
      z-index: 990;
      height:  55px;
      background-color: rgb(236, 253, 255);
      box-shadow: 0 0 10px black;
    }
  
    .header_base{
      width: 100%;
      position: fixed;
      height: 55px;
    }
  
    .header_space{
      height: 55px;
    }

    .header_ul{
      justify-content: flex-start;
    }
  
    .header_ul li{
      height: 55px;
    }
  
    .click_fade_nav{
      width: 100%;
      height: 55px;
    }
  
    .header_title{
      display: block;
      font-size: 22px;
      color: darkred;
      text-shadow: 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white;
      font-family: 'Rampart One', cursive;
      letter-spacing: -5px;
      margin: 16px 28px 0 9px;
      white-space: nowrap;
    }
  
    .space_li{
      display: none;
    }
  
    .remain_ball_li{
      margin-right: 20px;
    }
    .remain_ball_a{
      display: flex;
      justify-content: flex-end;
      align-items: center;
      width: 115px;
      height: 28px;
      padding-right: 8px;
      box-sizing: border-box;
      color: white;
      background-color: #303030;
      border-radius: 14px;
    }
    .remain_ball_span{
      font-size: 15px;
    }
    .remain_ball_span_in{
      font-size: 0.5em;
      letter-spacing: -0.5px;
      margin-left: 2px;
    }
    .remain_ball_image{
      position: absolute;
      top: -10px;
      left: -15px;
      width: 32px;
    }

    .header_li_nav{
      flex-grow: 1;
    }
  
    .icon_item{
      width: 24px;
      height: 24px;
    }
  
    .header_under{
      width: 100%;
      height: 55px;
    }
  
    .header_bord{
      width: 100%;
      height: 55px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
  
    .header_m_h1{
      display: none;
    }
  
    .h_border_long_div{
      display: none;
    }
  
    .keep_ball_div{
      display: none;
    }
  
    .ball_count_p{
      display: none;
    }
  
    .ball_payment_button{
      box-sizing: border-box;
      display: block;
      text-align: center;
      width: 100px;
      height: 55px;
      font-size: 12px;
      color: black;
      line-height: 4.4;
      transition: 0.5s;
    }
    .ball_payment_button:hover{
      background: linear-gradient( to right bottom, crimson 0%, white 50%, crimson 100% );
      color: white;
      text-shadow: 2px 2px 3px black;
    }
  
    .delivery_edit_h2{
      box-sizing: border-box;
      display: block;
      text-align: center;
      width: 100px;
      height: 55px;
      font-size: 12px;
      color: black;
      line-height: 4.4;
      transition: 0.5s;
    }
    .delivery_edit_h2:hover{
      background: linear-gradient( to right bottom, green 0%, white 50%, green 100% );
      color: white;
      text-shadow: 2px 2px 3px black;
    }
  
    .delivery_edit_a{
      display: none;
    }
  
    .pokeka_show_button{
      box-sizing: border-box;
      text-align: center;
      width: 100px;
      height: 55px;
      font-size: 12px;
      color: black;
      line-height: 4.4;
      transition: 0.5s;
    }
    .pokeka_show_button:hover{
      background: linear-gradient( to right bottom, gold 0%, white 50%, gold 100% );
      color: white;
      text-shadow: 2px 2px 3px black;
    }
  
    .top_show_button , 
    .logout_button , 
    .contact_show_button ,
    .pass_edit{
      box-sizing: border-box;
      display: block;
      text-align: center;
      width: 100px;
      height: 55px;
      font-size: 12px;
      color: black;
      line-height: 4.4;
      transition: 0.5s;
    }
    .top_show_button:hover ,
    .logout_button:hover , 
    .contact_show_button:hover ,
    .pass_edit:hover{
      background: linear-gradient( to right bottom, blue 0%, white 50%, blue 100% );
      color: white;
      text-shadow: 2px 2px 3px black;
    }
  
  
    /* オリパトップページ */
  
    .item_li{
      width: 80vw;
      height: 80vw;
      max-width: 450px;
      max-height: 450px;
      margin-top: 40px;
      border-radius: 10px;
      box-shadow: 5px 5px 8px 3px darkslategray;
    }

    .index_soldout{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 10px;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 20px;
      color: white;
    }
  
    .item_form{
      width: 100%;
      height: 100%;
    }
    .item_button{
      width: 100%;
      height: 100%;
      border-radius: 10px;
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
      box-shadow: 0 0 7px 7px white inset;
    }
  
    .item_title{
      width: 95%;
      height: 16%;
      margin-top: 10px;
      background-image: url(../image/telop_whitegold.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }
    .item_title_h2{
      font-size: 20px;
      color: black;
      text-shadow: 0 0 1px aqua;
      font-family: 'Rampart One', cursive;
      width: 85%;
      text-align: center;
      white-space: nowrap;
      overflow: scroll;
    }
  
    .item_under{
      width: 85%;
      height: 20%;
      margin-bottom: 15px;
    }
  
    .need_ball_box{
      width: 35%;
      height: 38%;
      padding: 3px 5px 2px 2px;
      border-radius: 10px 10px 0 0;
      background-color: rgba(0,0,0,0.6);
    }
    .item_ball_img{
      width: 30%;
    }
    .item_ball_span{
      font-size: 15px;
      color: white;
      letter-spacing: 1px;
    }
  
    .item_pokeca_remain_back{
      box-sizing: content-box;
      width: 100%;
      height: 38%;
      border: 2px solid black;
      border-radius: 10px;
      background-color: rgba(100, 100, 100, 0.6);
    }
    .item_pokeca_remain_front{
      box-sizing: content-box;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      border-radius: 10px;
      background: linear-gradient(
        to right bottom,
        #00cdff 0%,
        #e7faff 50%,
        #00a1ff 100%
      );
    }
    .item_pokeca_remain_span{
      position: absolute;
      color: black;
      text-shadow: 0 0 5px white, 0 0 3px white;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      font-size: 12px;
      white-space: nowrap;
    }
  
  
  
    /* poke_item個別ページ */
  
    .poke_item_body{
      width: 100%;
      height: auto;
    }
  
    .poke_item_bg{
      position: fixed;
      z-index: 1;
      width: 100%;
      max-width: 450px;
      height: 100vh;
      top:  60px;
      left: 50%;
      transform: translate(-50%, -0%);
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, -0%);
    }
    .poke_item_bg_image{
      display: block;
      min-width: 350px;
      width: 100%;
      max-width: 450px;
      height: auto;
    }
  
    .poke_item_main{
      width: 100%;
      max-width: 450px;
      height: auto;
      z-index: 2;
      background-color: rgba(0, 0, 0, 0.7);
      text-align: center;
      margin: 75vh auto 0;
      padding: 28px 0 45vh;
    }
  
    .poke_item_main_h1_1{
      font-family: 'Alfa Slab One', cursive;
      font-size: 50px;
      margin: 40px auto 50px;
      color: #DA8E00;
      background: -webkit-linear-gradient(-45deg, gold, white, rgb(230, 190, 0), white, gold, white, rgb(230, 190, 0), white, gold, white, rgb(230, 190, 0),gold, white, rgb(230, 190, 0));
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  
    .poke_item_main_h1_2{
      font-family: 'Alfa Slab One', cursive;
      font-size: 45px;
      margin: 40px auto 40px;
      color: #DA8E00;
      background: -webkit-linear-gradient(-45deg, silver, white, rgb(160, 160, 160), white, silver, white, rgb(160, 160, 160), white, silver, white, rgb(160, 160, 160),silver, white, rgb(160, 160, 160));
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  
    .poke_item_main_h1_3{
      font-family: 'Alfa Slab One', cursive;
      font-size: 40px;
      margin: 40px auto 30px;
      color: #DA8E00;
      background: -webkit-linear-gradient(-45deg, skyblue, white, rgb(84, 189, 231), white, skyblue, white, rgb(84, 189, 231), white, skyblue, white, rgb(84, 189, 231),skyblue, white, rgb(84, 189, 231));
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  
    .master_card_space{
      width: 90%;
      max-width: 405px;
      margin: 0 auto;
      flex-wrap: wrap;
    }
  
    .master_item{
      box-sizing: border-box;
      padding: 10px 5px 15px;
      width: 140px;
      height: 192px;
      border-radius: 10px;
      margin: 0 15px 30px 15px;
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
      box-shadow: 0 0 20px 5px white, 0 0 10px 3px gold, 0 0 10px 3px white inset;
    }
    .master_item_p{
      font-size: 20px;
      color: white;
      font-family: serif;
    }
    .master_item_h2{
      width: 100%;
      font-size: 15px;
      color: white;
      text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
      letter-spacing: -2px;
      font-family: serif;
      white-space: nowrap;
      overflow: hidden;
    }
    .master_item_under{
      width: 85%;
    }
    .master_item_under_psa{
      color: white;
      text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
      font-size: 15px;
      font-family: serif;
    }
    .master_item_under_quantity{
      color: white;
      text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
      font-size: 20px;
      font-family: serif;
    }
  
    .hyper_card_space{
      width: 90%;
      max-width: 405px;
      margin: 0 auto;
      flex-wrap: wrap;
    }
  
    .hyper_item{
      box-sizing: border-box;
      padding: 8px 2px;
      width: 100px;
      height: 136px;
      border-radius: 8px;
      margin: 0 10px 30px 10px;
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
      box-shadow: 0 0 10px 4px white, 0 0 5px 2px silver, 0 0 5px 2px white inset;
    }
    .hyper_item_p{
      font-size: 15px;
      color: white;
      font-family: serif;
    }
    .hyper_item_h2{
      width: 100%;
      font-size: 13px;
      color: white;
      text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
      letter-spacing: -2px;
      font-family: serif;
      white-space: nowrap;
      overflow: hidden;
    }
    .hyper_item_under{
      width: 85%;
    }
    .hyper_item_under_psa{
      color: white;
      text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
      font-size: 10px;
      font-family: serif;
    }
    .hyper_item_under_quantity{
      color: white;
      text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
      font-size: 15px;
      font-family: serif;
    }
  
    .super_card_space{
      width: 90%;
      max-width: 405px;
      margin: 0 auto;
      flex-wrap: wrap;
    }
  
    .super_item{
      box-sizing: border-box;
      padding: 6px 1px;
      width: 64px;
      height: 88px;
      border-radius: 5px;
      margin: 0 10px 20px;
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
      box-shadow: 0 0 5px 3px skyblue, 0 0 2px 1px white inset;
    }
    .super_item_p{
      font-size: 10px;
      color: white;
      font-family: serif;
    }
    .super_item_h2{
      width: 100%;
      font-size: 9px;
      color: white;
      text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
      letter-spacing: -2px;
      font-family: serif;
      white-space: nowrap;
      overflow: hidden;
    }
    .super_item_under{
      width: 85%;
    }
    .super_item_under_psa{
      color: white;
      text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
      font-size: 7px;
      font-family: serif;
    }
    .super_item_under_quantity{
      color: white;
      text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
      font-size: 12px;
      font-family: serif;
    }
  
    .poke_item_main_h3{
      font-size: 16px;
      color: white;
      margin:  60px auto 20px;
    }
  
    .poke_item_main_p{
      font-size: 12px;
      color: white;
      letter-spacing: 1px;
      line-height: 1.2;
    }
  
    .poke_item_under{
      position: fixed;
      width: 100%;
      max-width: 450px;
      height: 25vh;
      z-index: 3;
      background-color: rgb(236, 253, 255);
      box-shadow: 0 -5px 20px 20px rgb(236, 253, 255);
      bottom: 0;
      left: 50%;
      transform: translate(-50%, -0%);
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, -0%);
    }
  
    .poke_item_title{
      width: 290px;
      height: 8vh;
      z-index: 4;
      position: relative;
      background-image: url(../image/telop_whitegold.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }
    .poke_item_title_h2{
      font-size: 19px;
      color: black;
      text-shadow: 0 0 1.5px gold;
      font-family: 'Rampart One', cursive;
      width: 250px;
      text-align: center;
      white-space: nowrap;
      overflow: scroll;
    }
  
    .poke_need_ball_box{
      width: 80px;
      padding: 1px;
      border-radius: 10px 10px 0 0;
      background-color: rgba(0,0,0,0.6);
    }
    .poke_item_ball_img{
      width: 24px;
    }
    .poke_item_ball_span{
      font-size: 14px;
      color: white;
      letter-spacing: 1px;
    }
  
    .poke_item_remain{
      margin-bottom: 1vh;
    }
    .poke_item_pokeca_remain_back{
      box-sizing: content-box;
      width: 290px;
      height: 24px;
      max-height: 25px;
      border: 2px solid black;
      border-radius: 10px;
      background-color: rgba(100, 100, 100, 0.6);
    }
    .poke_item_pokeca_remain_front{
      box-sizing: content-box;
      position: absolute;
      top: 0;
      left: 0;
      height: 24px;
      max-height: 25px;
      border-radius: 10px;
      background: linear-gradient(
        to right bottom,
        #00cdff 0%,
        #e7faff 50%,
        #00a1ff 100%
      );
    }
    .poke_item_pokeca_remain_span{
      position: absolute;
      color: black;
      text-shadow: 0 0 5px white, 0 0 3px white, 0 0 3px white;
      white-space: nowrap;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      font-size: 13px;
    }
  
    .poke_item_form{
      width: 100%;
      max-width: 300px;
      margin-bottom: 15px;
    }
  
    .poke_item_button1{
      width: 100px;
      height: 40px;
      max-height: 40px;
      margin-left: 35px;
      box-sizing: border-box;
      border: 2px solid black;
      border-radius: 10px;
      background: linear-gradient(
        to right bottom,
        red 0%,
        white 50%,
        rgb(230, 0, 0) 100%
      );
    }
    .poke_item_button2{
      width: 100px;
      height: 40px;
      max-height: 40px;
      margin-right: 35px;
      box-sizing: border-box;
      border: 2px solid black;
      border-radius: 10px;
      background: linear-gradient(
        to right bottom,
        gold 0%,
        white 50%,
        rgb(230, 190, 0) 100%
      );
    }
    .poke_item_button_span{
      font-size: 13px;
      white-space: nowrap;
      font-style: italic;
      color: white;
      text-shadow: 0 0 2px black, 0 0 2px black, 0 0 2px black;
    }
  
  
  
    /* アラートダイアログ */
  
    #dialog_disp{
      position: fixed;
      top: 0;
      z-index: 999;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100vh;
      background-color: rgba(255, 255, 255, 0.7);
      animation-name: fadeIn1;
      animation-duration:1s;
      animation-fill-mode:forwards;
      opacity:0;
    }
    @keyframes fadeIn1{
      0% { opacity: 0; }
      50% { opacity: 1; }
      100% { opacity: 1; }
    }
    .dialog{
      width: 250px;
      height: 150px;
      background-color: white;
      border-radius: 10px;
      box-sizing: border-box;
      padding: 25px 20px 20px 20px;
      box-shadow: 0 0 3px 5px gray;
      animation-name: fadeIn2;
      animation-duration:1s;
      animation-fill-mode:forwards;
      opacity:0;
    }
    @keyframes fadeIn2{
      0% { opacity: 0; }
      20% { opacity: 0; }
      100% { opacity: 1; }
    }
    .dialog_p{
      font-size: 18px;
    }
    #dialog_button{
      font-size: 18px;
      margin: 0 0px 0 auto;
      padding: 6px 20px;
      border-radius: 8px;
      background-color: orangered;
      border: 1.5px solid black;
    }
  
  
  
    /* gacha_done.phpページ */
  
    .gacha_main{
      width: 90vw;
      max-width: 320px;
      margin: 0 auto;
    }
  
    .gacha_a{
      display: block;
      box-sizing: border-box;
      background-color: white;
      width: 120px;
      height: 35px;
      text-align: center;
      margin: 20px 0 20px auto;
      border: none;
      border-radius: 10px;
      box-shadow: 0 0 5px 2px gray;
      font-size: 15px;
      line-height: 2.2;
    }

    .gacha_submit{
      display: block;
      box-sizing: border-box;
      background-color: white;
      width: 120px;
      height: 35px;
      text-align: center;
      margin: 20px 0 20px auto;
      border: none;
      border-radius: 10px;
      box-shadow: 0 0 5px 2px gray;
      font-size: 15px;
    }
  
    .gacha_h1{
      font-size: 24px;
      text-align: center;
      margin: 20px auto 40px;
      color: rgba(0, 0, 0, 0.6);
    }
  
    .gacha_ul{
      width: 100%;
    }
  
    .gacha_li{
      box-sizing: border-box;
      width: 85%;
      height: 65px;
      margin: 0px 0 50px 25px;
      padding: 5px 0 5px 70px;
      border-radius: 5px;
      font-size: 10px;
      color: black;
    }
  
    .gacha_card{
      height: 100%;
    }
  
    .gacha_card_img{
      position: absolute;
      top: -15px;
      left: -15px;
      box-sizing: border-box;
      width: 70px;
      height: 98px;
      border-radius: 8px;
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
      transform: rotate(-10deg);
    }
  
    .gacha_card_rarity{
      text-shadow: 0 0 1.2px black;
      font-style: italic;
      font-size: 1.4em;
      margin-right: 10px;
    }
  
    .gacha_card_name{
      font-size: 1.2em;
    }
  
    .gacha_card_ball_span{
      font-size: 1.3em;
      margin-right: 3px;
    }
  
  
  
  
  /* get_card.php ページ */
  
    /* jsでのタブ部分処理 */
    .get_card_tab{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      font-size: 15px;
      margin-top: 15px;
      width: 100%;
    }
    .get_card_tab_a{
      display: block;
      text-align: center;
      padding: 15px;
      border-bottom: 4px solid rgba(0,0,0,0.3);
    }
    .get_card_tab_li.tab_active a{
      color: blue;
      border-bottom: 4px solid blue;
    }
  
    .get_card_area{
      display: none;
      opacity: 0;
    }
    .get_card_area.is_tab_active{
      display: block;
      animation-name: disp_anime;
      animation-duration: 1s;
      animation-fill-mode: forwards;
    }
    @keyframes disp_anime{
      from{opacity: 0;}
      to{opacity: 1;}
    }
    /* jsでのタブ部分終了 */
  
    .get_card_main{
      width: 90vw;
      max-width: 320px;
      margin: 0 auto;
    }
  
    .get_card_field{
      width: 100%;
    }
  
    .get_card_form{
      width: 100%;
    }
  
    .get_card_ul{
      flex-wrap: wrap;
      width: 100%;
      max-height: 60vh;
      overflow: scroll;
    }
    .send_card_ul{
      flex-wrap: wrap;
      width: 100%;
      max-height: 80vh;
      overflow: scroll;
    }
    .reduction_card_ul{
      flex-wrap: wrap;
      width: 100%;
      max-height: 80vh;
      overflow: scroll;
    }
    .select_card_ul{
      flex-wrap: wrap;
      width: 100%;
      overflow: scroll;
    }
  
    .get_card_label{
      box-sizing: border-box;
      width: 44%;
      height: 70px;
      margin: 20px 5px 10px 10px;
    }
  
    .get_card_li_no{
      font-size: 15px;
      margin-top: 50px;
    }
  
    .get_card_li{
      box-sizing: border-box;
      width: 100%;
      height: 70px;
      padding: 5px 0 5px 50px;
      border-radius: 5px;
      font-size: 10px;
      color: white;
      background-color: rgba(0, 0, 0, 0.3);
      border: 3px solid rgba(0, 0, 0, 0);
    }
  
    .hidden_check{
      display: none;
    }
  
    .get_card_img{
      position: absolute;
      top: -1px;
      left: -6px;
      box-sizing: border-box;
      width: 50px;
      height: 70px;
      border-radius: 8px;
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
      transform: rotate(-7deg);
    }
    .circl_check{
      position: absolute;
      bottom: 0px;
      right: 0px;
      box-sizing: border-box;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background-color: white;
    }
    .circl_check_in{
      position: absolute;
      bottom: 2px;
      right: 2px;
      box-sizing: border-box;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      text-align: center;
      line-height: 1.5;
      color: white;
      background-color: gray;
    }
  
    .get_card_rarity{
      text-shadow: 0 0 1.2px black;
      font-style: italic;
      font-size: 1.4em;
      margin-right: 10px;
    }
  
    .get_card_name{
      font-size: 1.1em;
      text-shadow: 1px 1px 2px black;
    }
  
    .get_card_ball_span{
      font-size: 1.5em;
      margin-right: 3px;
      color: red;
      text-shadow: 0 0 1px black;
    }
  
    .get_card_submit_div{
      box-sizing: border-box;
      width: 100%;
      height: 12vh;
    }
    .get_card_submit{
      width: 30%;
      height: 6vh;
      margin: 0 25px;
      border: none;
      border-radius: 10px;
      box-shadow: 1px 1px 1px gray;
      font-size: 15px;
      letter-spacing: 2px;
      text-align: center;
      color: white;
    }
    .get_card_submit:nth-child(1){
      background-color: darkred;
    }
    .get_card_submit:nth-child(2){
      background-color: seagreen;
    }
  
  
  
  /* get_card_select */
  
    .g_c_s_body{
      height: 100vh;
    }
  
    .g_c_s_h1{
      margin: 20px auto 30px;
      font-size: 20px;
      text-align: center;
    }
  
    .g_c_s_p{
      font-size: 14px;
      line-height: 1.3;
      text-align: center;
    }
  
  
    /* card_select_done */
  
    .c_s_d_a{
      width: 30%;
      height: 30px;
      border-radius: 10px;
      box-shadow: 1px 1px 1px gray;
      font-size: 13px;
      letter-spacing: 0px;
      text-align: center;
      color: black;
      line-height: 2.2;
      background-color: cyan;
    }
  
  
  
    /* delivery_req */
  
      .delivery_req_tab_li{
        width: 50%;
      }
  
      .delivery_req_li{
        box-sizing: border-box;
        width: 100%;
        height: 70px;
        padding: 12px;
        border-radius: 5px;
        font-size: 10px;
        color: white;
        background-color: rgba(0, 0, 0, 0.3);
        border: 3px solid rgba(0, 0, 0, 0);
      }
  
      .delivery_req_h2{
        text-align: left;
        letter-spacing: 1.2px;
      }
      .delivery_req_p{
        text-align: right;
        padding: 8px 10px 0 0;
        letter-spacing: 1.5px;
      }
  
      .delivery_req_span{
        font-size: 1.6em;
        text-shadow: 0 0 3px black;
      }
  
  
  
    /* delivery_req_check */
  
      .drc_body{
        padding-bottom: 50px;
      }
  
      .drc_top_p{
        font-size: 15px;
        line-height: 1.3;
        text-align: center;
        margin: 30px 0 20px;
      }
  
      .drc_member_info{
        margin: 20px 0 0;
        letter-spacing: 1px;
        line-height: 1.3;
        width: 90vw;
        max-width: 320px;
      }
      .drc_member_info p{
        margin: 5px;
      }
  
      .drc_li{
        letter-spacing: 0.5px;
      }
  
      .drc_line{
        background-color: darkslategray;
        border-radius: 1px;
        width: 300px;
        height: 2px;
        margin: 30px auto 20px;
      }
  
  
  
  
    /* ハンバーガーメニュー */
  
    .global_nav_menu{
      display: flex;
      justify-content: flex-end;
      align-items: center;
      width: 100%;
      height: 100%;
    }
    .gnav_menu_item{
      box-sizing: border-box;
      width: 110px;
      height: 55px;
    }
    .gnav_menu_item a{
      width: 100%;
      height: 100%;
      display: block;
      padding-top: 12px;
      box-sizing: border-box;
      text-align: center;
      font-size: 10px;
      color: black;
      line-height: 1.3;
      transition: 0.5s;
    }
    .gnav_menu_item a:hover{
      background: linear-gradient( to right bottom, blue 0%, white 50%, blue 100% );
      color: white;
      text-shadow: 2px 2px 3px black;
    }
    .gnav_menu_item span{
      font-size: 15px;
      margin-right: 5px;
      font-family: sans-serif;
    }
  
  
  
  
  
  
  /* oripa_register関係 */
  
  /* oripa_name */
  
    .o_n_main{
      width: 90vw;
      max-width: 320px;
      flex-grow: 1;
      margin: 0 auto;
    }
    .o_n_h1{
      font-size: 24px;
      text-align: center;
      margin: 30px 0 20px;
    }
    .o_n_p{
      text-align: center;
      font-size: 16px;
      line-height: 1.3;
      letter-spacing: 0.5px;
      margin: 20px auto;
    }
    .o_n_file{
      margin-bottom: 8px;
    }
    .o_n_need_ball{
      box-sizing: border-box;
      width: 45%;
      font-size: 12px;
      margin-bottom: 6px;
    }
    .o_n_input{
      box-sizing: border-box;
      width: 80%;
      font-size: 12px;
    }
    .o_n_submit{
      box-sizing: border-box;
      width: 15%;
      margin-left: 3%;
      font-size: 12px;
      color: black;
      background-color: lightgreen;
      border: 1px solid black;
      border-radius: 3px;
    }
  
    .o_n_main table{
      width: 95%;
      margin: 0 auto;
    }
    .o_n_main td{
      border: 1px solid black;
      padding: 6px;
    }
  
    .o_n_draft_name_td{
      font-size: 15px;
      width: 83%;
    }
  
    .o_n_draft_submit{
      box-sizing: border-box;
      width: 100%;
      font-size: 12px;
      color: black;
      background-color: lightgreen;
      border: 1px solid black;
      border-radius: 3px;
    }
  
  
  
  /* oripa_register */
  
    .o_r_main{
      width: 90vw;
      max-width: 320px;
      margin: 0 auto;
    }
    .o_r_main form{
      width: 100%;
    }
  
    .o_r_h1{
      font-size: 25px;
      text-align: center;
      margin: 20px 0;
    }
  
    .o_r_oripa_name{
      font-size: 18px;
      text-align: center;
      margin: 20px 0 10px;
    }
  
    .o_r_name_edit_div{
      text-align: right;
      margin-bottom: 10px;
    }
    .o_r_name_edit_input{
      display: inline-block;
      width: 85px;
      text-align: center;
      color: black;
      font-size: 12px;
      border: 1px solid black;
      border-radius: 5px;
      background-color: #ececec;
      padding: 6px;
    }
  
    .o_r_ul{
      width: 100%;
    }
  
    .o_r_li{
      width: 100%;
      margin-bottom: 20px;
      color: black;
    }
  
    .o_r_h2{
      display: inline-block;
      background-color: rgb(150, 245, 245);
      border: 2px solid black;
      border-bottom: none;
      width: 65px;
      height: 30px;
      box-sizing: border-box;
      font-size: 15px;
      margin-left: 0;
      padding: 5px;
      text-align: center;
    }
    .o_r_item_delete_span{
      position: absolute;
      top: -2px;
      left: 61px;
      box-sizing: border-box;
      width: 65px;
      height: 30px;
      background-color: rgb(150, 245, 245);
      border: 2px solid black;
      border-bottom: none;
    }
    .o_r_item_delete_input{
      font-size: 10px;
      background-color: orange;
      border: 1px solid black;
      border-radius: 3px;
    }
  
    .o_r_block{
      box-sizing: border-box;
      background-color: rgb(150, 245, 245);
      width: 100%;
      border: 2px solid black;
    }
  
    .o_r_block_line{
      width: 95%;
      margin: 0 auto;
      border-bottom: 1px solid black;
    }
  
    .o_r_select_div{
      box-sizing: border-box;
      width: 100%;
      height: 40px;
      margin: 5px 0;
    }
  
    .o_r_select_left{
      box-sizing: border-box;
      text-align: center;
      width: 65px;
      min-width: 65px;
      line-height: 1.2;
      letter-spacing: 1px;
      font-size: 15px;
      border-right: 1px solid black;
    }
  
    .o_r_select_right{
      flex-grow: 1;
    }
    .o_r_select_submit{
      width: 130px;
      letter-spacing: 1px;
      color: black;
      background-color: lightgreen;
      border: 1px solid black;
      border-radius: 3px;
    }
  
    .o_r_new_div{
      box-sizing: border-box;
      width: 100%;
      height: 60px;
      margin: 5px 0;
    }
  
    .o_r_new_left{
      box-sizing: border-box;
      text-align: center;
      width: 65px;
      min-width: 65px;
      line-height: 1.2;
      letter-spacing: 1px;
      font-size: 15px;
      border-right: 1px solid black;
    }
  
    .o_r_new_right{
      flex-grow: 1;
      height: 60px;
      margin-left: 5px;
    }
  
    .o_r_new_input{
      width: 220px;
    }
  
    .o_r_rarity{
      box-sizing: border-box;
      width: 100%;
      height: 30px;
      margin: 5px 0;
      font-size: 14px;
    }
  
    .o_r_radio{
      margin-top: 0px;
      margin-right: 1px;
      margin-bottom: 2px;
    }
    .o_r_radio_span{
      margin-right: 7px;
    }
  
    .o_r_others{
      box-sizing: border-box;
      width: 100%;
      height: 30px;
      margin: 5px 0;
      font-size: 14px;
    }
  
    .o_r_input_ball{
      width: 30px;
      text-align: center;
    }
    .o_r_ball_span{
      margin-left: 3px;
      margin-right: 10px;
    }

    .o_r_input_psa{
      margin-left: 3px;
      width: 70px;
    }
  
    .o_r_input_quantity{
      margin-left: 3px;
      width: 30px;
      text-align: center;
    }
    .o_r_quantity_span{
      margin-left: 10px;
    }
  
    .submit_space{
      width: 85%;
      margin: 20px auto 50px;
    }
    .o_r_submit{
      width: 80%;
      font-size: 13px;
      letter-spacing: 0.5px;
      margin-bottom: 13px;
      color: black;
      background-color: lightgreen;
      border: 1px solid black;
      border-radius: 3px;
    }
  
    .o_r_under{
      box-sizing: border-box;
      width: 100%;
      height: 50px;
      margin: 5px 0;
    }
  
    .o_r_under_item{
      width: 25%;
      text-align: center;
    }
    .o_r_short_line{
      width: 80%;
      margin: 5px auto;
      border-bottom: 1px solid black;
    }
    .o_r_under_h4{
      font-size: 14px;
    }
    .o_r_under_p{
      font-size: 11px;
    }
    .o_r_under_span{
      font-size: 14px;
    }
  
    .all_delete_div{
      text-align: right;
      margin-bottom: 30px;
    }
    .all_delete_submit{
      display: inline-block;
      width: 110px;
      text-align: center;
      color: black;
      font-size: 12px;
      border: 1px solid black;
      border-radius: 5px;
      background-color: lightgray;
      padding: 6px;
    }
  
  
  /* oripa_register_select */
  
    .card_select_main{
      width: 90vw;
      max-width: 320px;
      margin: 0 auto;
    }
  
    .card_select_h1{
      font-size: 24px;
      text-align: center;
      margin: 20px auto;
    }
  
    .search_place{
      width: 90vw;
      max-width: 320px;
      margin: 0 auto;
    }
    .search_text{
      width: 70%;
      font-size: 13px;
      margin-right: 5px;
      padding: 2px;
    }
    .search_submit{
      width: 12%;
      color: black;
      padding: 2px;
      font-size: 11px;
      border: 1px solid black;
      border-radius: 5px;
      background-color: aquamarine;
    }
  
    .search_place_a{
      width: 100%;
      margin: 10px auto 20px;
      color: black;
    }
    .no_select_a{
      width: 40%;
      font-size: 12px;
      text-align: center;
      border: 1px solid black;
      border-radius: 5px;
      background-color: violet;
      padding: 4px;
      color: black;
    }
    .no_search_a{
      width: 40%;
      font-size: 12px;
      text-align: center;
      border: 1px solid black;
      border-radius: 5px;
      background-color: aquamarine;
      padding: 4px;
      color: black;
    }
  
    .card_select_li{
      width: 70px;
      height: 120px;
      padding: 3px;
      border: 1px solid black;
      border-radius: 5px;
      margin: 10px;
    }
    .card_select_ul{
      margin: 0 auto 20px;
      flex-wrap: wrap;
    }
  
    .card_select_bg{
      width: 70px;
      height: 75px;
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
    }
    .card_select_h2{
      font-size: 11px;
      margin: 5px 2px;
      white-space: nowrap;
      overflow: scroll;
    }
    .card_select_h2::-webkit-scrollbar{
      display: none;
    }
    .card_select_submit{
      display: block;
      font-size: 10px;
      width: 95%;
      margin: 0 auto;
      background-color: aqua;
      border: 1px solid black;
      border-radius: 3px;
      color: black;
      padding: 1px;
    }
  
  
  /* oripa_register_check */
    .o_r_c_main{
      width: 85vw;
      max-width: 320px;
      margin: 0 auto;
    }
  
    .o_r_c_h1{
      font-size: 25px;
      text-align: center;
      margin: 20px;
    }
  
    .o_r_c_conf_p{
      text-align: center;
      font-size: 15px;
      letter-spacing: 0.5px;
      line-height: 1.2;
      margin-bottom: 10px;
      white-space: nowrap;
    }
  
    .o_r_c_oripa_name{
      text-align: center;
      font-size: 18px;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }
  
    .o_r_c_p{
      text-align: center;
      font-size: 13px;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }
  
    .o_r_c_card_num{
      text-align: center;
      font-size: 13px;
    }
  
    .o_r_c_master,
    .o_r_c_hyper,
    .o_r_c_super,
    .o_r_c_others{
      border-left: 2px solid black;
      padding: 0 0 20px 5px;
      margin-top:20px;
      margin-left: 15%;
    }
  
    .o_r_c_master_h2,
    .o_r_c_hyper_h2,
    .o_r_c_super_h2,
    .o_r_c_others_h2{
      font-size: 22px;
      margin-bottom: 10px;
    }
  
    .o_r_c_master_p,
    .o_r_c_hyper_p,
    .o_r_c_super_p,
    .o_r_c_others_p{
      font-size: 15px;
      margin-bottom: 5px;
      letter-spacing: 0.5px;
    }
  
    .o_r_c_master_span,
    .o_r_c_hyper_span,
    .o_r_c_super_span,
    .o_r_c_others_span{
      font-size: 0.5em;
    }
  
    .o_r_c_form{
      margin: 25px auto;
    }
    .o_r_c_form input{
      width: 100px;
      font-size: 15px;
      margin: 0px 10px;
      color: black;
      background-color: lightgreen;
      border: 1px solid black;
      border-radius: 3px;
    }
  
    .o_r_d_form{
      margin: 25px auto;
    }
    .o_r_d_form input{
      width: 70px;
      height: 50px;
      color: black;
      background-color: lightgray;
      text-align: center;
      font-size: 16px;
      margin: 0px 15px;
    }
  
    .o_r_c_button{
      border: 1px solid black;
      border-radius: 10px;
      padding: 10px;
      background-color: #69e0dc;
      margin: 10px;
    }
    .o_r_c_button a{
      display: inline-block;
      font-size: 15px;
      color: black;
      text-shadow: 0 0 5px white, 0 0 5px white;
    }
  
  
  
  
  
  /* oripa_list */
  
    .o_l_main{
      width: 90%;
      max-width: 320px;
      margin: 0 auto;
    }
    .o_l_main table{
      margin: 0 auto;
      width: 100%;
      box-shadow: 2px 2px 5px gray;
    }
    .o_l_main td{
      border: 1px solid black;
      padding: 4px;
      font-size: 13px;
    }
  
    .o_l_h1{
      margin: 30px auto 10px;;
      font-size: 20px;
      text-align: center;
    }
  
    .o_l_p{
      margin: 10px auto 20px;
      font-size: 15px;
      text-align: center;
      line-height: 1.2;
    }
  
    .o_l_td_status{
      width: 20%;
      text-align: center;
    }
  
    .o_l_td_submit{
      width: 17%;
      text-align: center;
    }
    .o_l_detail_submit,
    .o_l_period_submit{
      color: black;
      background-color: lightgreen;
      border: 1px solid black;
      border-radius: 3px;
    }
  
    .o_d_ul{
      margin-top: 30px;
    }
  
    .o_d_top_image_div{
      margin: 30px auto 10px;
    }
  
    .o_d_top_image_p{
      text-align: center;
      font-size: 18px;
      letter-spacing: 0.5px;
      margin-right: 10px;
    }
  
    .o_d_edit_submit{
      font-size: 15px;
      width: 50px;
      background-color: aquamarine;
      color: black;
      border: 1px solid black;
      border-radius: 5px;
    }
  
    .o_d_top_image{
      width: 300px;
      height: 320px;
      max-height: 300px;
      margin: 0 auto 30px;
      border-radius: 10px;
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
      box-shadow: 0 0 7px 7px white inset;
    }
  
    .o_l_period_form{
      text-align: center;
    }
  
  
  
  
  
  
  
  /* payment */
  
  
  /* payment_ball */
  
    .payball_main{
      width: 90%;
      max-width: 400px;
      margin: 40px auto;
    }
  
    .payball_h1{
      text-align: center;
      font-size: 25px;
      margin-bottom: 15px;
    }
  
    .payball_possession_ball{
      text-align: center;
      font-size: 18px;
      margin-bottom: 15px;
    }
  
    .payball_span{
      font-size: 1.6em;
      margin-right: 2px;
    }
  
    .payball_info{
      text-align: center;
      font-size: 15px;
      margin-bottom: 15px;
      line-height: 1.5;
    }
  
    .payball_ul{
      width: 100%;
      margin: 0 auto;
    }
  
    .payball_li{
      width: 80%;
      max-width: 320px;
      height: 80px;
      background-color: rgb(200, 246, 255);
      box-shadow: 3px 3px 5px gray;
      padding: 5px 20px;
      box-sizing: border-box;
      border-radius: 10px;
      margin-bottom: 20px;
    }
  
    .price_div{
      width: 120px;
      height: 50px;
    }
    .payball_ball{
      font-size: 16px;
      color: black;
    }
    .payball_pay{
      font-size: 14px;
      color: rgba(0, 0, 0,0.6);
    }
  
    .stripe_a{
      width: 90px;
      height: 37px;
      background-color: #1a1a1a;
      color: white;
      box-sizing: border-box;
      font-size: 15px;
      text-align: center;
      border-radius: 10px;
      border: none;
      box-shadow: 0 0 5px 3px black inset;
      line-height: 2.3;
    }
  
    .payment_err_a{
      font-size: 15px;
      color: darkblue;
      text-decoration: underline;
    }
  
    .payball_img{
      display: block;
      width: 40px;
      margin: 0 auto 15px;
    }
  
  
  
  
  
  
  /* others */
  
  
  /* PrivacyPolicy */
  
    .privacy_main{
      width: 45%;
      margin: 40px auto;
    }
    .space_height{
      height: 70px;
    }
    .privacy_main h1{
      margin: 0 auto 8px;
      text-align: center;
      font-size: 28px;
    }
    .privacy_p{
      text-align: center;
      margin: 8px auto 40px;
    }
  
    .privacy_main h2{
      margin: 60px auto 20px;
      text-align: center;
      font-size: 24px;
    }
  
    .privacy_main p,
    .privacy_main li{
      font-family: serif;
      font-size: 16px;
      letter-spacing: 1px;
    }
  
  
  
  /* 特定商取引法 */
  
    .sct_main{
      width: 100%;
    }
  
    .sct_main h1{
      margin: 28px auto 28px;
      text-align: center;
      font-size: 26px;
    }
  
    .sct_table{
      width: 90%;
      margin: 0 auto 28px;
      border-collapse: collapse;
      background-color: #efe5cd;
      box-shadow: 2px 2px 5px black;
    }
    .sct_table tbody{
      display: block;
      width: 95%;
      margin: 0 auto;
    }
    .sct_table th{
      width: 25%;
    }
    .sct_table th,.sct_table td{
      color: black;
      font-size: 14px;
      padding: 12px 0;
      letter-spacing: 1px;
      border-bottom: solid 1px #606060;
      line-height: 1.2;
      vertical-align: middle;
    }
    .sct_table span{
      display: block;
      margin-top: 4px;
      font-size: 0.8em;
      letter-spacing: 0.6px;
    }
  
  
  
  /* コンタクトフォーム */
  
    .contact_main{
      text-align: start;
      width: 90vw;
      max-width: 350px;
    }
    .contact_main h1{
      font-size: 24px;
      text-align: center;
      margin: 16px;
    }
    .contact_main h2{
      font-size: 20px;
      margin: 16px 0 4px;
    }
    .contact_main input{
      width: 160px;
      height: 28px;
      display: block;
      margin: 4px 0 16px;
    }
    .contact_main input[type="submit"]{
      background-color: aquamarine;
      color: black;
      border: 1px solid black;
      border-radius: 5px;
    }
  
    .contact_main .contact_input{
      width: 320px;
    }
  
    .contact_p{
      text-align: center;
      line-height: 1.3;
      white-space: nowrap;
    }
  
    .contact_textarea{
      width: 320px;
    }
  
    .contact_button{
      border: 1px solid black;
      border-radius: 10px;
      padding: 12px;
      background-color: #69e0dc;
      margin: 20px;
    }
    .contact_button a{
      display: inline-block;
      font-size: 18px;
      color: black;
      text-shadow: 0 0 5px white, 0 0 5px white;
    }
  
  
  
  
  
  /* 管理者ログイン・登録ページ */
  
    .admin_login_main{
      text-align: center;
    }
    .admin_login_main h1{
      font-size: 24px;
      margin: 16px;
    }
    .admin_login_main h2{
      font-size: 20px;
      margin: 16px 0 4px;
    }
    .admin_login_main input{
      width: 240px;
      display: block;
      margin: 4px 0 16px;
    }
    .admin_login_main input[type="submit"]{
      display: block;
      margin: 4px 0 16px;
      width: 160px;
      height: 28px;
      background-color: aquamarine;
      color: black;
      border: 1px solid black;
      border-radius: 5px;
    }
  
    .admin_top_main{
      height: 45%;
    }
    .admin_top_main ul{
      height: 100%;
      padding-top: 20px;
    }
  
    .admin_register_button{
      border: 1px solid black;
      border-radius: 10px;
      text-align: center;
      width: 200px;
      height: 45px;
      margin-bottom: 2vh;
      background-color: rgb(111 213 255);
    }
    .admin_register_button a{
      display: block;
      font-size: 18px;
      color: black;
      text-shadow: 0 0 2px white;
      width: 200px;
      height: 45px;
      line-height: 2.3;
    }
  
  /* 管理者一覧 */
  
    .admin_list_body{
      min-height: 100vh;
    }
  
    .admin_nolist_p{
      font-size: 20px;
      line-height: 2;
      text-align: center;
    }
  
    .admin_list_h1{
      font-size: 28px;
      text-align: center;
      margin: 5vh auto;
    }
  
    .admin_list_table{
      width: 320px;
      background-color: #ffd5a3;
      box-shadow: 2px 2px 5px gray;
    }
  
    .admin_list_tr td{
      padding: 8px;
      border: 1px solid black;
    }
  
    .admin_list_login_id{
      font-size: 20px;
      letter-spacing: 1px;
      width: 70%;
    }
    .admin_list_submit{
      width: 15%;
    }
    .admin_list_button{
      font-size: 14px;
      color: black;
      background-color: lightgreen;
      border: 1px solid black;
      border-radius: 3px;
    }
  
    .admin_list_ul .admin_register_button{
      width: 120px;
      padding: 12px;
      margin: 12px;
    }
    .admin_list_ul .admin_register_button a{
      font-size: 16px;
    }

    .admin_list_under_button{
      border: 1px solid black;
      border-radius: 10px;
      text-align: center;
      width: 120px;
      height: 35px;
      margin: 10px;
      background-color: rgb(111 213 255);
    }
    .admin_list_under_button a{
      display: block;
      font-size: 15px;
      color: black;
      text-shadow: 0 0 2px white;
      width: 120px;
      height: 35px;
      line-height: 2.3;
    }




  
  /* 管理者delete */
  
    .admin_delete_main{
      width: 60vw;
      max-width: 300px;
    }
    .admin_delete_main h1{
      font-size: 28px;
      text-align: center;
      margin-top: 3vh;
      margin-bottom:  60px;
    }
    .admin_delete_main h2{
      font-size: 20px;
      margin-bottom: 12px;
    }
    .admin_delete_main p{
      font-size: 18px;
      text-align: center;
      margin-bottom: 40px;
      white-space: nowrap;
    }
    .admin_delete_main .input_pass{
      display: block;
      font-size: 20px;
      width: 100px;
      margin:0 auto 48px;
    }
    .admin_delete_main input[type=submit]{
      display: block;
      font-size: 14px;
      width: 160px;
      margin:20px auto;
      color: black;
      background-color: lightgreen;
      border: 1px solid black;
      border-radius: 3px;
    }
  
  
  
  
  
  /* 会員登録ページ */
  
    .member_register_body .error_message{
      margin: 40px 0 0;
    }
  
    .member_register_main{
      width: 300px;
    }
    .member_register_main h1{
      font-size: 28px;
      margin: 30px 0 10px;
      text-align: center;
    }
    .member_register_main h2{
      font-size: 16px;
      margin: 20px 0 8px;
    }
    .member_register_main input{
      display: inline;
      font-size: 16px;
    }
    .member_register_main button{
      background-color: #e1e1e1;
      color: black;
      border: 1px solid black;
      border-radius: 5px;
      font-size: 14px;
      width: 200px;
      display: block;
      text-align: center;
      margin-top: 12px;
    }
    .member_register_main span{
      font-size: 16px;
    }
    .member_register_main .register_button{
      width: 160px;
      height: 28px;
      background-color: aquamarine;
      color: black;
      border: 1px solid black;
      border-radius: 5px;
      margin: 20px auto;
      display: block;
    }
    .member_register_main .required{
      font-size: 12px;
      color: red;
      display: inline-block;
    }
  
    .member_form_explanation{
      font-size: 15px;
      color: black;
      line-height: 1.3;
      letter-spacing: 0.5px;
      text-align: center;
    }
  
    .m_first_a{
      display: block;
      text-align: center;
      font-size: 18px;
      margin: 20px auto;
      text-decoration: underline;
    }
  
  
    .member_name{
      width: 240px;
    }
  
    .member_email{
      width: 280px;
    }
  
    .member_pass{
      width: 280px;
    }
  
    .member_tel{
      width: 280px;
    }
  
    .member_postal{
      width: 200px;
      box-sizing: border-box;
    }
  
    .member_address{
      width: 280px;
    }
  
    .birth_select select{
      font-size: 18px;
      padding: 4px 0;
    }
  
    .register_confirm_p{
      display: inline-block;
      font-size: 20px;
      margin: 0 12px 8px 40px;
    }
  
    .resetting_p{
      line-height: 1.3;
    }
  
    .admin_login_main .resetting_input{
      width: 280px;
    }
  
    .delivery_done_main{
      width: 320px;
      margin: 0 auto;
    }
  
    .delivery_done_h1{
      text-align: center;
      font-size: 24px;
      margin-bottom: 6vh;
      letter-spacing: 1px;
    }
  
    .delivery_done_p{
      font-size: 16px;
      margin-bottom: 6vh;
      letter-spacing: 1px;
      line-height: 1.2;
      white-space: nowrap;
    }
  
    .delivery_done_button{
      width: 170px;
      text-align: center;
      border: 1px solid black;
      border-radius: 10px;
      padding: 12px;
      background-color: #69e0dc;
      margin: 12px 0;
    }
    .delivery_done_button a{
      display: inline-block;
      font-size: 18px;
      color: black;
      text-shadow: 0 0 5px white, 0 0 5px white;
    }
  
  
  
  
  /* footer */
  
    footer{
      width: 100%;
      max-width: 320px;
      text-align: center;
      margin: 0 auto;
    }
  
    .long_border_div{
      margin: 40px auto 15px;
      border-top: 2px solid rgb(70, 40, 0);
      border-radius: 10%;
      width: 80%;
      max-width: 350px;
      height: 2px;
    }
  
    .footer_title_p{
      font-size: 12px;
      margin-bottom: 8px;
    }
  
    .footer_title_h{
      font-size: 28px;
      font-family: 'Marcellus', serif;
    }
  
    .footer_box {
      width: 80px;
      font-size: 16px;
      margin: 10px 20px;
      padding: 16px 8px;
      border: solid 1px rgb(70, 40, 0);
    }
  
    .footer_pri_sct{
      width: 75%;
      font-size: 12px;
      margin-bottom: 10px;
    }
    .footer_pri_sct a{
      text-decoration: underline;
    }
   
    .operation{
      font-size: 16px;
      position: relative;
      z-index: 0;
      padding: 6px 8px;
    }
    .operation::before, .operation::after {
      content: '';
      width: 24px;
      height: 16px;
      position: absolute;
    }
    .operation::before {
      border-left: solid 1px rgb(70, 40, 0);
      border-top: solid 1px rgb(70, 40, 0);
      top: 0;
      left: 0;
    }
    .operation::after {
      border-right: solid 1px rgb(70, 40, 0);
      border-bottom: solid 1px rgb(70, 40, 0);
      bottom: 0;
      right: 0;
    }
  
    .lastP{
      font-size: 12px;
      margin: 10px auto 25px;
    }
  
  
  
  
  
  /* ------------------script------------------- */
  
  
  
    /* ハンバーガーを非表示 */
    .openbtn8{
      display: none;
    }

}

