@charset "utf-8";

/* 共通 */

body{
  background-color: #f2ede1;
  color: rgb(70, 40, 0);
  min-width: 350px;
  min-height: 100vh;
}

/* Noto serif JP 400 */
/* body{
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
} */

/* しっぽり明朝 */
/* body{
  font-family: 'Shippori Mincho', serif;
} */

/* serif */
body{
  font-family: serif;
}

a{
  color: rgb(70, 40, 0);
}

li{
  list-style: none;
}

.nt_srf_jp{
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.nt_sns_jp{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


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

#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: 280px;
  height: 180px;
  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: 15px;
}
#dialog_button{
  font-size: 14px;
  margin: 0 0px 0 auto;
  padding: 6px 20px;
  border-radius: 8px;
  background-color: orangered;
  border: 1.5px solid black;
}


/* 確認ダイアログ */

  .conf_dialog{
    width: 300px;
    height: 180px;
    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; }
  }

  .conf_dialog_p{
    font-size: 15px;
  }

  .conf_submit{
    width: 100%;
  }

  .conf_dialog_cancel{
    font-size: 16px;
    width: 30%;
    padding: 3px;
    border-radius: 8px;
    background-color: orangered;
    border: 1px solid black;
  }
  
  .conf_dialog_finish{
    font-size: 16px;
    width: 30%;
    padding: 3px;
    border-radius: 8px;
    background-color: rgb(0, 255, 38);
    border: 1px solid black;
  }


/* ポップアップ */

  #popup_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; }
  }

  .popup{
    width: 320px;
    max-height: 80vh;
    background-color: white;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 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; }
  }

  .popup_p{
    width: 100%;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .popup_span{
    font-size: 14px;
  }

  #popup_button{
    font-size: 14px;
    margin: 0 0px 0 auto;
    padding: 6px 20px;
    border-radius: 8px;
    background-color: orangered;
    color: black;
    border: 1.5px solid black;
  }

  .popup_emphasis_center{
    display: block;
    text-align: center;
    font-size: 18px;
  }




/* ページネーション */

  .pagination_ul{
    box-sizing: border-box;
    width: 352px;
    margin: 0px auto;
  }

  .pagination_flex_li{
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pagination_flex_li a{
    box-sizing: border-box;
    width: 25px;
    height: 25px;
    text-align: center;
    border: 0.5px solid black;
    line-height: 1.2;
  }

  .pagination_first_a::before{
    content: "";
    display: inline-block;
    margin-right: 5px;
    border: 5px solid transparent;
    border-right: 10px solid black;
  }

  .pagination_skip_span{
    font-size: 18px;
    box-sizing: border-box;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 1.2;
  }

  .pagination_number_a{
    font-size: 18px;
    border: 0.5px solid black;
    border-radius: 2px;
    color: black;
  }
  .pagination_number_a_now{
    font-size: 18px;
    border: 0.5px solid black;
    border-radius: 2px;
    color: white;
    background-color: #614d3f;
  }

  .pagination_last_a::after{
    content: "";
    display: inline-block;
    margin-left: 5px;
    border: 5px solid transparent;
    border-left: 10px solid black;
  }



/* パスワード目アイコン関係 */
  /* 例:member_login.php */
  /* 構造例→
    <div id="pass_div">
      <input class="m_l_pass" type="password" name="pass" id="password">
      <button type="button" id="passWatch" onclick="mouseClick()">
        <img src="../icon/eye_open.png" id="eye_icon">
      </button>
    </div>
  */

  #pass_div{
    position:relative;
  }

  #passWatch{
    background-color:transparent;
    border:none;
    position: absolute;
    top: 8px;
    right: 4px;
    visibility :hidden;
  }

  #eye_icon{
    pointer-events:none;
    height: 18px;
    width: 18px;
  }

  /* 同じファイル内２つ目 */

  #pass_div_2{
    position:relative;
  }

  #passWatch_2{
    background-color:transparent;
    border:none;
    position: absolute;
    top: 8px;
    right: 4px;
    visibility :hidden;
  }

  #eye_icon_2{
    pointer-events:none;
    height: 18px;
    width: 18px;
  }









/* 縦型画面設定 */
@media screen and (max-width: 900px) {

/* stripe関係 */

  .stripe-input{
    width: 90%;
    height: auto;
    margin: 8px;
    background-color: white;
    border: 1px solid black;
    padding: 6px;
  }
  .stripe-h3{
    font-size: 20px;
    text-align: center;
  }
  .stripe_customer_div{
    font-size: 18px;
    margin: 20px 0 20px 5px;
  }
  .stripe-p{
    width: 94%;
    font-size: 16px;
    margin: 16px 0 6px 8px;
    line-height: 1.2;
    color: black;
  }
  .stripe-p-info{
    width: 94%;
    font-size: 14px;
    margin: 16px 0 6px 8px;
    line-height: 1.2;
    color: #606060;
  }
  .stripe-err{
    color: red;
    margin-left: 2vw;
  }


/* flex関係、relative関係 */

  .flex_row_start_start{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .flex_row_start_center{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .flex_row_start_end{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  
  .flex_row_end_start{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
  
  .flex_row_end_center{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .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_column{
    display: flex;
    flex-direction: column;
  }
  
  .flex_column_between_center{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  .flex_column_r_between_center{
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
  }
  
  .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: flex-start;
  }
  
  .flex_column_center_center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .flex_column_around_start{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
  }

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


/* header */

  header{
    width: 100%;
    background-color: white;
    position: fixed;
    z-index: 990;
    height: 70px;
  }

  .header_base{
    width: 100%;
    background-color: white;
    position: fixed;
    height: 70px;
  }

  .header_space{
    height: 70px;
  }

  header ul{
    font-size: 16px;
  }

  header a{
    display: block;
    width: 70px;
    height: 70px;
  }

  .header_logo{
    width: 70px;
    height: 70px;
  }

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

  .header_icon_blank{
    flex-grow: 2;
  }

  .cart_quantity{
    position: absolute;
    width: 16px;
    height: 16px;
    text-align: center;
    color: black;
    background-color: rgba(100, 255, 0, 0.8);
    border-radius: 50%;
    top: 8px;
    right: 16px;
  }
  .cart_quantity span{
    font-size: 16px;
  }

  .logo_p{
    margin-top: 8px;
  }

  .header_p{
    display: block;
    font-size: 12px;
    line-height: 1.5;
    padding: 16px 0 0 12px;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .header_a{
    display: inline-block;
    font-size: 14px;
    line-height: 2.5;
    padding: 16px 0 0 8px;
    box-sizing: border-box;
    white-space: nowrap;
  }

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



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

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

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




/* index.php */

  .i_main{
    width: 350px;
    margin: 0 auto;
  }

  /* トップページ上部画像スライド用 */

    .i_fadeIn{
      opacity: 0;
      transition: all 3s ease-in-out;
    }
    .i_fadeIn.active{
      opacity: 1;
    }
    .i_fadeIn_2{
      opacity: 0;
      transition: all 3s ease-in-out;
    }
    .i_fadeIn_2.active{
      opacity: 1;
    }

    .i_slider_box{
      width: 350px;
      position: relative;
    }
  
    #i_slider {
      position: relative;
      width: 280px;
      height: 260px;
      margin: 30px 5px 40px auto;
      z-index: 1;
      border: none;
    }

    .i_slide{
      position: absolute;
      z-index: 2;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: all 3s ease-in-out;
      opacity: 0;
    }

    .i_slide.active{
      opacity: 1;
    }

    .i_slider_text_div{
      position: absolute;
      z-index: 2;
      width: 240px;
      height: 70px;
      left: 0;
      bottom: 35px;
      color: black;
      text-shadow: 0 0 1px lightgray;
      background-color: burlywood;
      padding: 11px;
      box-sizing: border-box;
      text-align: center;
      line-height: 1.2;
      box-shadow: 5px 5px 7px rgba(0,0,0,0.8);
    }

    .i_slider_text_div_h1{
      font-size: 26px;
    }

    .i_slider_text_div_h2{
      font-size: 14px;
      letter-spacing: -0.5px;
      white-space: nowrap;
    }


  /* トップページ上部画像スライド用終了 */

  .i_h3{
    color: rgb(20, 20, 20);
    font-size: 20px;
    text-align: center;
    letter-spacing: -0.8px;
    transform: scaleY(1.1);
    opacity: 0.8;
    margin-top: 70px;
    margin-bottom: 30px;
    font-weight: 600;
  }

  .i_about_div{
    width: 100%;
    height: auto;
    background-image: url(../image/i_about_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .i_about_h4{
    font-size: 21px;
    text-align: center;
    margin-bottom: 30px;
    color: black;
    white-space: nowrap;
  }

  .i_about_p{
    font-size: 13px;
    text-align: center;
    line-height: 2;
    color: black;
  }

  .i_product_a{
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 320px;
    height: 150px;
    margin: 20px auto 40px;
    background-color: #efe5cd;
    box-shadow: 2px 2px 5px black;
  }

  .i_my_blend_img{
    position: absolute;
    width: 150px;
    height: 100px;
    top: 12px;
    left: 12px;
  }

  .i_product_my_blend_white_div{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    width: 180px;
    height: 100px;
    bottom: 12px;
    right: 12px;
  }

  .i_my_blend_h4{
    width: 180px;
    letter-spacing: -1px;
    text-align: center;
    color: black;
    font-size: 20px;
    margin-top: 12px;
  }

  .i_my_blend_p{
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin: 12px auto auto 20px;
  }

  .i_brand_img{
    position: absolute;
    width: 150px;
    height: 100px;
    top: 12px;
    right: 12px;
  }

  .i_product_brand_white_div{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    width: 180px;
    height: 100px;
    bottom: 12px;
    left: 12px;
  }

  .i_brand_h4{
    width: 180px;
    letter-spacing: -1px;
    text-align: center;
    color: black;
    font-size: 20px;
    margin-top: 12px;
  }

  .i_brand_p{
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin: 12px auto auto 28px;
  }






/* sales */


/* sale_select */

  .sale_select_main{
    text-align: center;
    font-size: 18px;
  }
  .sale_select_main li{
    width: 320px;
    height: 180px;
    margin: 20px;
  }
  .sale_select_main a{
    display: block;
    width: 100%;
    height: 100%;
  }
  .sale_select_main span{
    font-size: 14px;
    display: inline-block;
    margin-bottom: 8px;
  }

  .sale_select_button_in{
    width: 100%;
    height: 100%;
  }

  .my_blend_button{
    background-image: url(../image/my_blend_bg.png);
    background-size: cover;
  }
  .my_blend_button p{
    margin: 20px 12px;
    color: white;
  }

  .brand_select_button{
    background-image: url(../image/brand_select_bg.png);
    background-size: cover;
  }

  .brand_select_button p{
    margin: 20px;
    color: white;
  }



/* brand_select */

  .brand_select_main{
    width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

  .b_s_pop_zone{
    margin: 30px auto;
  }

  .b_s_pop_zone_btn{
    background-color: unset;
    border: unset;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    color: #db8c71;
    text-decoration: underline;
    letter-spacing: 1px;
    margin: 0 10px;
  }

  .b_s_info{
    width: 350px;
    height: 30px;
    line-height: 1.9;
    font-size: 16px;
    text-align: center;
    margin: 0px auto;
    background-color: #fff2ca;
    font-weight: bold;
    white-space: nowrap;
  }

  .b_s_info_span{
    color: rgb(220, 130, 0);
    font-weight: bold;
  }

  .stock_zero{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    color: white;
  }

  .stock_zero_none{
    display: none;
  }

  .card{
    width: 100%;
    margin: 40px auto 0;
    background-color: #efe5cd;
    box-shadow: 2px 2px 5px #7d652c;
  }

  .card_top{
    width: 100%;
    height: 60px;
  }
  
  .card_top_left{
    width: 235px;
    margin: 10px 0px 10px 10px;
  }
  .card_top_left_h2{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0px;
    text-wrap: wrap;
  }
  .card_top_left_h3{
    font-size: 12px;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
    text-wrap: wrap;
  }

  .b_s_img_box{
    width: 70px;
    height: 45px;
    margin: 10px 25px 10px 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .card_border{
    width: 95%;
    margin: 0 auto;
    border-top: 1px solid rgb(100, 100, 100);
  }

  .card_center{
    width: 100%;
    margin: 8px auto;
  }

  .card_center_left_chart{
    width: 40%;
    height: auto;
    margin-right: 10px;
  }

  .card_center_right{
    width: 40%;
    font-size: 15px;
    letter-spacing: 0px;
    text-align: center;
  }
  .card_center_right_roast_level{
    font-size: 0.9em;
    margin-top: 5px;
  }

  .card_border_short{
    width: 90px;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 5px 0 2px;
  }

  .card_center_price{
    display: inline-block;
    font-size: 18px;
    margin-right: 2px;
    letter-spacing: 0px;
  }

  .card_center_price_span{
    font-size: 10px;
  }

  .card_under{
    margin: 8px auto;
  }

  .card_under_left{
    flex-grow: 1;
    text-align: center;
  }

  .card_under_right{
    padding: 2px;
    width: 33%;
    letter-spacing: -1px;
  }

  .card_under_right form{
    text-align: center;
  }

  .brand_order_button{
    display: block;
    font-size: 13px;
    white-space: nowrap;
    margin-right: 12px;
    width: 100px;
    height: 35px;
    border-radius: 7px;
    padding: 6px;
    color: white;
    border: 1px solid black;
    background-color: #99825e;
  }

  .b_s_delivery_price{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    text-decoration: underline;
    letter-spacing: -0.5px;
    color: blue;
    margin: 20px;
    border: none;
    background-color: #f2ede1;
  }

  .b_s_card_under{
    width: 100%;
    height: 120px;
  }

  .b_s_card_under_left{
    width: 55%;
    height: 120px;
  }

  .b_s_card_under_left_comment{
    box-sizing: border-box;
    width: 80%;
    height: 85px;
    border-radius: 7px;
    border: 1px dotted #550000;
    background-color: #fffef1;
    padding: 6px;
  }

  .b_s_card_under_left_cmt_span{
    width: 100%;
    max-height: 100%;
    overflow: scroll;
    font-size: 10px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0px;
    line-height: 1.4;
  }

  .b_s_card_under_right{
    width: 45%;
    height: 100px;
    margin-right: 10px;
  }

  .b_s_card_under_right_top{
    width: 90%;
    height: 65px;
    margin-bottom: 8px;
  }

  .b_s_card_under_right_under{
    margin-top: 8px;
  }

  .b_s_card_chara{
    width: 100%;
  }

  .b_s_card_bean_img{
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }

  .b_s_card_chara_span{
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #64451f;
  }




/* brand_item 個別ページ */

  .b_i_main{
    width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

  .brand_h{
    margin: 20px auto;
    width: 100%;
    position: relative;
    z-index: -1;
  }
  .brand_h img{
    width: 100%;
    height: auto;
  }
  .brand_h h1{
    position: absolute;
    top: 20px;
    left: 18px;
    letter-spacing: -1px;
    font-size: 18px;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 5px yellow;
  }
  .brand_h h2{
    position: absolute;
    top: 10px;
    right: 16px;
    letter-spacing: -1px;
    font-size: 12px;
    text-shadow: 0 0 1px white;
  }

  .brand_image{
    position: relative;
    z-index: -1;
    width: 260px;
    height: 120px;
    margin: 0 auto 25px;
  }
  .brand_image .beans_image{
    position: absolute;
    width: 140px;
    height: auto;
    top: 0;
    left: 0;
    box-shadow: 2px 2px 5px black;
  }
  .brand_image .flag_image{
    position: absolute;
    width: 140px;
    height: auto;
    bottom: 0;
    right: 0;
    box-shadow: 2px 2px 5px black;
  }

  .b_i_taste{
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
  }

  .b_i_taste_overall{
    width: 47%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
  }

  .b_i_taste_conflict{
    width: 100%;
    height: 42px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .b_i_taste_genre{
    width: 50%;
    height: 100%;
    background-color: #eae0c8;
  }

  .b_i_taste_param{
    box-sizing: border-box;
    width: 50%;
    height: 100%;
    padding: 0 8px;
  }
  .b_i_taste_param .beans_param{
    width: 20px;
    height: auto;
  }

  .b_i_taste_genre_span{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .brand_item_other{
    width: 100%;
    margin: 0 auto 20px;
  }
  .brand_item_other > div{
    width: 50%;
    font-size: 15px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .brand_item_other_border{
    width: 40%;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 5px auto 3px;
  }

  .brand_item_comment{
    font-size: 15px;
    letter-spacing: 0.8px;
    line-height: 1.3;
    margin: 0 auto 25px;
  }

  .b_i_order_card{
    width: 350px;
    height: auto;
    margin: 0 auto 25px;
    box-shadow: 2px 2px 5px 1px #7d652c;
    border: 1px solid rgb(100, 100, 100);
    background-color: #f2ede1;
  }

  .b_i_order_card_h{
    font-size: 22px;
    width: 100%;
    height: 40px;
  }

  .b_i_order_card_contents{
    width: 100%;
    height: 210px;
  }

  .b_i_order_card_left{
    width: 75%;
    height: auto;
  }

  .b_i_order_card_left_item{
    box-sizing: border-box;
    width: 100%;
    height: 70px;
    padding: 10px 8px;
    border-top: 1px solid rgb(100, 100, 100);
    border-right: 1px solid rgb(100, 100, 100);
  }

  .b_i_order_card_right{
    width: 25%;
    height: 210px;
    border-top: 1px solid rgb(100, 100, 100);
  }

  .b_i_order_card_left_item select{
    width: 95%;
    font-size: 13px;
    padding: 2px;
    background-color: rgb(235, 235, 235);
  }

  .b_i_order_card_left_item_p{
    font-size: 15px;
    margin-bottom: 8px;
  }

  .order_quantity{
    letter-spacing: 1px;
  }

  .b_i_order_card_right button{
    text-align: center;
    background-color: #ffb762;
    width: 60px;
    height: 60px;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    color: black;
    border: 1px solid rgb(100, 100, 100);
    padding: 0;
  }

  #default_price{
    display: none;
  }

  .roast_down_p{
    width: 90%;
    margin: 0px auto 30px;
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-decoration: underline;
  }

  .b_i_price_table{
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 16px;
    white-space: normal;
    box-shadow: 2px 2px 5px 1px #7d652c;
  }

  .b_i_price_table_tr_top{
    background-color: #eae0c8;
  }

  .b_i_price_table td{
    width: 20%;
    border: 1px solid black;
    padding: 8px 0;
  }

  .b_i_top_img_div{
    width: 100%;
    height: 120px;
    font-size: 50px;
    text-align: center;
    line-height: 2;
    background-color: #eae0c8;
  }

  .b_i_h_div{
    box-sizing: border-box;
    width: 100%;
    height: 75px;
    background-color: #fff0cc;
    margin-bottom: 40px;
    padding: 12px 15px;
  }

  .b_i_h_div_right{
    width: 70px;
    height: 45px;
  }

  .b_i_h_div_left{
    flex-grow: 1;
    height: 100%;
  }

  .b_i_h2{
    font-size: 14px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: bold;
  }

  .b_i_h1{
    font-size: 24px;
    font-family: sans-serif;
    font-weight: bold;
  }

  .b_i_middel_back{
    box-sizing: border-box;
    width: 130px;
    height: 30px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
    margin: 10px 0 40px 0px;
  }
  .b_i_middel_back::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }





/* detail_files内の各説明ページ */

  .c_b_i_dot_div{
    position: relative;
    border: 2px dashed #881d00;
    border-radius: 10px;
    padding: 15px;
    margin: 20px auto 30px 0;
    max-width: 100%;
  }

  .c_b_i_h3_dot{
    position: absolute;
    top: -10px;
    left: 10px;
    box-sizing: content-box;
    font-size: 18px;
    font-weight: bold;
    background-color: white;
    padding: 0 8px;
    font-family: sans-serif;
  }

  .c_b_i_p_dot{
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    font-family: sans-serif;
  }

  .c_b_i_p_dot_brown{
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 15px auto 5px 0;
    color: #7a1a00;
    font-family: sans-serif;
  }

  .c_b_i_h3{
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    margin: 20px auto 0 0;
    line-height: 1.3;
    white-space: wrap;
    font-family: sans-serif;
  }
  .c_b_i_h3::before {
    content: "";
    display: inline-block;
    margin-bottom: 1px;
    border: 6px solid transparent;
    border-left: 12px solid brown;
  }

  .c_b_i_p{
    font-size: 14px;
    margin: 10px auto 0 20px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-family: sans-serif;
  }

  .c_b_i_span{
    display: block;
    font-size: 14px;
    margin: 10px auto 0 35px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-family: sans-serif;
  }

  .c_b_i_margin_div{
    margin-bottom: 20px;
  }





/* cart_list カート一覧 */

  .cart_list_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

  .cart_list_h1{
    font-size: 24px;
    text-align: center;
    margin: 30px auto;
  }

  .cart_list_p{
    font-size: 14px;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    margin: 30px auto;
    letter-spacing: 0.5px;
  }

  .cart_list_table{
    width: 100%;
    border-collapse: collapse;
  }
  .cart_list_table td{
    border: 2px solid rgb(100, 100, 100);
  }

  .cart_list_table_top{
    background-color: #ded4bd;
    padding: 8px;
  }
  .cart_list_table_top h2{
    font-size: 18px;
  }
  .cart_all_delete{
    width: 150px;
    height: 28px;
    font-size: 14px;
    border: 0.5px solid black;
    border-radius: 5px;
    color: white;
    background-color: darkred;
  }

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

  .cart_border_long{
    width: 95%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 0 auto;
  }

  .cart_item_top{
    width: 100%;
    height: auto;
    padding: 8px 8px 8px 24px;
    box-sizing: border-box;
  }
  .cart_item_top_left{
    width: 80px;
    height: auto;
  }
  .cart_item_top_right{
    width: 70%;
    height: auto;
    padding: 8px;
    text-align: center;
  }
  .cart_item_top_right h3{
    font-size: 14px;
    letter-spacing: -1px;
  }
  .cart_item_top_right h2{
    font-size: 16px;
    letter-spacing: 0;
  }

  .cart_item_middle{
    width: 100%;
    height: auto;
    padding: 8px;
    box-sizing: border-box;
    font-size: 12px;
  }
  .cart_item_middle_left{
    width: 33%;
    height: auto;
  }
  .cart_item_middle_center{
    width: 34%;
    height: auto;
    white-space: nowrap;
  }
  .cart_item_middle_right{
    width: 33%;
    height: auto;
  }
  .cart_border_short{
    width: 40%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 6px auto 4px;
  }

  .cart_item_under{
    width: 100%;
    height: auto;
    padding: 8px;
    box-sizing: border-box;
  }

  .cart_item_delete{
    font-size: 12px;
    color: white;
    background-color: darkred;
    border: 0.5px solid black;
    border-radius: 3px;
    width: 50px;
    padding: 3px;
  }

  .cart_item_under_right p{
    font-size: 12px;
  }
  .cart_item_under_right span{
    font-size: 18px;
    margin-left: 4px;
  }

  .all_price_td{
    padding: 8px 12px;
    text-align: right;
    font-size: 16px;
    letter-spacing: 1px;
    background-color: #ded4bd;
  }
  .all_price_td span{
    margin-left: 12px;
    font-size: 35px;
    letter-spacing: 1px;
  }

  .purchase_button_td{
    padding: 12px 24px;
  }
  .purchase_button{
    width: 100%;
    height: 48px;
    font-size: 20px;
    background-color: #f7780d;
    font-family: 'Shippori Mincho', serif;
    border-radius: 5px;
    color: black;
    border: 1px solid rgb(100, 100, 100);
  }
  .arrow_right::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    border: 8px solid transparent;
    border-left: 8px solid black;
  }

  .select_back_button{
    margin: 20px 0;
    width: 180px;
    height: 40px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .arrow_left::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }





/* payment＿delivery */

  .delivery_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

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

  .delivery_form_explanation{
    text-align: center;
    margin: 20px auto;
    font-size: 16px;
  }

  .delivery_form{
    width: 100%;
  }

  .delivery_h2_top{
    width: 100%;
    font-size: 24px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #b7965f;
    text-shadow: 0 0 3px black;
  }

  .delivery_border_top{
    border-left: 2px solid #b7965f;
    border-right: 2px solid #b7965f;
    border-bottom: 2px solid #b7965f;
    padding-bottom: 16px;
  }
  .delivery_border_top h3{
    font-size: 20px;
    padding: 12px;
  }
  .delivery_border_top input[type=text],
  .delivery_border_top input[type=email]{
    font-size: 16px;
    padding: 4px;
    margin: 0 0 12px 12px;
    width: 80%;
  }
  .delivery_border_top span{
    font-size: 0.9rem;
  }

  .search_button{
    font-size: 14px;
    color: black;
    padding: 2px 10px;
    border: 0.5px solid black;
    border-radius: 5px;
    background-color: #e5e5e5;
  }

  .delivery_h2_middle{
    width: 100%;
    font-size: 24px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #e59003;
    text-shadow: 0 0 3px black;
  }

  .delivery_border_middle{
    border-left: 2px solid #e59003;
    border-right: 2px solid #e59003;
    border-bottom: 2px solid #e59003;
    padding: 12px;
  }

  .delivery_h2_under{
    width: 100%;
    font-size: 24px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #766a55;
    text-shadow: 0 0 3px black;
  }

  .delivery_border_under{
    border-left: 2px solid #766a55;
    border-right: 2px solid #766a55;
    border-bottom: 2px solid #766a55;
  }
  .delivery_border_under p{
    font-size: 16px;
    padding: 12px;
    letter-spacing: 1px;
  }
  .delivery_border_under p span{
    font-size: 24px;
    margin-left: 12px;
  }

  .payment_set_button{
    width: 70%;
    height: 45px;
    font-size: 20px;
    margin: 15px auto;
    background-color: #f7780d;
    font-family: 'Shippori Mincho', serif;
    border-radius: 5px;
    color: black;
    border: 1px solid rgb(100, 100, 100);
  }
  .delivery_form .arrow_right::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    border: 8px solid transparent;
    border-left: 8px solid black;
  }

  .delivery_border_under_item{
    border-bottom: 1px solid #766a55;
  }

  .cart_list_button , .brand_pay_button{
    margin: 20px 0 0;
    width: 150px;
    height: 35px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .delivery_form .arrow_left::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }

  .delivery_all_price{
    background-color: #ddd8cc;
  }

  .p_d_pay_method_div{
    width: 95%;
    margin: 15px auto 0px;
  }

  .p_d_pay_method_item{
    margin-bottom: 25px;
  }

  .p_d_pay_radio{
    margin-right: 8px;
  }

  .p_d_pay_radio_label{
    font-size: 18px;
  }

  .p_d_last4_div{
    margin: 0px auto 15px 25px;
  }

  .p_d_last4_item{
    margin-top: 25px;
  }

  .p_d_last4_radio{
    margin-right: 8px;
  }

  .p_d_last4_radio_label{
    font-size: 18px;
  }

  .p_d_last4_info{
    font-size: 15px;
    line-height: 1.5;
    margin-left: 30px;
  }

  .p_d_coupon_p{
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .p_d_coupon_input{
    font-size: 16px;
    padding: 5px;
    width: 150px;
  }

  .p_d_coupon_apply{
    width: 60px;
    height: 30px;
    padding: 0;
    margin-left: 20px;
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1.9;
    background-color: #ffb740;
    border: 1px solid black;
    border-radius: 3px;
    color: black;
  }

  .p_d_coupon_pass{
    font-size: 20px;
    display: inline-block;
    margin: 5px 0 5px 5px;
    letter-spacing: 0.5px;
  }

  .p_d_coupon_unapplied{
    width: 100px;
    height: 30px;
    padding: 0;
    margin-left: 20px;
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1.9;
    background-color: #ffb740;
    border: 1px solid black;
    border-radius: 3px;
    color: black;
  }






/* payment_check */

  .paycheck_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

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

  .paycheck_h2_top{
    width: 100%;
    font-size: 22px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #b7965f;
    text-shadow: 0 0 3px black;
  }

  .paycheck_border_top{
    border-left: 2px solid #b7965f;
    border-right: 2px solid #b7965f;
    border-bottom: 2px solid #b7965f;
    padding-bottom: 16px;
  }
  .paycheck_border_top h3{
    font-size: 16px;
    padding: 8px 12px;
  }
  .paycheck_border_top p{
    font-size: 14px;
    margin: 0 0 4px 30px;
  }

  .paycheck_h2_middle{
    width: 100%;
    font-size: 22px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #e59003;
    text-shadow: 0 0 3px black;
  }

  .paycheck_border_middle{
    border-left: 2px solid #e59003;
    border-right: 2px solid #e59003;
    border-bottom: 2px solid #e59003;
    padding: 16px;
  }
  .paycheck_border_middle p{
    font-size: 16px;
    margin-top: 8px;
  }

  .paycheck_h2_under{
    width: 100%;
    font-size: 22px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #766a55;
    text-shadow: 0 0 3px black;
  }

  .paycheck_border_under{
    border-left: 2px solid #766a55;
    border-right: 2px solid #766a55;
    border-bottom: 2px solid #766a55;
  }
  .paycheck_border_under p{
    font-size: 16px;
    padding: 12px;
    letter-spacing: 1px;
  }
  .paycheck_border_under p span{
    font-size: 24px;
    margin-left: 12px;
  }

  .payment_done_button{
    width: 70%;
    height: 45px;
    font-size: 20px;
    margin: 15px auto;
    background-color: #f7780d;
    font-family: 'Shippori Mincho', serif;
    border-radius: 5px;
    color: black;
    border: 1px solid black;
  }
  .paycheck_form .arrow_right::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    border: 8px solid transparent;
    border-left: 8px solid black;
  }

  .paycheck_border_under_item{
    border-bottom: 1px solid #766a55;
  }

  .page_back_button{
    margin: 20px 0 0;
    width: 150px;
    height: 30px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
    border: 1px solid black;
  }
  .paycheck_form .arrow_left::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }

  .paycheck_all_price{
    background-color: #ddd8cc;
  }

  .paycheck_border_middle .checkout_payment_p{
    font-size: 18px;
    color: black;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-decoration: underline;
    margin-bottom: 18px;
  }



/* payment_done */

  .paydone_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.3;
  }
  .paydone_main h1{
    font-size: 30px;
    margin: 60px auto 48px;
  }
  .paydone_main p{
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0 auto 30px;
  }
  .paydone_main h2{
    font-size: 24px;
    margin: 40px auto 4px;
  }
  .paydone_main h3{
    font-size: 18px;
    margin: 0 auto 30px;
  }
  .paydone_main a{
    display: block;
    margin: 40px 0 30px;
    width: 120px;
    height: 22px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
    padding: 8px;
  }
  .paydone_main a .arrow_left{
    font-size: 14px;
    vertical-align: middle;
  }
  .paydone_main a .arrow_left::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }

  .paydone_main .blend_back_a{
    display: block;
    margin: 40px 0 30px;
    width: 180px;
    height: 22px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
    padding: 8px;
  }







/* 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: 7vw;
  }
  .privacy_p{
    text-align: center;
    margin: 8px auto 20px;
  }

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

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



/* 特定商取引法 */

  .sct_main{
    width: 100%;
  }

  .sct_main h1{
    margin: 7vw auto 7vw;
    text-align: center;
    font-size: 6.5vw;
  }

  .sct_table{
    width: 90%;
    margin: 0 auto 7vw;
    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: 3.5vw;
    padding: 3vw 0;
    letter-spacing: 1px;
    border-bottom: solid 1px #606060;
    line-height: 1.2;
    vertical-align: middle;
  }
  .sct_table span{
    display: block;
    margin-top: 1vw;
    font-size: 0.8em;
    letter-spacing: 0.6px;
  }



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

  .contact_main{
    text-align: start;
    width: 80%;
    max-width: 350px;
  }
  .contact_main h1{
    font-size: 24px;
    text-align: center;
    margin: 20px;
  }
  .contact_main h2{
    font-size: 20px;
    margin: 15px 0 5px;
  }

  .contact_main .contact_input{
    width: 100%;
    height: auto;
    font-size: 16px;
  }

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

  .contact_textarea{
    font-size: 16px;
    width: 100%;
  }

  .contact_submit{
    margin: 0 5px 30px auto;
    width: 100px;
    height: 34px;
    font-size: 14px;
    color: black;
    text-shadow: 0 0 3px white;
    display: block;
    border: 1px solid black;
    text-align: center;
    background-color: #dcd1b3;
  }

  .contact_button{
    border: 1px solid black;
    text-align: center;
    width: 50%;
    height: 40px;
    margin: 40px 0 0;
    background-color: #dcd1b3;
  }
  .contact_button a{
    display: block;
    width: 100%;
    height: 100%;
    font-size: 18px;
    line-height: 2;
    color: black;
    text-shadow: 0 0 5px white;
  }





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

  .admin_login_main{
    width: 350px;
    margin: 0 auto;
    text-align: center;
  }

  .admin_login_main h1{
    font-size: 24px;
    margin: 30px auto 16px;
  }

  .admin_login_main h2{
    font-size: 20px;
    margin: 16px 0 4px;
  }
  .admin_login_main input{
    padding: 2px;
    width: 240px;
    display: block;
    margin: 4px 0 16px;
  }
  .admin_login_main input[type="submit"]{
    padding: 0px;
    display: block;
    margin: 4px 0 16px;
    width: 160px;
    height: 28px;
    background-color: #dcd1b3;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }





/* administrator_register_approve.php */

  .a_r_a_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

  .a_r_a_h1{
    font-size: 28px;
    text-align: center;
    margin: 40px auto;
  }

  .a_r_a_p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    margin: 20px auto;
  }

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

  .a_r_a_input{
    width: 200px;
    font-size: 16px;
    padding: 5px;
    background-color: white;
    border: 1px solid black;
    border-radius: 2px;
    margin-bottom: 50px;
  }

  .a_r_a_submit{    display: block;
    margin: 4px 0 16px;
    width: 160px;
    height: 28px;
    background-color: #dcd1b3;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }






/* administrator_top.php */

  .admin_top_main{
    width: 70%;
    max-width: 280px;
    margin: 30px auto;
  }
  .admin_top_main ul{
    width: 100%;
  }

  .admin_top_button{
    box-sizing: border-box;
    border: 1px solid black;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
    background-color: #dcd1b3;
    line-height: 2.4;
  }
  .admin_top_button a{
    display: block;
    font-size: 20px;
    color: black;
    text-shadow: 0 0 5px white;
  }

  .admin_register_button{
    box-sizing: border-box;
    border: 1px solid black;
    text-align: center;
    width: 70%;
    height: 30px;
    margin-bottom: 30px;
    background-color: #dcd1b3;
    line-height: 1.8;
  }
  .admin_register_button a{
    display: block;
    font-size: 15px;
    color: black;
    text-shadow: 0 0 5px white;
  }

/* 管理者一覧 */

  .admin_list_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

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

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

  .admin_list_tr{
    width: 100%;
  }
  .admin_list_tr form{
    width: 100%;
  }
  .admin_list_tr td{
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid black;
  }

  .admin_list_login_id{
    font-size: 14px;
    letter-spacing: 1px;
    width: 70%;
    vertical-align: middle;
  }
  .admin_list_login_id span{
    width: 100%;
    overflow: scroll;
  }

  .admin_list_submit{
    width: 15%;
    vertical-align: middle;
  }
  .admin_list_button{
    font-size: 12px;
    padding: 2px 10px;
    border: 0.5px solid black;
    border-radius: 3px;
    background-color: #e5e5e5;
    color: black;
  }

  .admin_list_ul .admin_register_button{
    width: 130px;
    height: 33px;
    margin: 30px auto;
    border: 2px solid black;
    text-align: center;
    background-color: #dcd1b3;
  }
  .admin_list_ul .admin_register_button a{
    font-size: 16px;
    display: block;
    color: black;
    text-shadow: 0 0 5px white;
  }



/* 管理者delete */

  .admin_delete_main{
    width: 60vw;
  }
  .admin_delete_main h1{
    font-size: 7vw;
    text-align: center;
    margin-bottom: 15vw;
  }
  .admin_delete_main h2{
    font-size: 5vw;
    margin-bottom: 3vw;
  }
  .admin_delete_main p{
    font-size: 4.5vw;
    text-align: center;
    margin-bottom: 10vw;
    white-space: nowrap;
  }
  .admin_delete_main .input_pass{
    display: block;
    font-size: 5vw;
    width: 25vw;
    margin:0 auto 12vw;
  }
  .admin_delete_main input[type=submit]{
    display: block;
    font-size: 3.5vw;
    width: 40vw;
    margin:5vw auto;
  }



/* administrator_discount.php */

  .a_d_main{
    width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

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

  .a_d_no_p{
    font-size: 16px;
    margin: 20px auto;
    text-align: center;
  }

  .a_d_name_form{
    width: 90%;
    margin: 0 auto 20px;
  }

  .a_d_name_input{
    font-size: 16px;
    padding: 2px;
    width: 120px;
    margin-right: 10px;
  }

  .a_d_name_submit_aimai{
    width: 110px;
    height: 26px;
    font-size: 14px;
    letter-spacing: -1px;
    margin-right: 10px;
    color: black;
    background-color: #e1e1e1;
    border: 1px solid black;
    border-radius: 3px;
    text-align: center;
  }

  .a_d_name_submit_all{
    width: 60px;
    height: 26px;
    font-size: 14px;
    letter-spacing: -1px;
    color: black;
    background-color: #e1e1e1;
    border: 1px solid black;
    border-radius: 3px;
    text-align: center;
  }

  .a_d_member_card{
    box-sizing: border-box;
    width: 350px;
    margin: 20px auto;
    border: 1px solid black;
    padding: 5px;
  }

  .a_d_member_card_top{
    height: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid black;
  }

  .a_d_member_card_name{
    font-size: 16px;
    width: 50%;
    text-align: left;
    padding-left: 8px;
  }

  .a_d_member_card_tel{
    font-size: 16px;
    width: 50%;
    text-align: right;
    padding-right: 8px;
  }

  .a_d_member_card_bottom{
    height: 40px;
    padding-top: 5px;
  }

  .a_d_member_card_email{
    overflow-wrap: anywhere;
    flex-grow: 1;
    box-sizing: border-box;
    font-size: 15px;
    text-align: left;
    padding-left: 8px;
    padding-right: 3px;
    width: 218px;
  }

  .a_d_member_card_coupon{
    width: 120px;
  }

  .a_d_member_card_form{
    width: 50px;
    height: 35px;
  }

  .a_d_member_card_button{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-size: 9px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: black;
    background-color: #ffb740;
    border: 1px solid black;
    border-radius: 5px;
  }





/* administrator_discount_member.php */

  .a_d_m_bg_color{
    background-color: #ffe2b1;
  }

  .a_d_m_issue_form{
    box-sizing: border-box;
    width: 350px;
    height: 150px;
    margin: 20px auto;
    border: 1px solid black;
  }

  .a_d_m_issue_form_item{
    width: 100%;
    height: auto;
    margin: 12px auto 0;
  }

  .a_d_m_issue_form_p{
    font-size: 16px;
  }

  .a_d_m_issue_select{
    width: 90px;
    font-size: 16px;
    padding: 3px;
    text-align: center;
    letter-spacing: 1.2px;
  }

  .a_d_m_issue_submit{
    display: block;
    width: 200px;
    height: auto;
    font-size: 16px;
    margin: 20px auto 0;
    padding: 3px;
    color: black;
    background-color: #ffb740;
    border: 1px solid black;
    border-radius: 5px;
  }

  .a_d_m_select_year{
    width: 75px;
    height: 28px;
    padding: 3px;
    font-size: 16px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
  }

  .a_d_m_select_month{
    width: 60px;
    height: 28px;
    padding: 3px;
    font-size: 16px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
  }

  .a_d_m_select_day{
    width: 60px;
    height: 28px;
    padding: 3px;
    font-size: 16px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
  }

  .a_d_m_select_span{
    font-size: 12px;
    margin: 0 3px;
    vertical-align: text-bottom;
  }

  .a_d_m_info_p{
    font-size: 18px;
    margin: 30px auto 15px;
    text-align: center;
  }

  .a_d_m_item{
    box-sizing: border-box;
    width: 90%;
    margin: 20px auto;
    border: 1px solid black;
  }

  .a_d_m_item_top{
    width: 100%;
    height: 30px;
    border-bottom: 1px dotted black;
  }

  .a_d_m_item_middle{
    width: 100%;
    height: 30px;
    border-bottom: 1px dotted black;
  }

  .a_d_m_item_bottom{
    width: 100%;
    height: 35px;
  }

  .a_d_m_item_span{
    font-size: 12px;
    margin: 0 5px 0 10px;
  }

  .a_d_m_item_span_big{
    margin-left: 5px;
    font-size: 1.3em;
  }

  .a_d_m_item_form{
    width: 60px;
    height: 70%;
    margin-right: 15px;
  }

  .a_d_m_item_submit{
    width: 100%;
    height: 100%;
    padding: 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 4px;
    line-height: 1;
    background-color: #ff9b76;
    border: 1px solid black;
    border-radius: 3px;
    color: black;
  }

  .a_d_m_no_use_div{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
  }

  .a_d_m_no_use_span{
    font-size: 18px;
    color: white;
    margin: 5px;
  }






/* 会員ログイン */

  .m_l_main{
    width: 350px;
    text-align: center;
  }

  .m_l_main h1{
    font-size: 24px;
    margin: 30px auto 16px;
  }

  .m_l_main h2{
    font-size: 20px;
    margin: 16px 0 4px;
  }

  .m_l_email{
    font-size: 16px;
    padding: 2px;
    width: 240px;
    display: block;
    margin: 4px 0 16px;
  }

  .m_l_pass{
    font-size: 16px;
    padding: 2px;
    width: 240px;
    display: block;
    margin: 4px 0 16px;
  }

  .m_l_main .m_l_login{
    font-size: 18px;
    display: block;
    margin-bottom: 120px;
    width: 200px;
    height: 36px;
    background-color: #dcd1b3;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .m_l_main .m_l_login_under{
    font-size: 15px;
    display: block;
    margin-bottom: 15px;
    width: 160px;
    height: 30px;
    background-color: #e6ddc7;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }





/* 会員登録ページ */

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

  .member_register_main{
    width: 80%;
    max-width: 300px;
  }
  .member_register_main h1{
    font-size: 28px;
    margin: 30px 0 15px;
    text-align: center;
  }
  .member_register_main h2{
    font-size: 20px;
    margin: 20px 0 8px;
  }
  .member_register_main input{
    display: inline;
    font-size: 16px;
    box-sizing: border-box;
  }

  .m_r_pass_div{
    width: 240px;
  }

  .m_r_pass{
    padding: 2px;
    width: 240px;
    margin-top: 3px;
  }

  .m_r_postal_button{
    font-size: 15px;
    width: 70%;
    display: block;
    text-align: center;
    margin-top: 12px;
    color: black;
    background-color: orange;
    border: 1px solid black;
    border-radius: 3px;
  }
  .member_register_main span{
    font-size: 16px;
    vertical-align: text-bottom;
    margin: 0 3px;
  }

  .m_register_button_div{
    width: 100%;
    margin-top: 40px;
  }

  .m_register_button{
    font-size: 15px;
    width: 50%;
    padding: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .member_form_explanation{
    font-size: 14px;
    text-align: center;
    color: #f7780d;
  }

  .member_register_main .info_span{
    font-size: 0.7em;
    vertical-align: middle;
  }

  .member_name{
    width: 80%;
  }

  .member_email{
    width: 95%;
  }

  .member_pass{
    width: 80%;
  }

  .member_tel{
    width: 80%;
  }

  .member_postal{
    width: 70%;
    box-sizing: border-box;
  }

  .member_address{
    width: 95%;
  }

  .birth_select select{
    font-size: 16px;
    width: 24%;
    padding: 2px 0;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }

  .member_register_main .required{
    font-size: 12px;
    color: red;
    vertical-align: top;
  }

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

  .resetting_p{
    font-size: 18px;
    line-height: 1.3;
    margin: 20px auto;
    text-align: center;
  }

  .admin_login_main .resetting_input{
    width: 100%;
  }




/* コーヒー商品登録ページ */

  .coffee_register_body .error_message{
    margin: 20px 0 0;
  }

  .coffee_register_main{
    width: 80%;
    max-width: 300px;
  }
  .coffee_register_main h1{
    font-size: 28px;
    margin: 30px 0 15px;
    text-align: center;
  }
  .coffee_register_main h2{
    font-size: 18px;
    margin: 20px 0 8px;
  }
  .coffee_register_main span{
    font-size: 16px;
    vertical-align: text-bottom;
  }
  .coffee_register_main input{
    display: inline;
    font-size: 16px;
    box-sizing: border-box;
  }
  .coffee_register_main select{
    font-size: 16px;
    width: 100%;
    padding: 2px 0;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }
  .coffee_register_main .register_button{
    font-size: 15px;
    width: 50%;
    padding: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }
  .coffee_register_main .register_new_origin{
    width: 93%;
    margin-left: 7%;
  }
  .register_flag_origin{
    margin-top: 5px;
  }

  .c_register_button_div{
    width: 100%;
    margin-top: 40px;
  }

  .c_register_button{
    font-size: 16px;
    width: 150px;
    padding: 5px;
    margin-bottom: 20px;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .register_coffee_name{
    width: 100%;
  }

  .register_origin{
    width: 100%;
  }

  .register_purification{
    width: 100%;
  }

  .register_roasting{
    width: 100%;
  }

  .register_coffee_price{
    width: 50%;
  }

  .beans_image_p{
    font-size: 15px;
    margin: 12px 0 5px;
  }

  .edit_beans_image{
    display: block;
    width: 30%;
  }

  .file_beans_image{
    font-size: 12px;
  }

  .register_h2_taste{
    display: inline-block;
  }

  .coffee_register_main .register_taste{
    width: 45px;
    text-align: left;
    vertical-align: text-top;
  }

  .register_coffee_comment{
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
  }

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

  .register_origin_image{
    width: 20px;
  }

  .register_beans_image{
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .register_taste_p{
    font-size: 20px;
  }

  .register_confirm_comment{
    white-space: normal;
  }

  .register_taste_item{
    width: 50%;
  }
  
  .c_register_h{
    margin: 20px auto 30px;
    width: 100%;
    position: relative;
    z-index: -1;
  }
  .c_register_h img{
    width: 100%;
    height: auto;
  }
  .c_register_h .c_reg_h1{
    position: absolute;
    margin: 0;
    top: 17px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 3px black , 0 0 3px black , 0 0 3px black , 0 0 5px yellow;
  }
  .c_register_h .c_reg_h2{
    position: absolute;
    margin: 0;
    top: 10px;
    right: 14px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }
  .c_register_h .c_reg_h3{
    position: absolute;
    margin: 0;
    bottom: 10px;
    right: 15px;
    letter-spacing: -1px;
    font-size: 8px;
    text-shadow: 0 0 1px white;
  }


/* コーヒー商品一覧 */

  .coffee_list_main{
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .coffee_nolist_p{
    margin: 30px auto;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
  }

  .coffee_list_table{
    width: 100%;
    background-color: #ffd5a3;
    box-shadow: 2px 2px 5px gray;
    margin: 40px 0 24px;
  }

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

  .coffee_list_name{
    font-size: 16px;
    width: 70%;
  }
  .coffee_list_name span{
    font-size: 0.7em;
    vertical-align: top;
  }
  .coffee_list_submit{
    width: 15%;
    vertical-align: middle;
  }
  .coffee_list_button{
    margin: 0 auto;
    display: block;
    width: 45px;
    height: 30px;
    padding: 0px;
    text-align: center;
    font-size: 14px;
    border: 0.5px solid black;
    border-radius: 5px;
    background-color: #eeeeee;
    color: black;
  }

  .coffee_list_ul .coffee_register_button{
    width: 120px;
    padding: 8px;
    margin-top: 30px;
    border: 2px solid black;
    text-align: center;
    background-color: #dcd1b3;
  }
  .coffee_list_ul .coffee_register_button a{
    font-size: 15px;
    display: inline-block;
    color: black;
    text-shadow: 0 0 5px white;
  }

/* コーヒー商品delete */

  .coffee_delete_main{
    width: 250px;
    margin: 0 auto;
  }
  .coffee_delete_main h1{
    font-size: 28px;
    text-align: center;
    margin: 20px auto 30px;
  }
  .coffee_delete_main h2{
    font-size: 20px;
    margin-bottom: 12px;
  }
  .coffee_delete_main p{
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    white-space: nowrap;
  }
  .coffee_delete_main .input_pass{
    display: block;
    font-size: 18px;
    width: 60%;
    margin: 0 auto 50px;
  }
  .coffee_delete_main input[type=submit]{
    display: block;
    font-size: 14px;
    width: 100px;
    margin:20px auto;
    border: 1px solid black;
    border-radius: 5px;
    background-color: rgb(235, 235, 235);
  }

/* コーヒー商品edit */

  .coffee_stock{
    width: 50px;
  }
  



/* 「roasting_top.php」 */

  .roasting_header_div{
    width: auto;
    height: 20px;
  }

  .roasting_top_main{
    width: 90vw;
    max-width: 400px;
    margin: 30px auto;
  }

  .roasting_top_table{
    width: 100%;
    background-color: #ffd5a3;
    box-shadow: 2px 2px 5px gray;
    margin: 40px auto;
  }

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

  .roasting_top_name{
    font-size: 13px;
    width: 70%;
  }
  .roasting_top_name_span{
    font-size: 0.7em;
  }
  .roasting_top_name_under{
    display: block;
    margin-top: 5px;
  }
  .roasting_top_submit{
    width: 15%;
    vertical-align: middle;
  }
  .roasting_top_button{
    font-size: 12px;
    width: 100%;
    display: block;
    background-color: #ff9e2a;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .roasting_top_div{
    width: 80%;
    margin: 25px auto;
  }

  .roasting_menu_button{
    width: 42%;
    height: 30px;
    font-size: 14px;
    color: black;
    text-shadow: 0 0 3px white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    text-align: center;
    background-color: #dcd1b3;
  }



/* raw_beans_operat.php */

  .r_b_o_main{
    width: 70%;
    max-width: 400px;
    margin: 30px auto;
  }

  .r_b_o_h1{
    font-size: 24px;
    text-align: center;
    margin: 0 auto 15px;
  }

  .r_b_o_h2{
    font-size: 20px;
    margin: 16px auto 8px;
  }

  .r_b_o_coffee_name{
    font-size: 16px;
    padding: 3px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_main .register_origin{
    font-size: 16px;
    padding: 3px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_main .register_purification{
    font-size: 16px;
    padding: 3px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_main .coffee_stock{
    font-size: 16px;
    padding: 3px;
    width: 20%;
    box-sizing: border-box;
  }

  .r_b_o_new_origin{
    font-size: 16px;
    padding: 3px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_flag_origin{
    font-size: 14px;
    margin-top: 5px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_button_div{
    width: 100%;
    margin-top: 40px;
  }

  .r_b_o_button{
    font-size: 15px;
    width: 50%;
    padding: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }



/* raw_beans_operat_check.php */

  .r_b_o_check_p_top{
    font-size: 13px;
    margin: 30px auto;
    text-align: center;
  }

  .r_b_o_check_p{
    font-size: 18px;
    margin: 0px 8px 15px 20px;
    display: inline-block;
  }

  .r_b_o_check_origin_image{
    width: 15%;
    vertical-align: middle;
  }



/* roasting_machines.php */

  .r_machines_main{
    width: 95%;
    max-width: 400px;
    margin: 30px auto;
  }

  .r_machines_h1{
    font-size: 26px;
    text-align: center;
    margin: 0 auto 30px;
  }

  .r_machines_p{
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
  }

  .r_machines_p2{
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .r_machines_form{
    margin-bottom: 80px;
  }

  .r_machines_select{
    width: 50%;
    font-size: 15px;
    padding: 5px;
    margin-right: 10px;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }

  .r_machines_button{
    width: 80px;
    height: 30px;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .r_machines_back{
    font-size: 15px;
    width: 50%;
    padding: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }



/* roasting_machines_add.php */

  .r_machines_h2{
    font-size: 20px;
    margin-left: 60px;
  }

  .r_machines_input{
    font-size: 18px;
    display: block;
    margin: 10px auto 30px;
  }

  .r_machines_submit{
    display: block;
    margin: 10px auto 50px;
    width: 100px;
    height: 35px;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }



/* roasting_start.php */

  .r_start_main{
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
  .r_start_main form{
    width: 90%;
    margin: 0 auto;
  }

  .r_start_h1{
    margin: 20px auto 0px;
    font-size: 18px;
    text-align: center;
  }
  
  .r_start_h{
    margin: 20px auto 30px;
    width: 100%;
    position: relative;
    z-index: -1;
  }
  .r_start_h img{
    width: 100%;
    height: auto;
  }
  .r_start_h h1{
    position: absolute;
    top: 20px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 3px black , 0 0 3px black , 0 0 3px black , 0 0 5px yellow;
  }
  .r_start_h h2{
    position: absolute;
    top: 10px;
    right: 14px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }
  .r_start_h h3{
    position: absolute;
    bottom: 10px;
    right: 15px;
    letter-spacing: -1px;
    font-size: 8px;
    text-shadow: 0 0 1px white;
  }

  .r_start_h2{
    position: absolute;
    top: -11px;
    left: 12px;
    font-size: 18px;
    background-color: #f2ede1;
  }

  .r_start_h3{
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
  }

  .r_start_border_div{
    position: relative;
    min-width: 280px;
    box-sizing: border-box;
    margin: 0 auto 40px;
    text-align: center;
    border: 1px solid black;
    border-radius: 5px;
    padding: 22px 15px 15px;
  }

  .r_start_short_input{
    font-size: 16px;
    width: 60px;
    padding: 2px;
    vertical-align: text-bottom;
    letter-spacing: 1px;
  }
  
  .r_start_middle_input{
    font-size: 16px;
    width: 80px;
    padding: 2px;
    vertical-align: text-bottom;
    letter-spacing: 1px;
  }

  .r_start_long_input{
    position: relative;
    font-size: 20px;
    width: 80%;
    padding: 2px;
    vertical-align: baseline;
    letter-spacing: 1px;
  }

  .r_start_input_after_span{
    font-size: 14px;
    margin-left: -2px;
  }

  .r_start_date select{
    font-size: 16px;
    vertical-align: text-bottom;
    padding: 1px;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }
  .r_start_date span{
    font-size: 14px;
    margin: 0 5px;
  }

  .r_start_date_p{
    font-size: 15px;
    letter-spacing: 1px;
    margin: 10px auto 0;
  }

  .r_start_percent select{
    font-size: 16px;
    width: 70px;
    letter-spacing: 1px;
    vertical-align: text-bottom;
    padding: 1px;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }
  .r_start_percent span{
    font-size: 14px;
    margin-left: 3px;
  }

  .r_start_total_time_div select{
    font-size: 16px;
    width: 60px;
    padding: 1px;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }
  .r_start_total_time_div input{
    font-size: 16px;
    width: 40px;
  }
  .r_start_total_time_div span{
    font-size: 14px;
    vertical-align: text-bottom;
  }

  .r_start_pulldown_roasting select{
    font-size: 16px;
    width: 180px;
    padding: 1px;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }

  .r_start_total{
    width: 210px;
    margin-bottom: 5px;
  }
  .r_start_roast{
    width: 210px;
  }



/* roasting_start_check.php */

  .r_start_c_h3{
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
  }
  .r_start_c_h3_small{
    font-size: 13px;
    margin-bottom: 5px;
    text-align: center;
  }

  .r_start_c_border{
    width: 100%;
    min-width: 60px;
    height: 0px;
    margin: 5px auto 3px;
    border-top: 1px solid black;
    border-radius: 1px;
  }

  .r_start_c_date_p{
    font-size: 16px;
  }

  .session_span{
    font-size: 16px;
  }
  .r_start_total_time_div .total_session_span{
    font-size: 16px;
    vertical-align: baseline;
  }



/* roasting_start_done.php */

  .old_check_p{
    font-size: 15px;
    margin-bottom: 5px;
    text-align: center;
  }
  



/* 「roasting_data.php」 */

  .roasting_data_main{
    width: 90vw;
    max-width: 400px;
    margin: 30px auto;
  }

  .roasting_data_h2{
    font-size: 18px;
    text-align: center;
  }

  .roasting_data_p{
    font-size: 14px;
    text-align: center;
    margin: 40px auto 50px;
  }

  .roasting_data_table{
    width: 100%;
    background-color: #ffd5a3;
    box-shadow: 2px 2px 5px gray;
    margin: 10px auto 40px;
  }

  .roasting_data_kinds_table{
    width: 100%;
    background-color: #ff9e2b;
    box-shadow: 2px 2px 5px gray;
    margin: 10px auto 40px;
  }

  .roasting_data_tr td{
    padding: 6px;
    border: 1px solid black;
  }

  .roasting_data_name{
    font-size: 13px;
    width: 70%;
  }
  .roasting_data_name_span{
    font-size: 0.8em;
  }
  .roasting_data_name_under{
    display: block;
    margin-top: 5px;
  }
  .roasting_data_submit{
    width: 15%;
    vertical-align: middle;
  }
  .roasting_data_button{
    font-size: 12px;
    width: 100%;
    display: block;
    background-color: #ff9e2a;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }
  .roasting_data_button2{
    font-size: 12px;
    width: 100%;
    display: block;
    background-color: #ffd5a3;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .roasting_data_div{
    width: 80%;
    margin: 25px auto;
  }

  .roasting_menu_button{
    width: 42%;
    height: 30px;
    font-size: 14px;
    color: black;
    text-shadow: 0 0 3px white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    text-align: center;
    background-color: #dcd1b3;
  }




/* roasting_review.php */

  .r_review_date{
    font-size: 20px;
    text-align: center;
    margin: 0 auto;
  }

  .r_review_last_date{
    font-size: 15px;
    text-align: center;
    margin: 10px auto 0;
  }

  .review_border_long_div{
    width: 90%;
    margin: 40px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }

  .review_border_short_div{
    width: 90%;
    margin: 7px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }

  .review_taste_div{
    width: 90%;
    margin: 20px auto;
  }

  .review_taste_item{
    width: 30%;
  }

  .review_h2_taste{
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: -1px;
  }

  .review_taste{
    width: 45px;
    text-align: center;
    font-size: 16px;
    padding: 1px;
  }

  .review_comment{
    width: 90%;
    margin: 0 auto;
  }
  .review_comment h2{
    font-size: 20px;
    margin-bottom: 5px;
  }
  .review_comment textarea{
    font-size: 15px;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    height: 100px;
  }
  .review_comment p{
    font-size: 15px;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    height: 100px;
    border: 1px solid black;
    overflow: scroll;
  }




/* member_pay_history.php */

  .p_h_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

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

  .p_h_p{
    font-size: 18px;
    text-align: center;
    margin: 20px auto 20px;
  }

  .p_h_table{
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
  }
  .p_h_table td{
    border: 2px solid rgb(100, 100, 100);
  }

  .p_h_table_top{
    background-color: #ded4bd;
    box-sizing: border-box;
    padding: 8px;
    width: 100%;
  }
  .select_year{
    display: block;
    font-size: 18px;
    padding: 5px;
    width: 100px;
    text-align: center;
    margin: 0 0 0 auto;
    background-color: #ebebeb;
  }

  .rec_0_div{
    width: 90%;
    margin: 0 auto;
  }

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

  .p_h_item{
    box-sizing: border-box;
    width: 100%;
    height: auto;
  }

  .p_h_border_long{
    width: 95%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 0 auto;
  }

  .p_h_border_short{
    width: 40%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 6px auto 4px;
  }

  .p_h_item_middle{
    width: 100%;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
  }
  .p_h_item_middle_left{
    width: 33%;
    height: auto;
  }
  .p_h_item_middle_center{
    width: 34%;
    height: auto;
    white-space: nowrap;
  }
  .p_h_item_middle_right{
    width: 33%;
    height: auto;
  }

  .p_h_item_under{
    width: 100%;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
  }

  .p_h_item_submit{
    font-size: 12px;
    padding: 4px 10px;
    margin-left: 18px;
    background-color: #ebebeb;
    border: 0.5px solid black;
    border-radius: 3px;
    color: black;
    border: 1px solid black;
  }

  .p_h_item_under_right p{
    font-size: 12px;
  }
  .p_h_item_under_right span{
    font-size: 24px;
    margin-left: 4px;
  }

  .p_h_select_back_button{
    box-sizing: border-box;
    margin: 20px 0;
    width: 120px;
    height: 30px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .p_h_arrow_left::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }





/* member_pay_history_item.php */

  .p_h_i_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

  .p_h_i_top_div{
    width: 95%;
    margin: 30px auto 30px;
  }

  .p_h_i_left_div{
    height: 50px;
  }

  .p_h_i_left_value{
    font-size: 18px;
    margin: 3px 0;
  }

  .p_h_i_receipt_button{
    border: none;
    width: 120px;
    height: 45px;
    background-color: #ff8c2a;
    box-shadow: 2px 2px 3px black;
    border-radius: 5px;
  }

  .p_h_i_h2{
    font-size: 20px;
    margin-bottom: 5px;
  }

  .p_h_i_line{
    margin: 0 auto 15px;
    border: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .p_h_i_orderer_div{
    width: 85%;
    margin: 0 auto 15px;
  }

  .p_h_i_orderer_h3{
    font-size: 18px;
  }

  .p_h_i_orderer_p{
    font-size: 18px;
    margin: 8px 0 15px 36px;
  }

  .p_h_i_table{
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse
  }
  .p_h_i_table td{
    border: 2px solid rgb(100, 100, 100);
  }

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

  .p_h_i_table_item_top{
    width: 100%;
    height: auto;
    padding: 8px 8px 8px 18px;
    box-sizing: border-box;
  }

  .p_h_i_table_item_top_left{
    width: 70px;
    height: auto;
  }

  .p_h_i_table_item_top_right{
    flex-grow: 1;
    height: auto;
    text-align: center;
  }
  .p_h_i_table_item_top_right h2{
    font-size: 15px;
    letter-spacing: 0;
  }
  .p_h_i_table_item_top_right h3{
    font-size: 13px;
    letter-spacing: -1px;
  }

  .p_h_i_table_border_long{
    width: 95%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 0 auto;
  }

  .p_h_i_table_border_short{
    width: 40%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 6px auto 4px;
  }

  .p_h_i_table_item_middle{
    width: 100%;
    height: auto;
    padding: 8px;
    box-sizing: border-box;
    font-size: 12px;
  }

  .p_h_i_table_item_middle_item{
    width: 33.3%;
    height: auto;
    white-space: nowrap;
  }

  .p_h_i_table_item_under{
    width: 100%;
    height: auto;
    padding: 12px 8px;
    box-sizing: border-box;
  }

  .p_h_i_re_cart{
    font-size: 12px;
    width: 150px;
    height: 30px;
    letter-spacing: -0.1px;
    border: 0.5px solid black;
    border-radius: 2px;
    background-color: #ded4bd;
    color: black;
  }

  .p_h_i_table_item_under_p{
    font-size: 12px;
  }
  .p_h_i_table_item_under_p span{
    font-size: 22px;
    margin-left: 4px;
  }

  .p_h_i_table_all_price_td{
    height: 40px;
    padding: 8px 12px;
    text-align: right;
    vertical-align: bottom;
    font-size: 14px;
    letter-spacing: 1px;
    background-color: #ded4bd;
  }
  .p_h_i_table_all_price_td_span{
    margin-left: 12px;
    font-size: 32px;
    letter-spacing: 1px;
  }

  .p_h_i_coupon_span{
    position: absolute;
    top: 2px;
    left: 3px;
    font-size: 12px;
    color: black;
    border: none;
  }

  .p_h_i_table_shipping_td{
    height: 22px;
    padding: 12px 8px;
    text-align: right;
    font-size: 14px;
    letter-spacing: 0px;
  }
  .p_h_i_table_shipping_td_span{
    font-size: 22px;
    margin-left: 4px;
  }







/* roasting_data_kinds.php */

  .r_d_kinds_header_div{
    width: 100%;
    height: 10px;
  }

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

  .r_d_kinds_h1{
    margin: 15px auto 0px;
    font-size: 18px;
    text-align: center;
  }

  .r_d_kinds_h{
    margin: 20px auto 15px;
    width: 90%;
    max-width: 350px;
    position: relative;
    z-index: -1;
  }
  .r_d_kinds_h img{
    width: 100%;
    height: auto;
  }
  .r_d_kinds_h h1{
    position: absolute;
    top: 20px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 5px yellow;
  }
  .r_d_kinds_h h2{
    position: absolute;
    top: 10px;
    right: 14px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }
  .r_d_kinds_h h3{
    position: absolute;
    bottom: 10px;
    right: 15px;
    letter-spacing: -1px;
    font-size: 8px;
    text-shadow: 0 0 1px white;
  }

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

  .r_d_kinds_edit_div{
    box-sizing: border-box;
    width: 100vw;
    height: 80px;
    padding: 5px;
    margin: 20px auto;
    background-color: #efe4ca;
  }

  .r_d_kinds_sort_span{
    font-size: 16px;
  }
  .select_sort{
    width: 180px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 3px;
    background-color: #efefef;
  }
  .r_d_kinds_select_span{
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  .select_coffee{
    width: 180px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .r_d_kinds_card{
    width: 90%;
    max-width: 350px;
    margin: 30px auto;
    border: 1px solid rgb(100, 100, 100);
    border-radius: 5px;
    box-shadow: 2px 2px 5px black;
    white-space: nowrap;
  }
  .r_d_kinds_card_top{
    box-sizing: border-box;
    width: 90%;
    height: 55px;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }
  .r_d_kinds_card_top_item{
    width: 33.3%;
  }
  .r_d_kinds_card_top_item span{
    font-size: 13px;
  }
  .r_d_kinds_card_top_item_line{
    width: 60%;
    margin: 4px auto 2px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .r_d_kinds_card_middle{
    width: 100%;
    height: 25px;
    text-align: center;
  }
  .r_d_kinds_card_middle_item{
    width: 33.3%;
  }
  .r_d_kinds_card_middle_item span{
    font-size: 13px;
  }

  .r_d_kinds_card_under{
    width: 100%;
    height: 25px;
    text-align: center;
  }
  .r_d_kinds_card_under_item{
    width: 33.3%;
  }
  .r_d_kinds_card_under_item span{
    font-size: 13px;
  }

  .r_d_kinds_card_form{
    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    height: 40px;
    margin: 3px auto 0;
  }
  .r_d_kinds_card_form form{
    width: 100%;
    height: 100%;
  }

  .r_d_kinds_card_form_button{
    font-size: 12px;
    width: 100px;
    height: 25px;
    display: block;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .r_d_kinds_rec_1_div{
    width: 90%;
    max-width: 320px;
    margin: 20px auto 0;
  }
  .r_d_kinds_back_button{
    box-sizing: border-box;
    width: 90px;
    height: 30px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .r_d_kinds_back_button::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }





/* roasting_data_detail.php */

  .r_d_d_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

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

  .r_d_d_h{
    margin: 20px auto 10px;
    width: 350px;
    position: relative;
    z-index: -1;
  }
  .r_d_d_h img{
    width: 100%;
    height: auto;
  }
  .r_d_d_h h1{
    position: absolute;
    top: 26px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 5px yellow;
  }
  .r_d_d_h h2{
    position: absolute;
    top: 13px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 11px;
    text-shadow: 0 0 1px white;
  }
  .r_d_d_h h3{
    position: absolute;
    top: 11px;
    right: 16px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }
  .r_d_d_h h4{
    position: absolute;
    bottom: 11px;
    right: 15px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }

  .r_d_d_date_div{
    box-sizing: border-box;
    width: 300px;
    height: auto;
    margin: 0 auto 15px;
  }

  .r_d_d_date_div_item{
    width: 50%;
  }
  .r_d_d_date_div_item span{
    font-size: 16px;
  }
  .r_d_d_date_div_item_line{
    width: 50%;
    height: 0px;
    margin: 5px auto 3px;
    border-top: 1px solid black;
    border-radius: 1px;
  }

  .r_d_d_h2{
    font-size: 18px;
    width: 320px;
    margin: 15px auto 0;
  }

  .r_d_d_longline{
    width: 320px;
    height: 0px;
    margin: 5px auto 10px;
    border-top: 1px solid black;
    border-radius: 1px;
  }
  .r_d_d_longline2{
    width: 320px;
    height: 0px;
    margin: 30px auto 20px;
    border-top: 1px solid black;
    border-radius: 1px;
  }

  .r_d_d_taste_div{
    width: 320px;
    height: 30px;
    margin: 0 auto;
  }

  .r_d_d_taste_p_18{
    width: 33.3%;
    font-size: 18px;
    text-align: center;
  }

  .r_d_d_h3{
    font-size: 16px;
    width: 310px;
    margin: 20px auto 8px;
  }

  .r_d_d_data_div{
    width: 320px;
    height: 30px;
    white-space: nowrap;
    margin-left: 28px;
  }

  .r_d_d_taste_p_15{
    width: 100px;
    height: 20px;
    font-size: 15px;
    text-align: center;
    border-bottom: 0.5px solid black;
    margin-right: 10px;
  }

  .r_d_d_comment{
    width: 300px;
    margin: 0 auto 20px;
  }
  .r_d_d_comment h2{
    font-size: 18px;
    margin-bottom: 8px;
  }
  .r_d_d_comment p{
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.1;
    width: 300px;
    padding: 8px;
    box-sizing: border-box;
    height: 100px;
    border: 1px solid black;
    overflow: scroll;
  }

  




/* delivery_select.php */

  .d_s_main{
    width: 70%;
    max-width: 280px;
    margin: 30px auto;
  }

  .d_s_button{
    box-sizing: border-box;
    border: 1px solid black;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
    background-color: #dcd1b3;
    line-height: 2.4;
  }
  .d_s_button a{
    display: block;
    font-size: 20px;
    color: black;
    text-shadow: 0 0 5px white;
  }

  




/* delivery_req.php */

  .d_r_space{
    height: 20px;
  }

  .d_r_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

  .d_r_h1{
    font-size: 24px;
    text-align: center;
    margin: 40px auto 0;
  }

  .d_r_div{
    flex-wrap: wrap;
    width: 100%;
    overflow: scroll;
    margin: 0 auto;
  }

  .d_r_info_span{
    display: block;
    font-size: 18px;
    margin: 20px auto 10px;
    text-align: center;
  }

  .d_r_form{
    box-sizing: border-box;
    width: 42%;
    height: auto;
    margin: 4%;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
  }

  .d_r_button{
    font-size: 18px;
    width: 100%;
    height: auto;
    color: white;
    text-shadow: 0 0 3px black;
    background: none;
    border: none;
  }
  .d_r_button span{
    overflow: scroll;
    white-space: nowrap;
  }

  .d_r_button_top{
    width: 100%;
    font-size: 0.8em;
    margin: 6px 0 0 5px;
    text-align: left;
  }
  .d_r_button_middle{
    width: 100%;
    text-align: left;
    margin-left: 5px;
  }
  .d_r_button_under{
    width: 100%;
    margin: -3px 5px 5px 0;
    text-align: right;
  }
  .d_r_button_blend{
    position: absolute;
    bottom: 0px;
    left: 5px;
    color: orange;
    transform: rotate(-15deg);
    font-family: 'Shippori Mincho';
  }

  .d_r_back_div{
    flex-grow: 1;
    width: 75%;
    max-width: 350px;
    margin: 0 auto;
  }

  .d_r_back_a{
    box-sizing: border-box;
    width: 90px;
    height: 35px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .d_r_back_a::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }

  




/* delivery_req_check.php */

  .d_r_c_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

  .d_r_c_h1{
    font-size: 24px;
    text-align: center;
    margin: 30px auto 0;
  }

  .d_r_c_info_p{
    font-size: 18px;
    text-align: center;
    margin: 15px auto 25px;
    line-height: 1.2;
  }

  .d_r_c_line{
    margin: 0 auto 15px;
    border: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .d_r_c_h2{
    font-size: 20px;
    margin: 25px 0 5px;
  }

  .d_r_c_orderer_div{
    width: 85%;
    margin: 0 auto;
  }
  .d_r_c_orderer_h3{
    font-size: 18px;
  }
  .d_r_c_orderer_p{
    font-size: 18px;
    margin: 5px 0 10px 36px;
  }

  .d_r_c_card{
    width: 90%;
    max-width: 350px;
    margin: 30px auto;
    border: 1px solid rgb(100, 100, 100);
    border-radius: 5px;
    box-shadow: 2px 2px 5px black;
    white-space: nowrap;
  }

  .d_r_c_card_top{
    box-sizing: border-box;
    width: 90%;
    height: 32px;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

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

  .d_r_c_card_middle{
    box-sizing: border-box;
    width: 90%;
    height: 50px;
    margin: 0 auto;
  }

  .d_r_c_card_middle_item{
    width: 33.3%;
  }
  .d_r_c_card_middle_item span{
    font-size: 13px;
  }

  .d_r_c_card_middle_item_line{
    width: 60%;
    margin: 4px auto 2px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .d_r_c_card_form{
    width: 90%;
    height: 40px;
    margin: 3px auto 0;
    border-top: 1px solid rgb(100, 100, 100);
  }
  .d_r_c_card_form form{
    width: 100%;
    height: 100%;
  }

  .d_r_c_card_form_button{
    font-size: 14px;
    width: 30%;
    height: 25px;
    display: block;
    background-color: #c38a00;
    color: #f2ede1;
    letter-spacing: 2px;
    border: 1px solid black;
    border-radius: 3px;
  }

  .d_r_c_all_form{
    width: 200px;
    margin: 30px auto 30px;
  }

  .d_r_c_all_form_button{
    font-size: 16px;
    width: 100%;
    height: 40px;
    display: block;
    background-color: #ffae4f;
    color: black;
    border: 1px solid black;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 2px 3px 3px gray;
  }
  .d_r_c_back_form_button{
    font-size: 16px;
    width: 100%;
    height: 40px;
    display: block;
    background-color: #f2ede1;
    color: black;
    border: 1px solid black;
    border-radius: 8px;
    letter-spacing: 0.5px;
    margin-top: 25px;
  }

  .d_r_c_doc_number_p{
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
  }
  .d_r_c_doc_number_span{
    font-size: 14px;
    display: block;
    text-align: center;
    margin-bottom: 8px;
  }

  .d_r_c_doc_number_text{
    box-sizing: border-box;
    font-size: 16px;
    padding: 5px;
    width: 100%;
    height: 70px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    border: 1px solid black;
    border-radius: 5px;
  }

  




/* delivery_comp.php */

  .d_c_div{
    width: 90%;
    max-width: 350px;
    margin: 10px auto 10px;
  }

  .d_c_info_span{
    font-size: 18px;
  }

  .d_c_back_div{
    width: 90%;
    max-width: 350px;
    margin: 20px auto 10px;
  }

  




/* my_blend.php */

  .m_b_main{
    width: 100%;
    flex-grow: 1;
  }

  .m_b_h1{
    font-size: 24px;
    text-align: center;
    margin-top: 15px;
  }

  .m_b_a{
    font-size: 18px;
    width: 220px;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 2.3;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 8px;
    margin: 20px auto 0px;
  }

  .m_b_h2{
    font-size: 18px;
    width: 350px;
    margin: 20px auto 5px;
  }

  .m_b_longline{
    border-top: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 350px;
    height: 0;
    margin: 0 auto;
  }

  .m_b_p_no{
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
    margin: 50px auto 0;
  }

  .m_b_back_div{
    width: 90%;
    max-width: 350px;
    margin: 0 auto 5px;
  }

  .m_b_back_button{
    box-sizing: border-box;
    width: 185px;
    height: 34px;
    font-size: 15px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
    margin: 40px 0 10px 10px;
  }
  .m_b_back_button::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }

  .m_b_p{
    font-size: 15px;
    text-align: center;
    letter-spacing: 1px;
    margin: 25px auto 15px;
  }

  .m_b_sort_div{
    box-sizing: border-box;
    margin-top: 25px;
    width: 100vw;
    height: 50px;
    background-color: #efe4ca;
  }

  .m_b_card{
    width: 350px;
    margin: 30px auto;
    border: 1px solid rgb(100, 100, 100);
    border-radius: 5px;
    box-shadow: 2px 2px 5px black;
    white-space: nowrap;
  }

  .m_b_card_top{
    box-sizing: border-box;
    width: 90%;
    height: 65px;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .m_b_card_top_item{
    width: 33.3%;
  }

  .m_b_card_top_item .m_b_card_top_span{
    font-size: 14px;
  }

  .m_b_card_top_item_line{
    width: 60%;
    margin: 6px auto 4px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .m_b_card_middle{
    width: 90%;
    height: 30px;
    margin: 0 auto;
    text-align: center;
  }

  .m_b_card_middle_item{
    width: 25%;
  }
  .m_b_card_middle_item span{
    font-size: 15px;
  }

  .m_b_card_bottom{    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    margin: 0 auto;
  }

  .m_b_card_bottom_p{
    font-size: 15px;
    margin: 8px 0 8px 10px;
  }

  .m_b_card_form_top{
    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    height: 40px;
    margin: 0 auto;
  }
  .m_b_card_form_top form{
    width: 100%;
    height: 100%;
  }

  .m_b_card_form_top_button{
    font-size: 12px;
    width: 100px;
    height: 25px;
    display: block;
    background-color: #614d3f;
    color: white;
    border: 1px solid black;
    border-radius: 3px;
  }

  .m_b_card_form_bottom{
    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    height: 50px;
    margin: 0 auto;
  }
  .m_b_card_form_bottom form{
    width: 100%;
    height: 100%;
  }

  .m_b_card_form_bottom_button{
    font-size: 14px;
    width: 270px;
    height: 30px;
    display: block;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  




/* blend_req.php */

  .b_r_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

  .b_r_h1{
    margin: 20px auto 0px;
    font-size: 18px;
    text-align: center;
  }
  .b_r_h1_2{
    margin: 0px auto 0px;
    font-size: 18px;
    text-align: center;
  }
  .b_r_h1_3{
    font-size: 20px;
    text-align: center;
    margin: 50px auto -10px;
  }

  .b_r_title_line{
    border-top: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 90px;
    height: 0;
    margin: 8px auto 5px;
  }

  .b_r_info_p{
    font-size: 14px;
    margin: 15px auto 0;
    text-align: center;
    line-height: 1.2;
  }

  .b_r_main form{
    width: 100%;
  }

  .b_r_h2{
    font-size: 18px;
    margin: 25px 0 5px;
  }
  .b_r_h2 span{
    margin-left: 10px;
    font-size: 0.7em;
  }

  .b_r_longline{
    border-top: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .b_r_blend_p{
    white-space: nowrap;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-align: center;
    margin: 15px auto 10px;
  }

  .b_r_blend_div{
    width: 85%;
    height: 50px;
    margin: 0px auto;
  }

  .b_r_score_h2{
    font-size: 20px;
    margin-right: 8px;
  }

  .b_r_score_select{
    font-size: 16px;
    text-align: center;
    width: 50px;
    padding: 3px;
    background-color: white;
    border: 1px solid black;
    border-radius: 3px;
  }

  .b_r_keep_button{
    display: block;
    width: 120px;
    height: 35px;
    font-size: 16px;
    background-color: #f7780d;
    font-family: 'Shippori Mincho', serif;
    border: 1px solid black;
    border-radius: 10px;
    color: black;
  }

  .b_r_taste_div{
    width: 100%;
    margin: 20px 0;
  }

  .b_r_taste_item{
    width: 23%;
  }
  .b_r_taste_item h2{
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: 0px;
  }
  .b_r_taste_item div{
    width: 90%;
    margin: 7px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }
  .b_r_taste_item select{
    width: 45px;
    text-align: center;
    font-size: 16px;
    padding: 1px;
  }

  .b_r_textarea{
    display: block;
    box-sizing: border-box;
    width: 300px;
    height: 80px;
    font-size: 16px;
    margin: 5px auto 30px;
    padding: 5px;
    border: 1px solid black;
    border-radius: 5px;
  }

  .b_r_textarea_p{
    width: 300px;
    margin: 15px auto 0;
    font-size: 14px;
  }

  .b_r_card_left_p{
    font-size: 15px;
    letter-spacing: 1px;
  }







/* blend_req_check.php */

  .b_r_taste_item .b_r_c_taste_item_div{
    width: 60%;
    margin: 7px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }

  .b_r_c_req_div{
    box-sizing: border-box;
    width: 300px;
    height: 60px;
    font-size: 14px;
    margin: 30px auto;
    padding: 7px;
    border: 1px solid black;
    border-radius: 5px;
  }

  .b_r_c_order_div{
    width: 100%;
    margin: 20px 0;
  }

  .b_r_c_order_item{
    width: 33%;
  }
  .b_r_c_order_item h2{
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: -1px;
  }
  .b_r_c_order_item div{
    width: 50%;
    margin: 5px auto 3px;
    border-bottom: solid 1px rgb(70, 40, 0);
  }
  .b_r_c_order_item h3{
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: 0px;
  }

  .b_r_c_button{
    display: block;
    width: 250px;
    height: 45px;
    font-size: 18px;
    margin: 10px auto 40px;
    background-color: #f7780d;
    font-family: 'Shippori Mincho', serif;
    border-radius: 10px;
    border: 1px solid black;
    color: black;
  }

  .b_r_c_button_arrow_right::after {
    content: "";
    display: inline-block;
    margin: -1.8px 5px;
    border: 8px solid transparent;
    border-left: 8px solid black;
  }

  .b_r_c_back_div{
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }

  .b_r_c_back_button{
    box-sizing: border-box;
    width: 120px;
    height: 30px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .b_r_c_back_button::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }





/* blend_payment_delivery.php */

  .b_p_d_h1_top{
    font-size: 24px;
    text-align: center;
    margin-top: 30px;
  }
  .b_p_d_h1_bottom{
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }
  .b_p_d_h1_line{
    margin: 6px auto;
    border: 0.5px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 60px;
    height: 0;
  }





/* blend_payment_check.php */

  .b_p_c_back_button{
    width: 90px;
    height: 50px;
    background-color: #614d3f;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    color: white;
    font-family: serif;
    letter-spacing: 1px;
    line-height: 1.2;
    border: none;
    padding: 0;
  }






/* select_blend.php */

  .s_b_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

  .s_b_h1{
    font-size: 24px;
    text-align: center;
    margin: 25px auto 0;
  }

  .s_b_info_p{
    font-size: 16px;
    text-align: center;
    margin: 15px auto;
    line-height: 1.2;
  }

  .s_b_h2 {
    font-size: 18px;
    margin: 30px 0 5px;
  }
  .s_b_total_ratio_span{
    font-size: 0.8em;
    margin-left: 15px;
  }

  .s_b_longline{
    border-top: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .s_b_blend_div{
    width: 85%;
    height: 60px;
    margin: 10px auto;
  }
  .s_b_ratio_div{
    width: 50px;
    height: 50px;
  }
  .s_b_ratio_span{
    font-size: 16px;
  }
  .s_b_blend_delete_submit{
    font-size: 12px;
    width: 45px;
    height: 25px;
    display: block;
    background-color: #efefef;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }
  .s_b_blend_line{
    width: 0px;
    height: 50%;
    border: 0.5px solid black;
    border-radius: 50%;
    margin: 0 10px 0 5px;
  }
  .s_b_kinds_div{
    flex-grow: 1;
    height: 100%;
  }
  .s_b_kinds_div_div{
    width: 100%;
  }
  .s_b_roasting_span{
    font-size: 12px;
  }
  .s_b_country_span{
    font-size: 14px;
  }
  .s_b_brand_span{
    font-size: 16px;
    margin-top: 3px;
  }

  .s_b_no_select_p{
    font-size: 16px;
    width: 85%;
    margin: 10px auto;
  }

  .s_b_select_form{
    width: 200px;
    margin: 25px auto 0;
  }
  .s_b_select_submit{
    font-size: 14px;
    width: 100%;
    height: 30px;
    display: block;
    text-align: center;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 8px;
  }

  .s_b_taste_div{
    width: 100%;
    margin: 10px 0;
  }

  .s_b_taste_item{
    width: 23%;
  }
  .s_b_taste_item h2{
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: 0px;
  }
  .s_b_taste_item_div{
    width: 60%;
    margin: 4px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }

  .s_b_req_top{
    box-sizing: border-box;
    width: 300px;
    height: auto;
    font-size: 16px;
    margin: 15px auto 8px;
  }
  .s_b_req_div{
    box-sizing: border-box;
    width: 300px;
    height: 60px;
    font-size: 14px;
    margin: 0 auto 20px;
    padding: 7px;
    border: 1px solid black;
    border-radius: 5px;
  }

  .s_b_order_div {
    width: 100%;
    margin: 20px 0;
  }

  .s_b_order_item {
    width: 33%;
  }
  .s_b_order_item h2 {
    font-size: 14px;
    white-space: nowrap;
  }
  .s_b_order_item div {
    width: 50%;
    margin: 5px auto 3px;
    border-bottom: solid 1px rgb(70, 40, 0);
  }
  .s_b_order_item h3 {
    font-size: 16px;
    white-space: nowrap;
  }

  .s_b_base_id_p{
    white-space: nowrap;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-align: center;
    margin: 15px auto 10px;
  }

  .s_b_orderer_div{
    width: 85%;
    margin: 20px auto;
  }

  .s_b_orderer_h3{
    font-size: 16px;
  }

  .s_b_orderer_p{
    font-size: 16px;
    margin: 5px 0 10px 36px;
  }

  .s_b_blend_delete_done_div{
    width: 100%;
  }

  .s_b_dialog_p{
    font-size: 15px;
    line-height: 1.3;
  }

  .s_b_blend_delete_done_submit{
    font-size: 14px;
    margin: 0 0px 0 auto;
    padding: 6px 20px;
    border-radius: 8px;
    background-color: lightblue;
    border: 1.5px solid black;
  }


  




/* select_blend_list.php */

  .s_b_l_header_div{
    width: 100%;
    height: 10px;
  }

  .s_b_l_main{
    width: 100%;
    margin: 0 auto;
    flex-grow: 1;
  }

  .s_b_l_h1{
    margin: 15px auto 0px;
    font-size: 18px;
    text-align: center;
  }

  .s_b_l_h{
    margin: 20px auto 15px;
    width: 90%;
    max-width: 350px;
    position: relative;
    z-index: -1;
  }
  .s_b_l_h img{
    width: 100%;
    height: auto;
  }
  .s_b_l_h h1{
    position: absolute;
    top: 20px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 5px yellow;
  }
  .s_b_l_h h2{
    position: absolute;
    top: 10px;
    right: 14px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }
  .s_b_l_h h3{
    position: absolute;
    bottom: 10px;
    right: 15px;
    letter-spacing: -1px;
    font-size: 8px;
    text-shadow: 0 0 1px white;
  }

  .s_b_l_p{
    font-size: 18px;
    text-align: center;
    margin: 40px auto;
    line-height: 1.5;
    letter-spacing: 1.5px;
  }

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

  .s_b_l_edit_div{
    box-sizing: border-box;
    width: 100vw;
    height: 160px;
    padding: 5px;
    margin: 20px auto;
    background-color: #efe4ca;
  }

  .s_b_l_edit_div > div{
    width: 300px;
    margin-bottom: -10px;
  }

  .s_b_l_sort_span{
    width: 80px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }

  .s_b_l_select_sort{
    width: 220px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 3px;
    background-color: #efefef;
  }

  .s_b_l_select_span{
    width: 80px;
    font-size: 16px;
    letter-spacing: 1.2px;
  }

  .s_b_l_select_coffee{
    width: 220px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .s_b_l_search_span{
    width: 80px;
    font-size: 16px;
    letter-spacing: 10.5px;
  }

  .s_b_l_search_form_div{
    width: 220px;
    flex-wrap: nowrap;
    margin: 5px auto;
  }

  .s_b_l_taste_select{
    width: 85px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .s_b_l_param_select{
    width: 40px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .s_b_l_operat_select{
    width: 65px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .s_b_l_search_string{
    font-size: 15px;
    vertical-align: text-bottom;
  }

  .s_b_l_search_submit{
    width: 40px;
    height: 25px;
    background-color: #efefef;
    border: 0.5px solid black;
    border-radius: 3px;
    font-size: 13px;
    box-shadow: 1px 1px 2px #614d3f;
  }

  .s_b_l_card{
    width: 90%;
    max-width: 350px;
    margin: 30px auto;
    border: 1px solid rgb(100, 100, 100);
    border-radius: 5px;
    box-shadow: 2px 2px 5px black;
    white-space: nowrap;
  }

  .s_b_l_card_h{
    box-sizing: border-box;
    width: 90%;
    height: auto;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }
  .s_b_l_card_h_top{
    width: 90%;
    margin: 10px auto 3px;
  }
  .s_b_l_card_h_top_h3{
    font-size: 13px;
    letter-spacing: 1px;
  }
  .s_b_l_card_h_top_h2{
    width: 85%;
    margin: 3px auto 10px;
    font-size: 15px;
  }

  .s_b_l_card_top{
    box-sizing: border-box;
    width: 90%;
    height: 55px;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }
  .s_b_l_card_top_item{
    width: 33.3%;
  }
  .s_b_l_card_top_item span{
    font-size: 13px;
  }
  .s_b_l_card_top_item_line{
    width: 60%;
    margin: 4px auto 2px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .s_b_l_card_middle{
    width: 92%;
    height: 25px;
    margin: 0 auto;
    text-align: center;
  }
  .s_b_l_card_middle_item{
    width: 25%;
  }
  .s_b_l_card_middle_item span{
    font-size: 13px;
  }

  .s_b_l_card_form{
    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    height: 40px;
    margin: 3px auto 0;
  }
  .s_b_l_card_form form{
    width: 100%;
    height: 100%;
  }

  .s_b_l_ratio_select{
    width: 60px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
    margin-right: 10px;
  }

  .s_b_l_form_grow{
    flex-grow: 1;
  }

  .s_b_l_card_select_button{
    font-size: 12px;
    width: 60px;
    height: 25px;
    display: block;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .s_b_l_card_detail_button{
    font-size: 12px;
    width: 100px;
    height: 25px;
    display: block;
    background-color: #725a49;
    color: white;
    border: 1px solid black;
    border-radius: 3px;
  }

  .s_b_l_rec_1_div{
    width: 90%;
    max-width: 320px;
    margin: 30px auto 10px;
  }
  .s_b_l_back_button{
    box-sizing: border-box;
    width: 90px;
    height: 30px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .s_b_l_back_button::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }





/* select_blend_list_detail.php */

  .s_b_l_d_form{
    margin: 20px auto 20px;
  }

  .s_b_l_d_ratio_select{
    width: 70px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
    margin-right: 15px;
  }

  .s_b_l_d_select_button{
    box-sizing: border-box;
    font-size: 12px;
    width: 70px;
    height: 25px;
    display: block;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .s_b_l_d_back_button{
    box-sizing: border-box;
    font-size: 13px;
    width: 70px;
    height: 25px;
    display: block;
    background-color: #614d3f;
    color: white;
    border: 1px solid #614d3f;
    border-radius: 3px;
    margin-left: 80px;
    text-align: center;
    line-height: 1.7;
  }





/* base_blend_detail.php */

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





/* member_credit_card.php */

  .m_c_member_info_h2{
    width: 100%;
    font-size: 24px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #b7965f;
    text-shadow: 0 0 3px black;
  }

  .m_c_member_info_div{
    border-left: 2px solid #b7965f;
    border-right: 2px solid #b7965f;
    border-bottom: 2px solid #b7965f;
    padding-bottom: 16px;
  }

  .m_c_member_info_h3{
    font-size: 20px;
    padding: 12px;
  }

  .m_c_member_span{
    display: block;
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
  }

  .m_c_max_card_p{
    font-size: 16px;
    text-align: center;
    margin: 10px auto;
    letter-spacing: 1.3px;
    line-height: 1.2;
    color: black;
  }

  .m_c_delete_card_h2{
    width: 100%;
    font-size: 24px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #766a55;
    text-shadow: 0 0 3px black;
  }

  .m_c_delete_card_div{
    border-left: 2px solid #766a55;
    border-right: 2px solid #766a55;
    border-bottom: 2px solid #766a55;
  }

  .m_c_no_card{
    text-align: center;
    font-size: 16px;
    padding: 12px;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  .m_c_delete_border{
    width: 95%;
    border: 0.5px solid black;
    border-radius: 2px;
  }

  .m_c_delete_form{
    width: 100%;
    height: 80px;
  }

  .m_c_delete_last4_span{
    width: 100%;
    text-align: center;
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .m_c_delete_under_div{
    width: 60%;
  }

  .m_c_delete_date_span{
    font-size: 20px;
    text-decoration: underline;
  }

  .m_c_delete_submit{
    font-size: 15px;
    margin-top: 4px;
    padding: 0 5px 0 5px;
    background-color: #e1e1e1;
    border: 1px solid black;
    border-radius: 3px;
  }





/* member_credit_card_check.php */

  .m_c_check_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

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

  .m_c_check_p{
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0 auto 50px;
  }

  .m_c_check_form{
    width: 90%;
    margin: 0 auto;
  }

  .m_c_check_form_p{
    font-size: 20px;
    margin-bottom: 50px;
  }

  .m_c_check_form_last4{
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
  }




/* receipt_creation.php */

  .r_c_main{
    width: 350px;
    margin: 0 auto;
  }

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

  .r_c_p{
    font-size: 16px;
    text-align: center;
    margin: 20px auto;
  }

  .r_c_form{
    width: 260px;
    margin: 20px auto;
  }

  .r_c_form_p{
    font-size: 18px;
    margin-top: 15px;
  }

  .r_c_input{
    width: 80%;
    padding: 5px;
    margin-top: 8px;
    margin-left: 10px;
    font-size: 16px;
  }

  .r_c_span{
    font-size: 14px;
    margin: 5px;
    vertical-align: sub;
  }

  .r_c_receipt_button{
    display: block;
    font-size: 14px;
    border: none;
    width: 180px;
    height: 32px;
    background-color: #ff8c2a;
    box-shadow: 2px 2px 3px black;
    border-radius: 5px;
    margin: 20px auto 70px;
  }


  




/* footer */

  footer{
    width: 350px;
    height: 210px;
    text-align: center;    
    margin: 30px auto 5px;
  }

  .long_border_div{
    margin: 10px;
    border: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 80%;
    height: 0;
  }

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

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

  .footer_box {
    width: 90px;
    height: 40px;
    font-size: 15px;
    margin: 10px;
    border: solid 1px rgb(70, 40, 0);
    text-align: center;
    line-height: 38px;
  }

  .footer_box_div{
    width: 100%;
  }

  .footer_pri_sct{
    width: 85%;
    font-size: 12px;
    margin-bottom: 12px;
  }
  .footer_pri_sct a{
    text-decoration: underline;
  }
 
  .operation{
    font-size: 16px;
    position: relative;
    z-index: 0;
    padding: 5px 8px;
    text-decoration: underline;
  }
  /* .operation::before, .operation::after {
    content: '';
    width: 24px;
    height: 15px;
    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: 10px;
    margin: 8px;
  }





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



  /* クリックでハンバーガーをバツにする処理 */
    /*ボタン外側*/
  .openbtn8{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    z-index: 999;
    width: 70px;
    height:70px;
  }
  /*ボタン内側*/
  .openbtn8 .openbtn-area{
    transition: all .6s;/*アニメーションの設定*/
    width: 100%;
    height:100%;
  }
  .openbtn8 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 18px;
    height: 4px;
    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;
  }





/* simple_store.php */

  .s_s_body{
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    padding-top: 15px;
    box-sizing: border-box;
    position: relative;
  }

  .s_s_main{
    width: 350px;
    height: auto;
    margin: 0 auto;
  }

  .s_s_h1{
    font-size: 20px;
    text-align: center;
    margin: 0 auto 15px;
  }

  .s_s_form{
    width: 100%;
    height: auto;
    margin: 20px auto;
  }

  .s_s_item_div{
    box-sizing: border-box;
    width: 100%;
    height: 85px;
    margin: 20px auto;
    padding: 5px 0;
    background-color: #efe5cd;
    box-shadow: 2px 2px 8px black;
  }

  .s_s_h2{
    font-size: 18px;
    text-align: center;
  }

  .s_s_size_div{
    width: 320px;
    height: auto;
    margin: 0 auto;
  }

  .s_s_input_div{
    width: 100px;
    height: auto;
  }

  .s_s_q_chenge_div{
    width: 65px;
    margin-bottom: 5px;
  }

  .s_s_q_chenge_button{
    text-align: center;
    width: 26px;
    height: 18px;
    font-size: 10px;
    line-height: 1.8;
    background-color: #ffb740;
    border: 1px solid black;
    border-radius: 5px;
  }
  .aaaaaaaaa{
    height: 60px;
  }

  .s_s_quantity_p{
    display: block;
    text-align: center;
    line-height: 1.4;
    width: 65px;
    height: 20px;
    font-size: 14px;
    border: 1px solid black;
    border-radius: 5px;
    color: white;
    background-color: #614d3f;
  }

  .s_s_submit_button{
    font-size: 18px;
    width: 200px;
    height: 40px;
    margin: 15px auto 0;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
  }

  .s_s_long_line{
    margin: 10px auto;
    border: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .s_s_submit_button_div{
    width: 300px;
    height: auto;
    margin: 0 auto;
  }

  .s_s_submit_under{
    width: 85px;
    height: 30px;
    font-size: 14px;
    color: black;
    background-color: #e1e1e1;
    border: 1px solid black;
    border-radius: 3px;
    text-align: center;
  }

  .s_s_under_space{
    font-size: 12px;
    text-align: center;
    margin: 80px auto 0;
  }

  .s_s_beans_select_div{
    margin: 20px auto 0;
  }

  .s_s_beans_select_span{
    font-size: 20px;
    margin: 0 5px;
  }

  .s_s_beans_select_select{
    width: 70px;
    font-size: 16px;
    padding: 3px;
    text-align: center;
    background-color: #614d3f;
    color: white;
    border: 1px solid black;
    border-radius: 5px;
  }

  .s_s_submit_price_edit{
    margin-top: 50px;
    width: 85px;
    height: 30px;
    font-size: 14px;
    color: black;
    background-color: #e1e1e1;
    border: 1px solid black;
    border-radius: 3px;
    text-align: center;
  }





/* simple_store_check.php */

  .s_s_c_body{
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    padding-top: 15px;
    box-sizing: border-box;
  }

  .s_s_c_main{
    width: 350px;
    height: 100%;
    margin: 0 auto;
  }

  .s_s_c_top_div{
    width: 350px;
    height: auto;
  }

  .s_s_c_h1{
    font-size: 20px;
    text-align: center;
    margin: 0 auto 15px;
  }

  .s_s_c_p{
    font-size: 16px;
    text-align: center;
    margin: 0 auto 30px;
  }

  .s_s_c_item_div{
    width: 300px;
    height: auto;
  }

  .s_s_c_long_line{
    margin: 0 auto;
    border: 0.5px dotted rgb(70, 40, 0);
    width: 100%;
    height: 0;
  }

  .s_s_c_item_h2{
    font-size: 20px;
    text-align: left;
    margin: 10px auto 5px 10px;
  }

  .s_s_c_span_div{
    width: 300px;
  }

  .s_s_c_item_span{
    font-size: 18px;
    color: black;
    margin: 0px 10px 15px 15px;
  }

  .s_s_c_form{
    width: 350px;
    height: 230px;
  }

  .s_s_c_insta_label{
    font-size: 20px;
    vertical-align: middle;
    text-align: center;
  }

  .s_s_c_submit_y{
    display: block;
    font-size: 18px;
    width: 100px;
    height: 50px;
    margin: 30px 20px 30px;
    box-sizing: border-box;
    background-color: #ffff6d;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
  }

  .s_s_c_submit_r{
    display: block;
    font-size: 18px;
    width: 100px;
    height: 50px;
    margin: 30px 20px 30px;
    box-sizing: border-box;
    background-color: #ff7474;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
  }

  .s_s_c_back{
    display: block;
    width: 120px;
    height: 30px;
    font-size: 14px;
    color: black;
    background-color: #e1e1e1;
    border: 1px solid black;
    border-radius: 3px;
    text-align: center;
    margin: 0 auto;
  }





/* simple_store_history.php */

  .s_s_h_body{
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    padding-top: 15px;
    box-sizing: border-box;
    position: relative;
  }

  .s_s_h_main{
    width: 350px;
    height: auto;
    margin: 0 auto;
  }

  .s_s_h_h1{
    font-size: 20px;
    text-align: center;
    margin: 0 auto 15px;
  }

  .s_s_h_all_price{
    width: 100%;
    font-size: 18px;
    text-align: center;
    margin: 10px auto 0;
  }

  .s_s_h_all_div{
    width: 15%;
    height: 100%;
  }

  .s_s_h_all_item{
    font-size: 10px;
    letter-spacing: -0.5px;
  }

  .s_s_h_select_year{
    width: 75px;
    height: 28px;
    padding: 3px;
    font-size: 16px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
  }

  .s_s_h_select_month{
    width: 60px;
    height: 28px;
    padding: 3px;
    font-size: 16px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
  }

  .s_s_h_select_day{
    width: 60px;
    height: 28px;
    padding: 3px;
    font-size: 16px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
  }

  .s_s_h_select_span{
    font-size: 12px;
    margin: 0 3px;
    vertical-align: text-bottom;
  }

  .s_s_h_select_submit_div{
    width: 100%;
    margin: 10px auto 0;
  }

  .s_s_h_select_submit{
    width: 80px;
    height: 28px;
    text-align: center;
    border: 1px solid black;
    border-radius: 3px;
    background-color: #ffd27f;
    color: black;
    margin-left: 15px;
  }

  .s_s_h_his_div{
    width: 330px;
    height: 50px;
    margin: 20px auto;
    border: 1px solid black;
    border-radius: 3px;
  }

  .s_s_h_his_id_div{
    width: 50px;
    height: 100%;
    border-right: 1px dotted black;
  }

  .s_s_h_his_id_span{
    font-size: 8px;
  }

  .s_s_h_his_item_div{
    flex-grow: 1;
    height: 100%;
  }

  .s_s_h_his_item_in_div{
    width: 15%;
    height: 100%;
  }

  .s_s_h_his_item_p{
    font-size: 7px;
  }

  .s_s_h_his_submit_div{
    width: 55px;
    height: 100%;
    border-left: 1px dotted black;
  }

  .s_s_h_his_submit_form{
    width: 100%;
    height: 100%;
  }

  .s_s_h_his_submit_edit{
    font-size: 8px;
    width: 30px;
    height: 18px;
    border: 1px solid black;
    border-radius: 3px;
    background-color: #a0ffff;
  }

  .s_s_h_his_submit_delete{
    font-size: 8px;
    width: 30px;
    height: 18px;
    border: 1px solid black;
    border-radius: 3px;
    background-color: #ff7979;
    color: black;
  }





/* simple_store_provide.php */

  .s_s_p_no_value{
    font-size: 18px;
    text-align: center;
    margin: 30px;
  }

  .s_s_p_item_div{
    width: 100%;
    flex-wrap: wrap;
  }

  .s_s_p_item_span{
    font-size: 14px;
    width: 80px;
    margin: 3px 5px;
  }

  .s_s_p_submit_span{
    font-size: 9px;
  }

  .s_s_p_submit_done{
    font-size: 12px;
    width: 30px;
    height: 18px;
    border: 1px solid black;
    border-radius: 3px;
    background-color: #a0ffff;
    color: black;
  }





/* simple_store_delete.php */

  .s_s_de_p{
    font-size: 18px;
    text-align: center;
    margin: 20px auto;
  }

  .s_s_de_form{
    margin: 20px auto;
  }

  .s_s_de_submit{
    font-size: 16px;
    color: black;
    background-color: coral;
    border: 1px solid black;
    border-radius: 5px;
    margin: 0 20px;
    width: 100px;
    height: 32px;
  }


}





/* simple_store_delete.php */

  .s_s_e_body{
    width: 100vw;
    margin: 0 auto;
    padding-top: 15px;
    box-sizing: border-box;
    position: relative;
  }

  .s_s_e_main{
    width: 350px;
    height: auto;
    margin: 0 auto;
  }

  .s_s_e_h1{
    font-size: 20px;
    text-align: center;
    margin: 0 auto 15px;
  }

  .s_s_e_price_info{
    font-size: 16px;
    margin-bottom: 5px;
  }

  .s_s_e_price_input{
    font-size: 18px;
    width: 60px;
    height: 20px;
    text-align: center;
  }











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















/* 横型画面設定 */
@media screen and (min-width: 901px) {

  /* stripe関係 */
  
    .stripe-input{
      width: 80%;
      height: auto;
      margin: 10px auto;
      background-color: white;
      border: 1px solid black;
      padding: 10px;
    }
    .stripe-h3{
      font-size: 20px;
      text-align: center;
    }
    .stripe-p{
      width: 95%;
      font-size: 18px;
      margin: 20px 0 5px 10px;
    }
    .stripe-err{
      color: red;
      margin-left: 10px;
    }


  /* flex関係、relative関係 */
  
    .ls_flex_row_start_start{
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
    }
    
    .ls_flex_row_start_center{
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }
  
    .ls_flex_row_start_end{
      display: flex;
      justify-content: flex-start;
      align-items: flex-end;
    }
  
    .ls_flex_row_end_start{
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
    }
  
    .ls_flex_row_end_center{
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
    
    .ls_flex_row_between{
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }
    
    .ls_flex_row_between_center{
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .ls_flex_row_around{
      display: flex;
      justify-content: space-around;
    }
    
    .ls_flex_row_around_center{
      display: flex;
      justify-content: space-around;
      align-items: center;
    }
    
    .ls_flex_row_around_wrap{
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
    }
    
    .ls_flex_row_center{
      display: flex;
      justify-content: center;
    }
    
    .ls_flex_row_center_center{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .ls_flex_column{
      display: flex;
      flex-direction: column;
    }
    
    .ls_flex_column_between_center{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }
    
    .ls_flex_column_around_center{
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: center;
    }
    
    .ls_flex_column_around_left{
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: flex-start;
    }
    
    .ls_flex_column_center_center{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .ls_flex_column_around_start{
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: start;
    }

    .ls_flex_column_center_start{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: start;
    }
    
    .ls_flex_column_center_end{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
    }
    
    .ls_flex_column_end_end{
      display: flex;
      flex-direction: column;
      justify-content: end;
      align-items: flex-end;
    }
    
    .ls_flex_row_wrap{
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
    
    .ls_relative_object{
      position: relative;
    }
    
    .border_div{
      width: 20%;
      margin: 0 auto;
      border-bottom: solid 1px rgb(70, 40, 0);
    }
    
    .ls_border_div{
      width: 20vw;
      margin: 0 auto;
      border-bottom: solid 1px rgb(70, 40, 0);
    }
    
    .ls_border_long_div{
      width: 70vw;
      margin: 5vw auto 2vw;
      border-bottom: solid 1px rgb(70, 40, 0);
    }
    
    .ls_body_full_screen{
      min-height: 100vh;
    }
    
    .error_message{
      font-size: 16px;
      color: black;
      border: 2px solid red;
      background-color: rgba(255,0,0,0.2);
      padding: 15px;
      width: 40%;
      text-align: center;
      margin: 30px auto 0;
    }
    
    

  /* header */
  
    header{
      width: 100vw;
      height: 13vh;
      background-color: white;
      position: fixed;
      z-index: 990;
    }
  
    .header_base{
      width: 100vw;
      height: 13vh;
      box-sizing: border-box;
      background-color: white;
      position: fixed;
    }
  
    .header_ul{
      font-size: 4vh;
    }

    .header_ul > li:nth-of-type(1) {
      display: inline-block;
    }
    .header_ul > li:nth-of-type(2) {
      display: inline-block;
      vertical-align: top;
      height: 11vh;
    }
    .header_ul > li:nth-of-type(3) {
      height: 11vh;
      vertical-align: top;
      margin-top: 2vh;
      margin-right: 10px;
      float: right;
    }
    .header_ul > li:nth-of-type(4) {
      height: 4vh;
    }
  
    .header_logo{
      display: inline-block;
      margin-left: 2vh;
      width: 11vh;
      height: 11vh;
    }
  
    .icon_item_svg{
      width: 6vh;
      height: 6vh;
    }
  
    .cart_quantity{
      position: absolute;
      width: 2.5vh;
      height: 2.5vh;
      text-align: center;
      color: black;
      background-color: rgba(100, 255, 0, 0.8);
      border-radius: 50%;
      top: 0;
      right: 3vh;
      font-size: 1.9vh;
    }
    .cart_quantity span{
      font-size: 1.6vh;
    }
  
    .logo_p{
      font-size: 2.5vh;
      margin: 0 3vh;
      color: rgb(70, 40, 0);
    }
  
    .header_p{
      display: block;
      font-size: 2.5vh;
      line-height: 1.3;
      letter-spacing: 5px;
      margin: 2.1vh 1vh;
    }

    .header_a{
      display: none;
    }
  
    .header_under{
      width: 100vw;
      height: 13vh;
    }
  
  
    /* ハンバーガーメニュー */
  
    .global_nav_menu{
      width: 100%;
      display: flex;
      
    }
    .gnav_menu_item{
      font-size: 1.3vh;
      font-family: serif;
      position: relative;
      margin: 0 1vw;
      margin-top: -2.4vh;
    }
    .gnav_menu_item a{
      color: rgb(70, 40, 0);
    }
    .gnav_menu_item span{
      font-size: 1.3em;
      margin-right: 0.5vh;
      font-family: sans-serif;
    }




/* index.php */

  .i_main{
    width: 350px;
    margin: 0 auto;
  }

  /* トップページ上部画像スライド用 */

    .i_fadeIn{
      opacity: 0;
      transition: all 3s ease-in-out;
    }
    .i_fadeIn.active{
      opacity: 1;
    }
    .i_fadeIn_2{
      opacity: 0;
      transition: all 3s ease-in-out;
    }
    .i_fadeIn_2.active{
      opacity: 1;
    }

    .i_slider_box{
      width: 350px;
      position: relative;
    }
  
    #i_slider {
      position: relative;
      width: 280px;
      height: 260px;
      margin: 30px 5px 40px auto;
      z-index: 1;
      border: none;
    }

    .i_slide{
      position: absolute;
      z-index: 2;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: all 3s ease-in-out;
      opacity: 0;
    }

    .i_slide.active{
      opacity: 1;
    }

    .i_slider_text_div{
      position: absolute;
      z-index: 2;
      width: 240px;
      height: 70px;
      left: 0;
      bottom: 35px;
      color: black;
      text-shadow: 0 0 1px lightgray;
      background-color: burlywood;
      padding: 11px;
      box-sizing: border-box;
      text-align: center;
      line-height: 1.2;
      box-shadow: 5px 5px 7px rgba(0,0,0,0.8);
    }

    .i_slider_text_div_h1{
      font-size: 26px;
    }

    .i_slider_text_div_h2{
      font-size: 15px;
      letter-spacing: -0.5px;
    }


  /* トップページ上部画像スライド用終了 */

  .i_h3{
    color: rgb(20, 20, 20);
    font-size: 20px;
    text-align: center;
    letter-spacing: -0.8px;
    transform: scaleY(1.1);
    opacity: 0.8;
    margin-top: 70px;
    margin-bottom: 30px;
    font-weight: 600;
  }

  .i_about_div{
    width: 100%;
    height: auto;
    background-image: url(../image/i_about_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .i_about_h4{
    font-size: 22px;
    text-align: center;
    margin-bottom: 15px;
    color: black;
    white-space: nowrap;
  }

  .i_about_p{
    font-size: 16px;
    text-align: center;
    line-height: 2.2;
    color: black;
  }

  .i_product_a{
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 320px;
    height: 150px;
    margin: 40px auto;
    background-color: #efe5cd;
    box-shadow: 2px 2px 5px black;
  }

  .i_my_blend_img{
    position: absolute;
    width: 150px;
    height: 100px;
    top: 12px;
    left: 12px;
  }

  .i_product_my_blend_white_div{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    width: 180px;
    height: 100px;
    bottom: 12px;
    right: 12px;
  }

  .i_my_blend_h4{
    width: 180px;
    letter-spacing: -1px;
    text-align: center;
    color: black;
    font-size: 16px;
    margin-top: 15px;
  }

  .i_my_blend_p{
    font-size: 13px;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin: 10px auto auto 20px;
  }

  .i_brand_img{
    position: absolute;
    width: 150px;
    height: 100px;
    top: 12px;
    right: 12px;
  }

  .i_product_brand_white_div{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    width: 180px;
    height: 100px;
    bottom: 12px;
    left: 12px;
  }

  .i_brand_h4{
    width: 180px;
    letter-spacing: -1px;
    text-align: center;
    color: black;
    font-size: 16px;
    margin-top: 15px;
  }

  .i_brand_p{
    font-size: 13px;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin: 10px auto auto 28px;
  }
  
  
  
  
  
  /* sales */
  
  
  /* sale_select */
  
    .sale_select_main{
      font-size: 24px;
      width: 960px;
    }
    .sale_select_main li{
      width: 360px;
      height: 220px;
    }
    .sale_select_main a{
      display: block;
      width: 100%;
      height: 100%;
    }
    .sale_select_main span{
      font-size: 18px;
      display: inline-block;
      margin-bottom: 6px;
    }
  
    .sale_select_button_in{
      width: 100%;
      height: 100%;
    }
  
    .my_blend_button{
      background-image: url(../image/my_blend_bg.png);
      background-size: cover;
    }
    .my_blend_button p{
      margin: 24px;
      color: white;
      text-align: center;
    }
  
    .brand_select_button{
      background-image: url(../image/brand_select_bg.png);
      background-size: cover;
    }
  
    .brand_select_button p{
      margin: 24px;
      color: white;
      text-align: center;
    }
  
  
  
/* brand_select */

  .brand_select_main{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }

  .b_s_pop_zone{
    margin: 30px auto;
  }

  .b_s_pop_zone_btn{
    background-color: unset;
    border: unset;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    color: #db8c71;
    text-decoration: underline;
    letter-spacing: 1px;
    margin: 0 10px;
  }

  .b_s_info{
    width: 350px;
    height: 30px;
    line-height: 1.9;
    font-size: 16px;
    text-align: center;
    margin: 0px auto;
    background-color: #fff2ca;
    font-weight: bold;
    white-space: nowrap;
  }

  .b_s_info_span{
    color: rgb(220, 130, 0);
    font-weight: bold;
  }

  .stock_zero{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    color: white;
  }

  .stock_zero_none{
    display: none;
  }

  .card{
    width: 340px;
    margin: 40px 10px 0;
    background-color: #efe5cd;
    box-shadow: 2px 2px 5px #7d652c;
  }

  .card_top{
    width: 100%;
    height: 60px;
    white-space: nowrap;
    overflow: hidden;
  }

  .card_top_left{
    width: 235px;
    margin: 10px 0px 10px 10px;
  }
  .card_top_left_h2{
    font-size: 18px;
    letter-spacing: 0px;
    text-wrap: wrap;
  }
  .card_top_left_h3{
    font-size: 14px;
    letter-spacing: 0px;
    margin-bottom: 6px;
    text-wrap: wrap;
  }

  .b_s_img_box{
    width: 70px;
    height: 45px;
    margin: 10px 15px 10px 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .card_border{
    width: 95%;
    margin: 0 auto;
    border-top: 1px solid rgb(100, 100, 100);
  }

  .card_center{
    width: 100%;
    margin: 8px auto;
  }

  .card_center_left_chart{
    width: 40%;
    height: auto;
    margin-right: 10px;
  }

  .card_center_right{
    width: 40%;
    font-size: 15px;
    letter-spacing: 0px;
    text-align: center;
  }
  .card_center_right_roast_level{
    font-size: 0.9em;
    margin-top: 5px;
  }

  .card_border_short{
    width: 90px;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 5px 0 2px;
  }

  .card_center_price{
    display: inline-block;
    font-size: 18px;
    margin-right: 2px;
    letter-spacing: 0px;
  }

  .card_center_price_span{
    font-size: 10px;
  }

  .card_under{
    margin: 8px auto;
  }

  .card_under_left{
    flex-grow: 1;
    text-align: center;
  }

  .card_under_right{
    padding: 2px;
    width: 33%;
    letter-spacing: -1px;
  }

  .card_under_right form{
    text-align: center;
  }

  .brand_order_button{
    display: block;
    font-size: 13px;
    white-space: nowrap;
    margin-right: 12px;
    width: 100px;
    height: 35px;
    border-radius: 7px;
    padding: 6px;
    color: white;
    border: 1px solid black;
    background-color: #99825e;
  }

  .b_s_delivery_price{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    text-decoration: underline;
    letter-spacing: -0.5px;
    color: blue;
    margin: 20px;
    border: none;
    background-color: #f2ede1;
  }

  .b_s_card_under{
    width: 100%;
    height: 120px;
  }

  .b_s_card_under_left{
    width: 55%;
    height: 120px;
  }

  .b_s_card_under_left_comment{
    box-sizing: border-box;
    width: 80%;
    height: 85px;
    border-radius: 7px;
    border: 1px dotted #550000;
    background-color: #fffef1;
    padding: 6px;
  }

  .b_s_card_under_left_cmt_span{
    width: 100%;
    max-height: 100%;
    overflow: scroll;
    font-size: 10px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0px;
    line-height: 1.4;
  }

  .b_s_card_under_right{
    width: 45%;
    height: 100px;
    margin-right: 10px;
  }

  .b_s_card_under_right_top{
    width: 90%;
    height: 65px;
    margin-bottom: 8px;
  }

  .b_s_card_under_right_under{
    margin-top: 8px;
  }

  .b_s_card_chara{
    width: 100%;
  }

  .b_s_card_bean_img{
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }

  .b_s_card_chara_span{
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #64451f;
  }




/* brand_item 個別ページ */

  .b_i_main{
    width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

  .brand_h{
    margin: 20px auto;
    width: 100%;
    position: relative;
    z-index: -1;
  }
  .brand_h img{
    width: 100%;
    height: auto;
  }
  .brand_h h1{
    position: absolute;
    top: 20px;
    left: 18px;
    letter-spacing: -1px;
    font-size: 18px;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 5px yellow;
  }
  .brand_h h2{
    position: absolute;
    top: 10px;
    right: 16px;
    letter-spacing: -1px;
    font-size: 12px;
    text-shadow: 0 0 1px white;
  }

  .brand_image{
    position: relative;
    z-index: -1;
    width: 260px;
    height: 120px;
    margin: 0 auto 25px;
  }
  .brand_image .beans_image{
    position: absolute;
    width: 140px;
    height: auto;
    top: 0;
    left: 0;
    box-shadow: 2px 2px 5px black;
  }
  .brand_image .flag_image{
    position: absolute;
    width: 140px;
    height: auto;
    bottom: 0;
    right: 0;
    box-shadow: 2px 2px 5px black;
  }

  .b_i_taste{
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
  }

  .b_i_taste_overall{
    width: 47%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
  }

  .b_i_taste_conflict{
    width: 100%;
    height: 42px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .b_i_taste_genre{
    width: 50%;
    height: 100%;
    background-color: #eae0c8;
  }

  .b_i_taste_param{
    box-sizing: border-box;
    width: 50%;
    height: 100%;
    padding: 0 8px;
  }
  .b_i_taste_param .beans_param{
    width: 20px;
    height: auto;
  }

  .b_i_taste_genre_span{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .brand_item_other{
    width: 100%;
    margin: 0 auto 20px;
  }
  .brand_item_other > div{
    width: 50%;
    font-size: 15px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .brand_item_other_border{
    width: 40%;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 5px auto 3px;
  }

  .brand_item_comment{
    font-size: 15px;
    letter-spacing: 0.8px;
    line-height: 1.3;
    margin: 0 auto 25px;
  }

  .b_i_order_card{
    width: 350px;
    height: auto;
    margin: 0 auto 25px;
    box-shadow: 2px 2px 5px 1px #7d652c;
    border: 1px solid rgb(100, 100, 100);
    background-color: #f2ede1;
  }

  .b_i_order_card_h{
    font-size: 22px;
    width: 100%;
    height: 40px;
  }

  .b_i_order_card_contents{
    width: 100%;
    height: 210px;
  }

  .b_i_order_card_left{
    width: 75%;
    height: auto;
  }

  .b_i_order_card_left_item{
    box-sizing: border-box;
    width: 100%;
    height: 70px;
    font-size: 14px;
    padding: 10px 8px;
    border-top: 1px solid rgb(100, 100, 100);
    border-right: 1px solid rgb(100, 100, 100);
  }

  .b_i_order_card_left_item_p{
    font-size: 15px;
    margin-bottom: 8px;
  }

  .b_i_order_card_right{
    width: 25%;
    height: 210px;
    border-top: 1px solid rgb(100, 100, 100);
  }

  .b_i_order_card_left_item select{
    width: 95%;
    font-size: 13px;
    margin-top: 8px;
    padding: 2px;
    background-color: rgb(235, 235, 235);
  }

  .order_quantity{
    letter-spacing: 1px;
  }

  .b_i_order_card_right button{
    text-align: center;
    background-color: #ffb762;
    width: 60px;
    height: 60px;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    color: black;
    border: 1px solid rgb(100, 100, 100);
    padding: 0;
  }

  #default_price{
    display: none;
  }

  .roast_down_p{
    width: 90%;
    margin: 0px auto 30px;
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-decoration: underline;
  }

  .b_i_price_table{
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 16px;
    white-space: normal;
    box-shadow: 2px 2px 5px 1px #7d652c;
  }

  .b_i_price_table_tr_top{
    background-color: #eae0c8;
  }

  .b_i_price_table td{
    width: 20%;
    border: 1px solid black;
    padding: 8px 0;
  }

  .b_i_top_img_div{
    width: 350px;
    height: 120px;
    font-size: 50px;
    text-align: center;
    line-height: 2;
    background-color: #eae0c8;
    margin: 0 auto;
  }

  .b_i_h_div{
    box-sizing: border-box;
    width: 350px;
    height: 75px;
    background-color: #fff0cc;
    margin-bottom: 40px;
    padding: 12px 15px;
    margin: 0 auto 30px;
  }

  .b_i_h_div_right{
    width: 70px;
    height: 45px;
  }

  .b_i_h_div_left{
    flex-grow: 1;
    height: 100%;
  }

  .b_i_h2{
    font-size: 14px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: bold;
  }

  .b_i_h1{
    font-size: 24px;
    font-family: sans-serif;
    font-weight: bold;
  }

  .b_i_middel_back{
    box-sizing: border-box;
    width: 185px;
    height: 34px;
    font-size: 15px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
    margin: 40px 0 10px 10px;
  }





/* detail_files内の各説明ページ */

  .c_b_i_dot_div{
    position: relative;
    border: 2px dashed #881d00;
    border-radius: 10px;
    padding: 15px;
    margin: 20px auto 30px 0;
    max-width: 100%;
  }

  .c_b_i_h3_dot{
    position: absolute;
    top: -10px;
    left: 10px;
    box-sizing: content-box;
    font-size: 18px;
    font-weight: bold;
    background-color: white;
    padding: 0 8px;
    font-family: sans-serif;
  }

  .c_b_i_p_dot{
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    font-family: sans-serif;
  }

  .c_b_i_p_dot_brown{
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 15px auto 5px 0;
    color: #7a1a00;
    font-family: sans-serif;
  }

  .c_b_i_h3{
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    margin: 20px auto 0 0;
    line-height: 1.3;
    white-space: wrap;
    font-family: sans-serif;
  }
  .c_b_i_h3::before {
    content: "";
    display: inline-block;
    margin-bottom: 1px;
    border: 6px solid transparent;
    border-left: 12px solid brown;
  }

  .c_b_i_p{
    font-size: 14px;
    margin: 10px auto 0 20px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-family: sans-serif;
  }

  .c_b_i_span{
    display: block;
    font-size: 14px;
    margin: 10px auto 0 35px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-family: sans-serif;
  }

  .c_b_i_margin_div{
    margin-bottom: 20px;
  }
  
  
  
  
  
  
  /* cart_list カート一覧 */

    .cart_list_main{
      width: 50%;
      max-width: 500px;
      margin: 0 auto;
    }
  
    .cart_list_h1{
      font-size: 30px;
      text-align: center;
      margin: 30px auto 20px;
    }
  
    .cart_list_p{
      font-size: 16px;
      text-align: center;
      line-height: 1.3;
      margin: 15px auto;
      letter-spacing: 0.5px;
    }
  
    .cart_list_table{
      width: 100%;
      border-collapse: collapse;
      margin: 0 auto;
    }
    .cart_list_table td{
      border: 2px solid rgb(100, 100, 100);
    }
  
    .cart_list_table_top{
      background-color: #ded4bd;
      padding: 8px;
    }
    .cart_list_table_top h2{
      font-size: 16px;
    }
    .cart_all_delete{
      width: 150px;
      height: 30px;
      font-size: 14px;
      border: 1px solid black;
      border-radius: 5px;
      background-color: darkred;
      color: white;
    }
  
    .cart_item{
      width: 100%;
      height: auto;
    }
  
    .cart_border_long{
      width: 95%;
      height: auto;
      border-top: 1px solid rgb(100, 100, 100);
      margin: 0 auto;
    }
  
    .cart_item_top{
      width: 100%;
      height: auto;
      padding: 10px 15px;
      box-sizing: border-box;
    }
    .cart_item_top_left{
      width: 25%;
      height: auto;
    }
    .cart_item_top_right{
      width: 70%;
      height: auto;
      padding: 5px;
      text-align: center;
    }
    .cart_item_top_right h3{
      font-size: 16px;
      margin-bottom: 5px;
      letter-spacing: -1px;
    }
    .cart_item_top_right h2{
      font-size: 18px;
      letter-spacing: 0;
    }
  
    .cart_item_middle{
      width: 100%;
      height: auto;
      padding: 10px 0;
      box-sizing: border-box;
      font-size: 15px;
    }
    .cart_item_middle_left{
      width: 33%;
      height: auto;
    }
    .cart_item_middle_center{
      width: 34%;
      height: auto;
      white-space: nowrap;
    }
    .cart_item_middle_right{
      width: 33%;
      height: auto;
    }
    .cart_border_short{
      width: 30%;
      height: auto;
      border-top: 1px solid rgb(100, 100, 100);
      margin: 10px auto 6px;
    }
  
    .cart_item_under{
      width: 100%;
      height: auto;
      padding: 10px 40px;
      box-sizing: border-box;
    }
  
    .cart_item_delete{
      font-size: 15px;
      width: 70px;
      height: 30px;
      color: white;
      background-color: darkred;
      border: 1px solid black;
      border-radius: 3px;
    }
  
    .cart_item_under_right p{
      font-size: 15px;
    }
    .cart_item_under_right span{
      font-size: 30px;
      margin-left: 5px;
    }
  
    .all_price_td{
      padding: 10px 30px;
      text-align: right;
      font-size: 20px;
      background-color: #ded4bd;
    }
    .all_price_td span{
      margin-left: 5px;
      font-size: 40px;
      letter-spacing: 1px;
    }
  
    .purchase_button_td{
      padding: 20px 60px;
    }
    .purchase_button{
      width: 100%;
      height: 60px;
      font-size: 30px;
      background-color: #f7780d;
      font-family: 'Shippori Mincho', serif;
      border-radius: 5px;
      color: black;
      border: 1px solid rgb(100, 100, 100);
    }
    .arrow_right::after {
      content: "";
      display: inline-block;
      margin-left: 5px;
      border: 12px solid transparent;
      border-left: 15px solid black;
    }
  
    .select_back_button{
      width: 200px;
      height: 40px;
      font-size: 18px;
      background-color: #614d3f;
      font-family: serif;
      border-radius: 5px;
      color: white;
      margin: 30px 0;
    }
    .arrow_left::before {
      content: "";
      display: inline-block;
      margin-right: 3px;
      border: 7px solid transparent;
      border-right: 8px solid white;
    }
  
  
  
  
  
  /* payment＿delivery */
  
    .delivery_main{
      width: 40%;
      margin: 0 auto;
    }
  
    .delivery_h1{
      text-align: center;
      margin: 30px auto 20px;
      font-size: 30px;
    }
  
    .delivery_form_explanation{
      text-align: center;
      margin: 20px auto 20px;
      font-size: 18px;
    }
  
    .delivery_h2_top{
      width: 100%;
      font-size: 24px;
      padding: 12px 20px;
      margin-top: 30px;
      box-sizing: border-box;
      color: white;
      background-color: #b7965f;
      text-shadow: 0 0 3px black;
    }
  
    .delivery_border_top{
      border-left: 2px solid #b7965f;
      border-right: 2px solid #b7965f;
      border-bottom: 2px solid #b7965f;
      padding-bottom: 1vw;
    }
    .delivery_border_top h3{
      font-size: 24px;
      padding: 20px;
    }
    .delivery_border_top input[type=text],
    .delivery_border_top input[type=email]{
      font-size: 16px;
      padding: 8px;
      margin: 0 0 20px 41px;
      width: 75%;
    }
    .delivery_border_top span{
      font-size: 0.9rem;
    }

    .search_button{
      font-size: 14px;
      color: black;
      width: 200px;
      height: 30px;
      border: 1px solid black;
      border-radius: 3px;
      background-color: #e5e5e5;
    }
  
    .delivery_h2_middle{
      width: 100%;
      font-size: 24px;
      padding: 12px 20px;
      margin-top: 30px;
      box-sizing: border-box;
      color: white;
      background-color: #e59003;
      text-shadow: 0 0 3px black;
    }
  
    .delivery_border_middle{
      border-left: 2px solid #e59003;
      border-right: 2px solid #e59003;
      border-bottom: 2px solid #e59003;
      padding: 1vw;
    }
  
    .delivery_h2_under{
      width: 100%;
      font-size: 24px;
      padding: 12px 20px;
      margin-top: 30px;
      box-sizing: border-box;
      color: white;
      background-color: #766a55;
      text-shadow: 0 0 3px black;
    }
  
    .delivery_border_under{
      border-left: 2px solid #766a55;
      border-right: 2px solid #766a55;
      border-bottom: 2px solid #766a55;
    }
    .delivery_border_under p{
      font-size: 20px;
      padding: 10px;
      letter-spacing: 1px;
    }
    .delivery_border_under p span{
      font-size: 40px;
      margin-left: 5px;
    }
  
    .payment_set_button{
      width: 70%;
      height: 50px;
      margin: 20px auto;
      font-size: 25px;
      background-color: #f7780d;
      font-family: 'Shippori Mincho', serif;
      border-radius: 5px;
      color: black;
      border: 1px solid rgb(100, 100, 100);
    }
    .delivery_form .arrow_right::after {
      content: "";
      display: inline-block;
      margin-left: 5px;
      border: 10px solid transparent;
      border-left: 15px solid black;
    }
  
    .delivery_border_under_item{
      border-bottom: 1px solid #766a55;
    }
  
    .cart_list_button , .brand_pay_button{
      margin: 20px 0 0;
      width: 180px;
      height: 40px;
      font-size: 18px;
      background-color: #614d3f;
      font-family: serif;
      border-radius: 5px;
      color: white;
    }
    .delivery_form .arrow_left::before {
      content: "";
      display: inline-block;
      margin-right: 3px;
      border: 7px solid transparent;
      border-right: 8px solid white;
    }
  
    .delivery_all_price{
      background-color: #ddd8cc;
    }
  
  
  
  
  /* payment_check */
  
    .paycheck_main{
      width: 40%;
      max-width: 500px;
      margin: 0 auto;
    }
  
    .paycheck_h1{
      text-align: center;
      margin: 30px auto;
      font-size: 30px;
    }
  
    .paycheck_h2_top{
      width: 100%;
      font-size: 24px;
      padding: 12px 20px;
      margin-top: 30px;
      box-sizing: border-box;
      color: white;
      background-color: #b7965f;
      text-shadow: 0 0 3px black;
    }
  
    .paycheck_border_top{
      border-left: 2px solid #b7965f;
      border-right: 2px solid #b7965f;
      border-bottom: 2px solid #b7965f;
      padding-bottom: 2vw;
    }
    .paycheck_border_top h3{
      font-size: 24px;
      padding: 30px 0 15px 18px;
    }
    .paycheck_border_top p{
      font-size: 24px;
      margin-left: 42px;
      margin-bottom: 5px;
    }
  
    .paycheck_h2_middle{
      width: 100%;
      font-size: 24px;
      padding: 12px 20px;
      margin-top: 30px;
      box-sizing: border-box;
      color: white;
      background-color: #e59003;
      text-shadow: 0 0 3px black;
    }
  
    .paycheck_border_middle{
      border-left: 2px solid #e59003;
      border-right: 2px solid #e59003;
      border-bottom: 2px solid #e59003;
      padding: 2vw;
    }
    .paycheck_border_middle p{
      font-size: 20px;
      margin-top: 10px;
    }
  
    .paycheck_h2_under{
      width: 100%;
      font-size: 24px;
      padding: 12px 20px;
      margin-top: 30px;
      box-sizing: border-box;
      color: white;
      background-color: #766a55;
      text-shadow: 0 0 3px black;
    }
  
    .paycheck_border_under{
      border-left: 2px solid #766a55;
      border-right: 2px solid #766a55;
      border-bottom: 2px solid #766a55;
    }
    .paycheck_border_under p{
      font-size: 20px;
      padding: 10px;
      letter-spacing: 1px;
    }
    .paycheck_border_under p span{
      font-size: 40px;
      margin-left: 5px;
    }
  
    .payment_done_button{
      width: 70%;
      height: 50px;
      margin: 20px auto;
      font-size: 25px;
      background-color: #f7780d;
      font-family: 'Shippori Mincho', serif;
      border-radius: 5px;
      color: black;
      border: 1px solid black;
    }
    .paycheck_form .arrow_right::after {
      content: "";
      display: inline-block;
      margin-left: 5px;
      border: 10px solid transparent;
      border-left: 15px solid black;
    }
  
    .paycheck_border_under_item{
      border-bottom: 1px solid #766a55;
    }
  
    .page_back_button{
      margin: 20px 0 0;
      width: 180px;
      height: 40px;
      font-size: 18px;
      background-color: #614d3f;
      font-family: serif;
      border-radius: 5px;
      color: white;
      border: 1px solid black;
    }
    .paycheck_form .arrow_left::before {
      content: "";
      display: inline-block;
      margin-right: 3px;
      border: 7px solid transparent;
      border-right: 8px solid white;
    }
  
    .paycheck_all_price{
      background-color: #ddd8cc;
    }

    .paycheck_border_middle .checkout_payment_p{
      font-size: 18px;
      color: black;
      line-height: 1.3;
      letter-spacing: 0.5px;
      text-decoration: underline;
      margin-bottom: 18px;
    }
  
  
  
  /* payment_done */
  
    .paydone_main{
      margin: 0 auto;
      width: 50%;
      text-align: center;
      line-height: 1.3;
    }
    .paydone_main h1{
      font-size: 35px;
      margin: 50px auto 30px;
    }
    .paydone_main p{
      font-size: 20px;
      letter-spacing: 1px;
      margin: 0 auto 40px;
    }
    .paydone_main h2{
      font-size: 35px;
      margin: 50px auto 10px;
    }
    .paydone_main h3{
      font-size: 28px;
      margin: 0 auto 30px;
    }
    .paydone_main a{
      display: block;
      margin: 40px 0 30px;
      width: 120px;
      height: 22px;
      font-size: 14px;
      background-color: #614d3f;
      font-family: serif;
      border-radius: 5px;
      color: white;
      padding: 8px;
    }
    .paydone_main a .arrow_left{
      font-size: 14px;
      vertical-align: middle;
    }
    .paydone_main a .arrow_left::before {
      content: "";
      display: inline-block;
      margin-right: 3px;
      border: 7px solid transparent;
      border-right: 8px solid white;
    }

    .paydone_main .blend_back_a{
      display: block;
      margin: 40px 0 30px;
      width: 180px;
      height: 22px;
      font-size: 14px;
      background-color: #614d3f;
      font-family: serif;
      border-radius: 5px;
      color: white;
      padding: 8px;
    }
  
  
  
  
  
  
  
  /* others */
  
  
  /* PrivacyPolicy */
  
    .privacy_main{
      width: 70%;
      margin: 50px auto;
    }
    .space_height{
      height: 70px;
    }
    .privacy_main h1{
      margin: 0 auto 8px;
      text-align: center;
      font-size: 40px;
    }
    .privacy_p{
      text-align: center;
      margin: 8px auto 60px;
    }
  
    .privacy_main h2{
      margin: 60px auto 20px;
      text-align: center;
      font-size: 30px;
    }
  
    .privacy_main p,
    .privacy_main li{
      font-family: serif;
      font-size: 20px;
      letter-spacing: 1px;
    }
  
  
  
  /* 特定商取引法 */
  
    .sct_main{
      width: 90%;
      max-width: 1000px;
      margin: 0 auto;
    }
  
    .sct_main h1{
      margin: 50px auto;
      text-align: center;
      font-size: 4vw;
    }
  
    .sct_table{
      width: 90%;
      margin: 0 auto 7vw;
      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: 1.7vw;
      padding: 3vw 0;
      letter-spacing: 1px;
      border-bottom: solid 1px #606060;
      line-height: 1.2;
      vertical-align: middle;
    }
    .sct_table span{
      display: block;
      margin-top: 1vw;
      font-size: 0.8em;
      letter-spacing: 0.6px;
    }
  
  
  
  /* コンタクトフォーム */
  
    .contact_main{
      width: 50vw;
      margin: 0 auto;
    }
    .contact_main h1{
      font-size: 36px;
      text-align: center;
      margin: 35px;
    }
    .contact_main h2{
      font-size: 24px;
      margin: 30px 0 10px;
    }
  
    .contact_main .contact_input{
      width: 100%;
      height: auto;
      font-size: 20px;
    }
  
    .contact_p{
      margin-top: 30px;
      font-size: 18px;
      text-align: center;
      line-height: 1.3;
      white-space: nowrap;
    }
  
    .contact_textarea{
      font-size: 20px;
      width: 100%;
    }

    .contact_submit{
      margin: 0 15px 30px auto;
      width: 120px;
      height: 40px;
      font-size: 16px;
      color: black;
      text-shadow: 0 0 3px white;
      display: block;
      border: 2px solid black;
      text-align: center;
      background-color: #dcd1b3;
    }
  
    .contact_button{
      border: 1px solid black;
      text-align: center;
      width: 30%;
      height: 40px;
      margin: 30px 0 20px;
      background-color: #dcd1b3;
    }
    .contact_button a{
      display: block;
      width: 100%;
      height: 100%;
      font-size: 18px;
      line-height: 2;
      color: black;
      text-shadow: 0 0 5px white;
    }
  
  
  
  
  
  /* 管理者ログイン・登録ページ */

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





/* administrator_register_approve.php */

  .a_r_a_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

  .a_r_a_h1{
    font-size: 28px;
    text-align: center;
    margin: 40px auto;
  }

  .a_r_a_p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    margin: 20px auto;
  }

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

  .a_r_a_input{
    width: 200px;
    font-size: 16px;
    padding: 5px;
    background-color: white;
    border: 1px solid black;
    border-radius: 2px;
    margin-bottom: 50px;
  }

  .a_r_a_submit{    display: block;
    margin: 4px 0 16px;
    width: 160px;
    height: 28px;
    background-color: #dcd1b3;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }






/* administrator_top.php */

  .admin_top_main{
    width: 300px;
  }
  .admin_top_main ul{
    width: 100%;
    height: 100%;
  }

  .admin_top_button{
    box-sizing: border-box;
    border: 1px solid black;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
    background-color: #dcd1b3;
    line-height: 2.4;
  }
  .admin_top_button a{
    display: block;
    font-size: 20px;
    color: black;
    text-shadow: 0 0 5px white;
  }

  .admin_register_button{
    border: 1px solid black;
    text-align: center;
    width: 60%;
    height: 35px;
    margin: 20px auto;
    background-color: #dcd1b3;
  }
  .admin_register_button a{
    display: block;
    font-size: 16px;
    line-height: 2;
    width: 100%;
    height: 100%;
    color: black;
    text-shadow: 0 0 5px white;
  }

/* 管理者一覧 */

  .admin_list_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

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

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

  .admin_list_tr{
    width: 100%;
  }
  .admin_list_tr form{
    width: 100%;
  }
  .admin_list_tr td{
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid black;
  }

  .admin_list_login_id{
    font-size: 14px;
    letter-spacing: 1px;
    width: 70%;
    vertical-align: middle;
  }
  .admin_list_login_id span{
    width: 100%;
    overflow: scroll;
  }

  .admin_list_submit{
    width: 15%;
    vertical-align: middle;
  }
  .admin_list_button{
    font-size: 12px;
    padding: 2px 10px;
    border: 0.5px solid black;
    border-radius: 3px;
    background-color: #e5e5e5;
    color: black;
  }

  .admin_list_ul .admin_register_button{
    width: 130px;
    height: 33px;
    margin: 30px auto;
    border: 2px solid black;
    text-align: center;
    background-color: #dcd1b3;
  }
  .admin_list_ul .admin_register_button a{
    font-size: 16px;
    display: block;
    color: black;
    text-shadow: 0 0 5px white;
  }



/* 管理者delete */

  .admin_delete_main{
    width: 40vw;
  }
  .admin_delete_main h1{
    font-size: 4vw;
    text-align: center;
    margin: 5vw;
  }
  .admin_delete_main h2{
    font-size: 3vw;
    margin-bottom: 3vw;
  }
  .admin_delete_main p{
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 6vw;
    white-space: nowrap;
  }
  .admin_delete_main .input_pass{
    display: block;
    font-size: 3vw;
    width: 25vw;
    margin:0 auto 6vw;
  }
  .admin_delete_main input[type=submit]{
    display: block;
    font-size: 1.5vw;
    width: 40vw;
    margin:5vw auto;
  }



/* administrator_discount.php */

  .a_d_main{
    width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

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

  .a_d_no_p{
    font-size: 16px;
    margin: 20px auto;
    text-align: center;
  }

  .a_d_name_form{
    width: 90%;
    margin: 0 auto 20px;
  }

  .a_d_name_input{
    font-size: 16px;
    padding: 2px;
    width: 120px;
    margin-right: 10px;
  }

  .a_d_name_submit_aimai{
    width: 110px;
    height: 26px;
    font-size: 14px;
    letter-spacing: -1px;
    margin-right: 10px;
    color: black;
    background-color: #e1e1e1;
    border: 1px solid black;
    border-radius: 3px;
    text-align: center;
  }

  .a_d_name_submit_all{
    width: 60px;
    height: 26px;
    font-size: 14px;
    letter-spacing: -1px;
    color: black;
    background-color: #e1e1e1;
    border: 1px solid black;
    border-radius: 3px;
    text-align: center;
  }

  .a_d_member_card{
    box-sizing: border-box;
    width: 350px;
    margin: 20px auto;
    border: 1px solid black;
    padding: 5px;
  }

  .a_d_member_card_top{
    height: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid black;
  }

  .a_d_member_card_name{
    font-size: 16px;
    width: 50%;
    text-align: left;
    padding-left: 8px;
  }

  .a_d_member_card_tel{
    font-size: 16px;
    width: 50%;
    text-align: right;
    padding-right: 8px;
  }

  .a_d_member_card_bottom{
    height: 40px;
    padding-top: 5px;
  }

  .a_d_member_card_email{
    overflow-wrap: anywhere;
    flex-grow: 1;
    box-sizing: border-box;
    font-size: 15px;
    text-align: left;
    padding-left: 8px;
    padding-right: 3px;
    width: 218px;
  }

  .a_d_member_card_coupon{
    width: 120px;
  }

  .a_d_member_card_form{
    width: 50px;
    height: 35px;
  }

  .a_d_member_card_button{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-size: 9px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: black;
    background-color: #ffb740;
    border: 1px solid black;
    border-radius: 5px;
  }





/* administrator_discount_member.php */

  .a_d_m_bg_color{
    background-color: #ffe2b1;
  }

  .a_d_m_issue_form{
    box-sizing: border-box;
    width: 350px;
    height: 150px;
    margin: 20px auto;
    border: 1px solid black;
  }

  .a_d_m_issue_form_item{
    width: 100%;
    height: auto;
    margin: 12px auto 0;
  }

  .a_d_m_issue_form_p{
    font-size: 16px;
  }

  .a_d_m_issue_select{
    width: 90px;
    font-size: 18px;
    padding: 5px;
    text-align: center;
    letter-spacing: 1.2px;
  }

  .a_d_m_issue_submit{
    display: block;
    width: 200px;
    height: auto;
    font-size: 16px;
    margin: 20px auto 0;
    padding: 3px;
    color: black;
    background-color: #ffb740;
    border: 1px solid black;
    border-radius: 5px;
  }

  .a_d_m_select_year{
    width: 75px;
    height: 28px;
    padding: 3px;
    font-size: 16px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
  }

  .a_d_m_select_month{
    width: 60px;
    height: 28px;
    padding: 3px;
    font-size: 16px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
  }

  .a_d_m_select_day{
    width: 60px;
    height: 28px;
    padding: 3px;
    font-size: 16px;
    text-align: center;
    background-color: white;
    border: 1px solid black;
  }

  .a_d_m_select_span{
    font-size: 12px;
    margin: 0 3px;
    vertical-align: text-bottom;
  }

  .a_d_m_info_p{
    font-size: 18px;
    margin: 30px auto 15px;
    text-align: center;
  }

  .a_d_m_item{
    box-sizing: border-box;
    width: 90%;
    margin: 20px auto;
    border: 1px solid black;
  }

  .a_d_m_item_top{
    width: 100%;
    height: 30px;
    border-bottom: 1px dotted black;
  }

  .a_d_m_item_middle{
    width: 100%;
    height: 30px;
    border-bottom: 1px dotted black;
  }

  .a_d_m_item_bottom{
    width: 100%;
    height: 35px;
  }

  .a_d_m_item_span{
    font-size: 12px;
    margin: 0 5px 0 10px;
  }

  .a_d_m_item_span_big{
    margin-left: 5px;
    font-size: 1.3em;
  }

  .a_d_m_item_form{
    width: 60px;
    height: 70%;
    margin-right: 15px;
  }

  .a_d_m_item_submit{
    width: 100%;
    height: 100%;
    padding: 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 4px;
    line-height: 1;
    background-color: #ff9b76;
    border: 1px solid black;
    border-radius: 3px;
    color: black;
  }

  .a_d_m_no_use_div{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
  }

  .a_d_m_no_use_span{
    font-size: 18px;
    color: white;
    margin: 5px;
  }

  





/* 会員ログイン */

  .m_l_main{
    width: 350px;
    text-align: center;
  }

  .m_l_main h1{
    font-size: 24px;
    margin: 30px auto 16px;
  }

  .m_l_main h2{
    font-size: 20px;
    margin: 16px 0 4px;
  }

  .m_l_email{
    font-size: 16px;
    padding: 2px;
    width: 240px;
    display: block;
    margin: 4px 0 16px;
  }

  .m_l_pass{
    font-size: 16px;
    padding: 2px;
    width: 240px;
    display: block;
    margin: 4px 0 16px;
  }

  .m_l_main .m_l_login{
    font-size: 18px;
    display: block;
    margin-bottom: 120px;
    width: 200px;
    height: 36px;
    background-color: #dcd1b3;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .m_l_main .m_l_login_under{
    font-size: 15px;
    display: block;
    margin-bottom: 15px;
    width: 160px;
    height: 30px;
    background-color: #e6ddc7;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }





/* 会員登録ページ */

  .member_register_body .error_message{
    margin: 20px auto;
  }

  .member_register_main{
    width: 40%;
    max-width: 500px;
    margin: 0 auto;
  }
  .member_register_main h1{
    font-size: 30px;
    margin: 30px 0 15px;
    text-align: center;
  }
  .member_register_main h2{
    font-size: 20px;
    margin: 30px 0 10px;
  }
  .member_register_main input{
    display: inline-block;
    font-size: 16px;
    margin-left: 40px;
  }

  .m_r_pass_div{
    width: 285px;
  }

  .m_r_pass{
    padding: 2px;
    width: 240px;
    margin-top: 3px;
  }

  .m_r_postal_button{
    font-size: 12px;
    width: 35%;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin-left: 5px;
    color: black;
    background-color: orange;
    border: 1px solid black;
    border-radius: 3px;
  }
  .member_register_main span{
    font-size: 15px;
    vertical-align: text-bottom;
    margin: 0 2px;
  }

  .m_register_button_div{
    width: 100%;
    margin-top: 20px;
  }

  .member_register_main .m_register_button{
    font-size: 15px;
    width: 30%;
    padding: 5px;
    margin: 20px auto 50px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .member_form_explanation{
    font-size: 15px;
    text-align: center;
    color: red;
    margin-bottom: 40px;
  }

  .member_register_main .info_span{
    font-size: 0.7em;
    vertical-align: middle;
  }

  .member_name{
    width: 80%;
  }

  .member_email{
    width: 80%;
  }

  .member_pass{
    width: 80%;
  }

  .member_tel{
    width: 50%;
  }

  .member_postal{
    width: 45%;
  }

  .member_address{
    width: 80%;
  }

  .birth_select{
    margin-left: 40px;
  }

  .birth_select select{
    font-size: 16px;
    width: 16%;
    padding: 2px 0;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }
  .birth_select span{
    margin: 0 5px;
  }

  .member_register_main .required{
    font-size: 12px;
    color: red;
    vertical-align: top;
  }

  .register_confirm_p{
    display: inline-block;
    font-size: 3vw;
    margin: 3vw 1vw 1vw 7vw;
  }

  .resetting_p{
    font-size: 18px;
    line-height: 1.3;
    margin: 20px auto;
    text-align: center;
  }

  .admin_login_main .resetting_input{
    width: 30%;
  }




/* コーヒー商品登録ページ */

  .coffee_register_body .error_message{
    margin: 20px 0 0;
  }

  .coffee_register_main{
    width: 80%;
    max-width: 450px;
  }
  .coffee_register_main h1{
    font-size: 28px;
    margin: 30px 0 15px;
    text-align: center;
  }
  .coffee_register_main h2{
    font-size: 18px;
    margin: 20px 0 8px;
  }
  .coffee_register_main span{
    font-size: 16px;
    vertical-align: text-bottom;
  }
  .coffee_register_main input{
    display: inline;
    font-size: 16px;
    box-sizing: border-box;
  }
  .coffee_register_main select{
    font-size: 16px;
    width: 100%;
    padding: 2px 0;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }
  .coffee_register_main .register_button{
    font-size: 15px;
    width: 50%;
    padding: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }
  .coffee_register_main .register_new_origin{
    width: 93%;
    margin-left: 7%;
  }
  .register_flag_origin{
    margin-top: 5px;
  }

  .c_register_button_div{
    width: 80%;
    margin: 40px auto;
  }

  .c_register_button{
    font-size: 16px;
    width: 150px;
    padding: 5px;
    margin-bottom: 20px;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }

  .register_coffee_name{
    width: 100%;
  }

  .register_origin{
    width: 100%;
  }

  .register_purification{
    width: 100%;
  }

  .register_roasting{
    width: 100%;
  }

  .register_coffee_price{
    width: 50%;
  }

  .beans_image_p{
    font-size: 15px;
    margin: 12px 0 5px;
  }

  .edit_beans_image{
    display: block;
    width: 30%;
  }

  .file_beans_image{
    font-size: 12px;
  }

  .register_h2_taste{
    display: inline-block;
  }

  .coffee_register_main .register_taste{
    width: 45px;
    text-align: left;
    vertical-align: text-top;
  }

  .register_coffee_comment{
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
  }

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

  .register_origin_image{
    width: 20px;
  }

  .register_beans_image{
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .register_taste_p{
    font-size: 20px;
  }

  .register_confirm_comment{
    white-space: normal;
  }

  .register_taste_item{
    width: 50%;
  }
  
  .c_register_h{
    margin: 20px auto 30px;
    width: 100%;
    position: relative;
    z-index: -1;
  }
  .c_register_h img{
    width: 100%;
    height: auto;
  }
  .c_register_h .c_reg_h1{
    position: absolute;
    margin: 0;
    top: 28px;
    left: 20px;
    letter-spacing: -1px;
    font-size: 18px;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 5px yellow;
  }
  .c_register_h .c_reg_h2{
    position: absolute;
    margin: 0;
    top: 14px;
    right: 20px;
    letter-spacing: -1px;
    font-size: 15px;
    text-shadow: 0 0 1px white;
  }
  .c_register_h .c_reg_h3{
    position: absolute;
    margin: 0;
    bottom: 15px;
    right: 20px;
    letter-spacing: -1px;
    font-size: 12px;
    text-shadow: 0 0 1px white;
  }


  
  /* コーヒー商品一覧 */

  .coffee_list_main{
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  
    .coffee_nolist_p{
      font-size: 20px;
      margin-top: 50px;
      line-height: 1.5;
      letter-spacing: 1px;
      text-align: center;
    }
  
    .coffee_list_table{
      width: 100%;
      margin: 20px auto;
      background-color: #ffd5a3;
      box-shadow: 2px 2px 5px gray;
    }
  
    .coffee_list_tr td{
      padding: 8px;
      border: 1px solid black;
    }
  
    .coffee_list_name{
      font-size: 12px;
      width: 70%;
    }
    .coffee_list_name span{
      font-size: 0.7em;
      vertical-align: top;
    }
    .coffee_list_submit{
      width: 15%;
      vertical-align: middle;
    }
    .coffee_list_button{
      margin: 0 auto;
      display: block;
      width: 45px;
      height: 22px;
      padding: 0px;
      text-align: center;
      font-size: 12px;
      border: 0.5px solid black;
      border-radius: 5px;
      background-color: #eeeeee;
      color: black;
    }

    .coffee_list_ul{
      width: 90%;
      margin: 0 auto;
    }
  
    .coffee_list_ul .coffee_register_button{
      width: 120px;
      padding: 8px;
      margin-top: 40px;
      border: 2px solid black;
      text-align: center;
      background-color: #dcd1b3;
    }
    .coffee_list_ul .coffee_register_button a{
      font-size: 15px;
      display: inline-block;
      color: black;
      text-shadow: 0 0 5px white, 0 0 5px white;
    }
  
  /* コーヒー商品delete */

  .coffee_delete_main{
    width: 250px;
    margin: 0 auto;
  }
  .coffee_delete_main h1{
    font-size: 28px;
    text-align: center;
    margin: 20px auto 30px;
  }
  .coffee_delete_main h2{
    font-size: 20px;
    margin-bottom: 12px;
  }
  .coffee_delete_main p{
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    white-space: nowrap;
  }
  .coffee_delete_main .input_pass{
    display: block;
    font-size: 18px;
    width: 60%;
    margin: 0 auto 50px;
  }
  .coffee_delete_main input[type=submit]{
    display: block;
    font-size: 14px;
    width: 100px;
    margin:20px auto;
    border: 1px solid black;
    border-radius: 5px;
    background-color: rgb(235, 235, 235);
  }
  
  /* コーヒー商品edit */
  
    .coffee_stock{
      width: 12vw;
    }
  



  /* 「roasting_top.php」 */

  .roasting_header_div{
    width: auto;
    height: 20px;
  }

  .roasting_top_main{
    width: 50vw;
    margin: 30px auto;
  }

  .roasting_top_table{
    width: 100%;
    background-color: #ffd5a3;
    box-shadow: 2px 2px 5px gray;
    margin: 50px auto;
  }

  .roasting_top_tr td{
    padding: 12px;
    border: 1px solid black;
  }

  .roasting_top_name{
    font-size: 20px;
    width: 70%;
  }
  .roasting_top_name_span{
    font-size: 0.7em;
  }
  .roasting_top_name_under{
    display: block;
    margin-top: 8px;
  }
  .roasting_top_submit{
    width: 15%;
    vertical-align: middle;
  }
  .roasting_top_button{
    font-size: 15px;
    width: 100%;
    display: block;
    background-color: #ff9e2a;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .roasting_top_div{
    width: 80%;
    margin: 25px auto;
  }

  .roasting_menu_button{
    width: 40%;
    height: 40px;
    font-size: 20px;
    color: black;
    text-shadow: 0 0 3px white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    text-align: center;
    background-color: #dcd1b3;
  }



/* raw_beans_operat.php */

  .r_b_o_main{
    width: 70%;
    max-width: 400px;
    margin: 50px auto;
  }

  .r_b_o_h1{
    font-size: 28px;
    text-align: center;
    margin: 0 auto 15px;
  }

  .r_b_o_h2{
    font-size: 24px;
    margin: 20px auto 12px;
  }

  .r_b_o_coffee_name{
    font-size: 20px;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_main .register_origin{
    font-size: 20px;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_main .register_purification{
    font-size: 20px;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_main .coffee_stock{
    font-size: 20px;
    padding: 5px;
    width: 20%;
    box-sizing: border-box;
  }

  .r_b_o_new_origin{
    font-size: 20px;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_flag_origin{
    font-size: 18px;
    margin-top: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .r_b_o_button_div{
    width: 90%;
    margin: 40px auto;
  }

  .r_b_o_button{
    font-size: 18px;
    width: 40%;
    padding: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }



/* raw_beans_operat_check.php */

  .r_b_o_check_p_top{
    font-size: 13px;
    margin: 30px auto;
    text-align: center;
  }

  .r_b_o_check_p{
    font-size: 18px;
    margin: 0px 8px 10px 25px;
    display: inline-block;
  }

  .r_b_o_check_origin_image{
    width: 12%;
    vertical-align: middle;
  }



  /* roasting_machines.php */
  
    .r_machines_main{
      width: 95%;
      max-width: 500px;
      margin: 30px auto;
    }
  
    .r_machines_h1{
      font-size: 26px;
      text-align: center;
      margin: 0 auto 30px;
    }
  
    .r_machines_p{
      font-size: 24px;
      text-align: center;
      margin-bottom: 50px;
    }

    .r_machines_p2{
      font-size: 18px;
      text-align: center;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .r_machines_form{
      margin-bottom: 80px;
    }
  
    .r_machines_select{
      width: 50%;
      font-size: 15px;
      padding: 5px;
      margin-right: 10px;
      color: black;
      background-color: white;
      border: 0.5px solid black;
      border-radius: 3px;
    }
  
    .r_machines_button{
      width: 80px;
      height: 30px;
      font-size: 15px;
      box-sizing: border-box;
      background-color: #ffcb50;
      color: black;
      border: 1px solid black;
      border-radius: 5px;
    }
  
    .r_machines_back{
      font-size: 15px;
      width: 50%;
      padding: 5px;
      margin-bottom: 20px;
      box-sizing: border-box;
      background-color: #ffcb50;
      color: black;
      border: 1px solid black;
      border-radius: 5px;
    }
  
  
  
/* roasting_machines_add.php */

  .r_machines_h2{
    font-size: 20px;
    margin-left: 60px;
  }

  .r_machines_input{
    font-size: 18px;
    display: block;
    margin: 20px auto 30px;
  }

  .r_machines_submit{
    display: block;
    margin: 10px auto 50px;
    width: 100px;
    height: 35px;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #ffcb50;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
  }



/* roasting_start.php */

  .r_start_main{
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
  .r_start_main form{
    width: 90%;
    margin: 0 auto;
  }

  .r_start_h1{
    margin: 20px auto 0px;
    font-size: 21px;
    text-align: center;
  }
  
  .r_start_h{
    margin: 20px auto 30px;
    width: 100%;
    position: relative;
    z-index: -1;
  }
  .r_start_h img{
    width: 100%;
    height: auto;
  }
  .r_start_h h1{
    position: absolute;
    top: 23px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 18px;
    color: white;
    text-shadow: 0 0 3px black , 0 0 3px black , 0 0 3px black , 0 0 5px yellow;
  }
  .r_start_h h2{
    position: absolute;
    top: 10px;
    right: 14px;
    letter-spacing: -1px;
    font-size: 12px;
    text-shadow: 0 0 1px white;
  }
  .r_start_h h3{
    position: absolute;
    bottom: 10px;
    right: 15px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }

  .r_start_h2{
    position: absolute;
    top: -11px;
    left: 12px;
    font-size: 20px;
    background-color: #f2ede1;
  }

  .r_start_h3{
    font-size: 18px;
    margin-bottom: 5px;
    text-align: left;
  }

  .r_start_border_div{
    position: relative;
    min-width: 320px;
    box-sizing: border-box;
    margin: 0 auto 40px;
    text-align: center;
    border: 1px solid black;
    border-radius: 5px;
    padding: 22px 15px 15px;
  }

  .r_start_short_input{
    font-size: 24px;
    width: 60px;
    padding: 2px;
    vertical-align: text-bottom;
    letter-spacing: 1px;
  }

  .r_start_middle_input{
    font-size: 24px;
    width: 85px;
    padding: 2px;
    vertical-align: text-bottom;
    letter-spacing: 1px;
  }

  .r_start_long_input{
    position: relative;
    font-size: 24px;
    width: 80%;
    padding: 2px;
    vertical-align: baseline;
    letter-spacing: 1px;
  }

  .r_start_input_after_span{
    font-size: 18px;
    margin-left: -2px;
  }

  .r_start_date select{
    font-size: 24px;
    letter-spacing: 1px;
    vertical-align: text-bottom;
    padding: 2px;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }
  .r_start_date span{
    font-size: 18px;
    margin: 0 5px;
  }

  .r_start_date_p{
    font-size: 18px;
    margin: 10px auto 0;
  }

  .r_start_percent select{
    font-size: 24px;
    width: 70px;
    letter-spacing: 1px;
    vertical-align: text-bottom;
    padding: 2px;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }
  .r_start_percent span{
    font-size: 18px;
    margin-left: 3px;
  }

  .r_start_total_time_div select{
    font-size: 24px;
    width: 60px;
    padding: 2px;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }
  .r_start_total_time_div input{
    font-size: 24px;
    width: 50px;
  }
  .r_start_total_time_div span{
    font-size: 18px;
    vertical-align: text-bottom;
  }

  .r_start_pulldown_roasting select{
    font-size: 18px;
    width: 200px;
    padding: 6px;
    color: black;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 3px;
  }

  .r_start_total{
    width: 220px;
    margin-bottom: 12px;
  }
  .r_start_roast{
    width: 220px;
  }
  
  
  
/* roasting_start_check.php */

  .r_start_c_h3{
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
  }
  .r_start_c_h3_small{
    font-size: 15px;
    margin-bottom: 5px;
    text-align: center;
  }

  .r_start_c_border{
    width: 100%;
    min-width: 60px;
    height: 0px;
    margin: 5px auto 3px;
    border-top: 1px solid black;
    border-radius: 1px;
  }

  .r_start_c_date_p{
    font-size: 18px;
  }

  .session_span{
    font-size: 18px;
  }



/* roasting_start_done.php */

  .old_check_p{
    font-size: 18px;
    margin-bottom: 5px;
    text-align: center;
  }
  



/* 「roasting_data.php」 */

  .roasting_data_main{
    width: 90vw;
    max-width: 400px;
    margin: 30px auto;
  }

  .roasting_data_h2{
    font-size: 20px;
    text-align: center;
  }

  .roasting_data_p{
    font-size: 16px;
    text-align: center;
    margin: 40px auto 50px;
  }

  .roasting_data_table{
    width: 100%;
    background-color: #ffd5a3;
    box-shadow: 2px 2px 5px gray;
    margin: 10px auto 40px;
  }

  .roasting_data_kinds_table{
    width: 100%;
    background-color: #ff9e2b;
    box-shadow: 2px 2px 5px gray;
    margin: 10px auto 40px;
  }

  .roasting_data_tr td{
    padding: 6px;
    border: 1px solid black;
  }

  .roasting_data_name{
    font-size: 16px;
    width: 70%;
  }
  .roasting_data_name_span{
    font-size: 0.8em;
  }
  .roasting_data_name_under{
    display: block;
    margin-top: 8px;
  }
  .roasting_data_submit{
    width: 15%;
    vertical-align: middle;
  }
  .roasting_data_button{
    font-size: 14px;
    width: 100%;
    display: block;
    background-color: #ff9e2a;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }
  .roasting_data_button2{
    font-size: 14px;
    width: 100%;
    display: block;
    background-color: #ffd5a3;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .roasting_data_div{
    width: 80%;
    margin: 25px auto;
  }

  .roasting_menu_button{
    width: 42%;
    height: 30px;
    font-size: 16px;
    color: black;
    text-shadow: 0 0 3px white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    text-align: center;
    background-color: #dcd1b3;
  }




/* roasting_review.php */

  .r_review_date{
    font-size: 20px;
    text-align: center;
    margin: 0 auto;
  }

  .r_review_last_date{
    font-size: 15px;
    text-align: center;
    margin: 10px auto 0;
  }

  .review_border_long_div{
    width: 90%;
    margin: 40px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }

  .review_border_short_div{
    width: 90%;
    margin: 7px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }

  .review_taste_div{
    width: 90%;
    margin: 20px auto;
  }

  .review_taste_item{
    width: 30%;
  }

  .review_h2_taste{
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: -1px;
  }

  .review_taste{
    width: 45px;
    text-align: center;
    font-size: 16px;
    padding: 1px;
  }

  .review_comment{
    width: 90%;
    margin: 0 auto;
  }
  .review_comment h2{
    font-size: 20px;
    margin-bottom: 5px;
  }
  .review_comment textarea{
    font-size: 15px;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    height: 100px;
  }
  .review_comment p{
    font-size: 15px;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    height: 100px;
    border: 1px solid black;
    overflow: scroll;
  }




/* member_pay_history.php */

  .p_h_main{
    width: 50%;
    max-width: 450px;
    margin: 0 auto;
  }

  .p_h_h1{
    font-size: 30px;
    text-align: center;
    margin: 40px auto 0;
  }

  .p_h_p{
    font-size: 22px;
    text-align: center;
    margin: 20px auto 20px;
  }

  .p_h_table{
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
  }
  .p_h_table td{
    border: 2px solid rgb(100, 100, 100);
  }

  .p_h_table_top{
    background-color: #ded4bd;
    box-sizing: border-box;
    padding: 8px;
    width: 100%;
  }
  .select_year{
    display: block;
    font-size: 18px;
    padding: 5px;
    width: 100px;
    text-align: center;
    margin: 0 0 0 auto;
    background-color: #ebebeb;
  }

  .rec_0_div{
    width: 90%;
    margin: 0 auto;
  }

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

  .p_h_item{
    box-sizing: border-box;
    width: 100%;
    height: auto;
  }

  .p_h_border_long{
    width: 95%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 0 auto;
  }

  .p_h_border_short{
    width: 40%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 6px auto 4px;
  }

  .p_h_item_middle{
    width: 100%;
    height: auto;
    padding: 12px;
    box-sizing: border-box;
    font-size: 15px;
  }
  .p_h_item_middle_left{
    width: 33%;
    height: auto;
  }
  .p_h_item_middle_center{
    width: 34%;
    height: auto;
    white-space: nowrap;
  }
  .p_h_item_middle_right{
    width: 33%;
    height: auto;
  }

  .p_h_item_under{
    width: 100%;
    height: auto;
    padding: 12px;
    box-sizing: border-box;
  }

  .p_h_item_submit{
    font-size: 12px;
    padding: 4px 10px;
    margin-left: 18px;
    background-color: #ebebeb;
    border: 0.5px solid black;
    border-radius: 3px;
    color: black;
    border: 1px solid black;
  }

  .p_h_item_under_right p{
    font-size: 12px;
  }
  .p_h_item_under_right span{
    font-size: 24px;
    margin-left: 4px;
  }

  .p_h_select_back_button{
    box-sizing: border-box;
    margin: 20px 0;
    width: 180px;
    height: 40px;
    font-size: 22px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .p_h_arrow_left::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 8px solid transparent;
    border-right: 10px solid white;
  }





/* member_pay_history_item.php */

  .p_h_i_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

  .p_h_i_top_div{
    width: 95%;
    margin: 30px auto 30px;
  }

  .p_h_i_left_div{
    height: 50px;
  }

  .p_h_i_left_value{
    font-size: 18px;
    margin: 3px 0;
  }

  .p_h_i_receipt_button{
    border: none;
    width: 120px;
    height: 45px;
    background-color: #ff8c2a;
    box-shadow: 2px 2px 3px black;
    border-radius: 5px;
  }

  .p_h_i_h2{
    font-size: 20px;
    margin-bottom: 5px;
  }

  .p_h_i_line{
    margin: 0 auto 15px;
    border: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .p_h_i_orderer_div{
    width: 85%;
    margin: 0 auto 15px;
  }

  .p_h_i_orderer_h3{
    font-size: 18px;
  }

  .p_h_i_orderer_p{
    font-size: 18px;
    margin: 8px 0 15px 36px;
  }

  .p_h_i_table{
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse
  }
  .p_h_i_table td{
    border: 2px solid rgb(100, 100, 100);
  }

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

  .p_h_i_table_item_top{
    width: 100%;
    height: auto;
    padding: 8px 8px 8px 18px;
    box-sizing: border-box;
  }

  .p_h_i_table_item_top_left{
    width: 70px;
    height: auto;
  }

  .p_h_i_table_item_top_right{
    flex-grow: 1;
    height: auto;
    text-align: center;
  }
  .p_h_i_table_item_top_right h2{
    font-size: 15px;
    letter-spacing: 0;
  }
  .p_h_i_table_item_top_right h3{
    font-size: 13px;
    letter-spacing: -1px;
  }

  .p_h_i_table_border_long{
    width: 95%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 0 auto;
  }

  .p_h_i_table_border_short{
    width: 40%;
    height: auto;
    border-top: 1px solid rgb(100, 100, 100);
    margin: 6px auto 4px;
  }

  .p_h_i_table_item_middle{
    width: 100%;
    height: auto;
    padding: 8px;
    box-sizing: border-box;
    font-size: 12px;
  }

  .p_h_i_table_item_middle_item{
    width: 33.3%;
    height: auto;
    white-space: nowrap;
  }

  .p_h_i_table_item_under{
    width: 100%;
    height: auto;
    padding: 12px 8px;
    box-sizing: border-box;
  }

  .p_h_i_re_cart{
    font-size: 12px;
    width: 150px;
    height: 30px;
    letter-spacing: -0.1px;
    border: 0.5px solid black;
    border-radius: 2px;
    background-color: #ded4bd;
    color: black;
  }

  .p_h_i_table_item_under_p{
    font-size: 12px;
  }
  .p_h_i_table_item_under_p span{
    font-size: 22px;
    margin-left: 4px;
  }

  .p_h_i_table_all_price_td{
    height: 40px;
    padding: 8px 12px;
    text-align: right;
    vertical-align: bottom;
    font-size: 14px;
    letter-spacing: 1px;
    background-color: #ded4bd;
  }
  .p_h_i_table_all_price_td_span{
    margin-left: 12px;
    font-size: 32px;
    letter-spacing: 1px;
  }

  .p_h_i_coupon_span{
    position: absolute;
    top: 2px;
    left: 3px;
    font-size: 12px;
    color: black;
    border: none;
  }

  .p_h_i_table_shipping_td{
    height: 22px;
    padding: 12px 8px;
    text-align: right;
    font-size: 14px;
    letter-spacing: 0px;
  }
  .p_h_i_table_shipping_td_span{
    font-size: 22px;
    margin-left: 4px;
  }

  




/* roasting_data_kinds.php */

  .r_d_kinds_header_div{
    width: 100%;
    height: 10px;
  }

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

  .r_d_kinds_h1{
    margin: 15px auto 0px;
    font-size: 18px;
    text-align: center;
  }

  .r_d_kinds_h{
    margin: 20px auto 15px;
    width: 90%;
    max-width: 350px;
    position: relative;
    z-index: -1;
  }
  .r_d_kinds_h img{
    width: 100%;
    height: auto;
  }
  .r_d_kinds_h h1{
    position: absolute;
    top: 20px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 5px yellow;
  }
  .r_d_kinds_h h2{
    position: absolute;
    top: 10px;
    right: 14px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }
  .r_d_kinds_h h3{
    position: absolute;
    bottom: 10px;
    right: 15px;
    letter-spacing: -1px;
    font-size: 8px;
    text-shadow: 0 0 1px white;
  }

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

  .r_d_kinds_edit_div{
    box-sizing: border-box;
    width: 90%;
    max-width: 370px;
    border-radius: 5px;
    height: 80px;
    padding: 5px;
    margin: 20px auto;
    background-color: #efe4ca;
  }

  .r_d_kinds_sort_span{
    font-size: 16px;
  }
  .select_sort{
    width: 180px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 3px;
    background-color: #efefef;
  }
  .r_d_kinds_select_span{
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  .select_coffee{
    width: 180px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .r_d_kinds_card{
    width: 90%;
    max-width: 350px;
    margin: 30px auto;
    border: 1px solid rgb(100, 100, 100);
    border-radius: 5px;
    box-shadow: 2px 2px 5px black;
    white-space: nowrap;
  }
  .r_d_kinds_card_top{
    box-sizing: border-box;
    width: 90%;
    height: 55px;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }
  .r_d_kinds_card_top_item{
    width: 33.3%;
  }
  .r_d_kinds_card_top_item span{
    font-size: 13px;
  }
  .r_d_kinds_card_top_item_line{
    width: 60%;
    margin: 4px auto 2px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .r_d_kinds_card_middle{
    width: 100%;
    height: 25px;
    text-align: center;
  }
  .r_d_kinds_card_middle_item{
    width: 33.3%;
  }
  .r_d_kinds_card_middle_item span{
    font-size: 13px;
  }

  .r_d_kinds_card_under{
    width: 100%;
    height: 25px;
    text-align: center;
  }
  .r_d_kinds_card_under_item{
    width: 33.3%;
  }
  .r_d_kinds_card_under_item span{
    font-size: 13px;
  }

  .r_d_kinds_card_form{
    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    height: 40px;
    margin: 3px auto 0;
  }
  .r_d_kinds_card_form form{
    width: 100%;
    height: 100%;
  }

  .r_d_kinds_card_form_button{
    font-size: 12px;
    width: 30%;
    height: 25px;
    display: block;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .r_d_kinds_rec_1_div{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }
  .r_d_kinds_back_button{
    box-sizing: border-box;
    width: 90px;
    height: 30px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .r_d_kinds_back_button::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }





/* roasting_data_detail.php */

  .r_d_d_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

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

  .r_d_d_h{
    margin: 20px auto 10px;
    width: 350px;
    position: relative;
    z-index: -1;
  }
  .r_d_d_h img{
    width: 100%;
    height: auto;
  }
  .r_d_d_h h1{
    position: absolute;
    top: 26px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 5px yellow;
  }
  .r_d_d_h h2{
    position: absolute;
    top: 13px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 11px;
    text-shadow: 0 0 1px white;
  }
  .r_d_d_h h3{
    position: absolute;
    top: 11px;
    right: 16px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }
  .r_d_d_h h4{
    position: absolute;
    bottom: 11px;
    right: 15px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }

  .r_d_d_date_div{
    box-sizing: border-box;
    width: 300px;
    height: auto;
    margin: 0 auto 15px;
  }

  .r_d_d_date_div_item{
    width: 50%;
  }
  .r_d_d_date_div_item span{
    font-size: 16px;
  }
  .r_d_d_date_div_item_line{
    width: 50%;
    height: 0px;
    margin: 5px auto 3px;
    border-top: 1px solid black;
    border-radius: 1px;
  }

  .r_d_d_h2{
    font-size: 18px;
    width: 320px;
    margin: 15px auto 0;
  }

  .r_d_d_longline{
    width: 320px;
    height: 0px;
    margin: 5px auto 10px;
    border-top: 1px solid black;
    border-radius: 1px;
  }
  .r_d_d_longline2{
    width: 320px;
    height: 0px;
    margin: 30px auto 20px;
    border-top: 1px solid black;
    border-radius: 1px;
  }

  .r_d_d_taste_div{
    width: 320px;
    height: 30px;
    margin: 0 auto;
  }

  .r_d_d_taste_p_18{
    width: 33.3%;
    font-size: 18px;
    text-align: center;
  }

  .r_d_d_h3{
    font-size: 16px;
    width: 310px;
    margin: 20px auto 8px;
  }

  .r_d_d_data_div{
    width: 320px;
    height: 30px;
    white-space: nowrap;
    margin-left: 28px;
  }

  .r_d_d_taste_p_15{
    width: 100px;
    height: 20px;
    font-size: 15px;
    text-align: center;
    border-bottom: 0.5px solid black;
    margin-right: 10px;
  }

  .r_d_d_comment{
    width: 300px;
    margin: 0 auto 20px;
  }
  .r_d_d_comment h2{
    font-size: 18px;
    margin-bottom: 8px;
  }
  .r_d_d_comment p{
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.1;
    width: 300px;
    padding: 8px;
    box-sizing: border-box;
    height: 100px;
    border: 1px solid black;
    overflow: scroll;
  }

  




/* delivery_select.php */

  .d_s_main{
    width: 70%;
    max-width: 280px;
    margin: 30px auto;
  }

  .d_s_button{
    box-sizing: border-box;
    border: 1px solid black;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
    background-color: #dcd1b3;
    line-height: 2.4;
  }
  .d_s_button a{
    display: block;
    font-size: 20px;
    color: black;
    text-shadow: 0 0 5px white;
  }

  




/* delivery_req.php */

  .d_r_space{
    height: 20px;
  }

  .d_r_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

  .d_r_h1{
    font-size: 24px;
    text-align: center;
    margin: 40px auto 0;
  }

  .d_r_div{
    flex-wrap: wrap;
    width: 100%;
    overflow: scroll;
    margin: 0 auto;
  }

  .d_r_info_span{
    display: block;
    font-size: 18px;
    margin: 20px auto 10px;
    text-align: center;
  }

  .d_r_form{
    box-sizing: border-box;
    width: 42%;
    height: auto;
    margin: 4%;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
  }

  .d_r_button{
    font-size: 18px;
    width: 100%;
    height: auto;
    color: white;
    text-shadow: 0 0 3px black;
    background: none;
    border: none;
  }
  .d_r_button span{
    overflow: scroll;
    white-space: nowrap;
  }

  .d_r_button_top{
    width: 100%;
    font-size: 0.8em;
    margin: 6px 0 0 5px;
    text-align: left;
  }
  .d_r_button_middle{
    width: 100%;
    text-align: left;
    margin-left: 5px;
  }
  .d_r_button_under{
    width: 100%;
    margin: -3px 5px 5px 0;
    text-align: right;
  }
  .d_r_button_blend{
    position: absolute;
    bottom: 0px;
    left: 5px;
    color: orange;
    transform: rotate(-15deg);
    font-family: 'Shippori Mincho';
  }

  .d_r_back_div{
    flex-grow: 1;
    width: 75%;
    max-width: 350px;
    margin: 0 auto;
  }

  .d_r_back_a{
    box-sizing: border-box;
    width: 90px;
    height: 35px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .d_r_back_a::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }

  




/* delivery_req_check.php */

  .d_r_c_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

  .d_r_c_h1{
    font-size: 24px;
    text-align: center;
    margin: 30px auto 0;
  }

  .d_r_c_info_p{
    font-size: 18px;
    text-align: center;
    margin: 15px auto 25px;
    line-height: 1.2;
  }

  .d_r_c_line{
    margin: 0 auto 15px;
    border: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .d_r_c_h2{
    font-size: 20px;
    margin: 25px 0 5px;
  }

  .d_r_c_orderer_div{
    width: 85%;
    margin: 0 auto;
  }
  .d_r_c_orderer_h3{
    font-size: 18px;
  }
  .d_r_c_orderer_p{
    font-size: 18px;
    margin: 5px 0 10px 36px;
  }

  .d_r_c_card{
    width: 90%;
    max-width: 350px;
    margin: 30px auto;
    border: 1px solid rgb(100, 100, 100);
    border-radius: 5px;
    box-shadow: 2px 2px 5px black;
    white-space: nowrap;
  }

  .d_r_c_card_top{
    box-sizing: border-box;
    width: 90%;
    height: 32px;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

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

  .d_r_c_card_middle{
    box-sizing: border-box;
    width: 90%;
    height: 50px;
    margin: 0 auto;
  }

  .d_r_c_card_middle_item{
    width: 33.3%;
  }
  .d_r_c_card_middle_item span{
    font-size: 13px;
  }

  .d_r_c_card_middle_item_line{
    width: 60%;
    margin: 4px auto 2px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .d_r_c_card_form{
    width: 90%;
    height: 40px;
    margin: 3px auto 0;
    border-top: 1px solid rgb(100, 100, 100);
  }
  .d_r_c_card_form form{
    width: 100%;
    height: 100%;
  }

  .d_r_c_card_form_button{
    font-size: 14px;
    width: 30%;
    height: 25px;
    display: block;
    background-color: #c38a00;
    color: #f2ede1;
    letter-spacing: 2px;
    border: 1px solid black;
    border-radius: 3px;
  }

  .d_r_c_all_form{
    width: 200px;
    margin: 30px auto 30px;
  }

  .d_r_c_all_form_button{
    font-size: 16px;
    width: 100%;
    height: 40px;
    display: block;
    background-color: #ffae4f;
    color: black;
    border: 1px solid black;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 2px 3px 3px gray;
  }
  .d_r_c_back_form_button{
    font-size: 16px;
    width: 100%;
    height: 40px;
    display: block;
    background-color: #f2ede1;
    color: black;
    border: 1px solid black;
    border-radius: 8px;
    letter-spacing: 0.5px;
    margin-top: 25px;
  }

  .d_r_c_doc_number_p{
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
  }
  .d_r_c_doc_number_span{
    font-size: 14px;
    display: block;
    text-align: center;
    margin-bottom: 8px;
  }

  .d_r_c_doc_number_text{
    box-sizing: border-box;
    font-size: 16px;
    padding: 5px;
    width: 100%;
    height: 70px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    border: 1px solid black;
    border-radius: 5px;
  }

  




/* delivery_comp.php */

  .d_c_div{
    width: 90%;
    max-width: 350px;
    margin: 10px auto 10px;
  }

  .d_c_info_span{
    font-size: 18px;
  }

  .d_c_back_div{
    width: 90%;
    max-width: 350px;
    margin: 20px auto 10px;
  }

  




/* my_blend.php */

  .m_b_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

  .m_b_h1{
    font-size: 24px;
    text-align: center;
    margin-top: 15px;
  }

  .m_b_a{
    font-size: 18px;
    width: 220px;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 2.3;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 8px;
    margin: 20px auto 0px;
  }

  .m_b_h2{
    font-size: 18px;
    margin: 20px 0 5px;
  }

  .m_b_longline{
    border-top: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .m_b_p_no{
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
    margin: 50px auto 0;
  }

  .m_b_back_div{
    width: 90%;
    max-width: 350px;
    margin: 40px auto 10px 55px;
  }

  .m_b_back_button{
    box-sizing: border-box;
    width: 185px;
    height: 34px;
    font-size: 15px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
    margin-left: 20px;
  }
  .m_b_back_button::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }

  .m_b_p{
    font-size: 15px;
    text-align: center;
    letter-spacing: 1px;
    margin: 25px auto 15px;
  }

  .m_b_sort_div{
    box-sizing: border-box;
    margin-top: 25px;
    width: 100%;
    height: 50px;
    background-color: #efe4ca;
  }

  .m_b_card{
    width: 350px;
    margin: 30px auto;
    border: 1px solid rgb(100, 100, 100);
    border-radius: 5px;
    box-shadow: 2px 2px 5px black;
    white-space: nowrap;
  }

  .m_b_card_top{
    box-sizing: border-box;
    width: 90%;
    height: 65px;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .m_b_card_top_item{
    width: 33.3%;
  }

  .m_b_card_top_item .m_b_card_top_span{
    font-size: 14px;
  }

  .m_b_card_top_item_line{
    width: 60%;
    margin: 6px auto 4px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .m_b_card_middle{
    width: 90%;
    height: 30px;
    margin: 0 auto;
    text-align: center;
  }

  .m_b_card_middle_item{
    width: 25%;
  }
  .m_b_card_middle_item span{
    font-size: 15px;
  }

  .m_b_card_bottom{    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    margin: 0 auto;
  }

  .m_b_card_bottom_p{
    font-size: 15px;
    margin: 8px 0;
  }

  .m_b_card_form_top{
    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    height: 40px;
    margin: 0 auto;
  }
  .m_b_card_form_top form{
    width: 100%;
    height: 100%;
  }

  .m_b_card_form_top_button{
    font-size: 12px;
    width: 100px;
    height: 25px;
    display: block;
    background-color: #614d3f;
    color: white;
    border: 1px solid black;
    border-radius: 3px;
  }

  .m_b_card_form_bottom{
    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    height: 50px;
    margin: 0 auto;
  }
  .m_b_card_form_bottom form{
    width: 100%;
    height: 100%;
  }

  .m_b_card_form_bottom_button{
    font-size: 14px;
    width: 270px;
    height: 30px;
    display: block;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  




/* blend_req.php */

  .b_r_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

  .b_r_h1{
    margin: 20px auto 0px;
    font-size: 18px;
    text-align: center;
  }
  .b_r_h1_2{
    margin: 0px auto 0px;
    font-size: 18px;
    text-align: center;
  }
  .b_r_h1_3{
    font-size: 20px;
    text-align: center;
    margin: 50px auto -10px;
  }

  .b_r_title_line{
    border-top: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 90px;
    height: 0;
    margin: 8px auto 5px;
  }

  .b_r_info_p{
    font-size: 14px;
    margin: 15px auto 0;
    text-align: center;
    line-height: 1.2;
  }

  .b_r_main form{
    width: 100%;
  }

  .b_r_h2{
    font-size: 18px;
    margin: 25px 0 5px;
  }
  .b_r_h2 span{
    margin-left: 10px;
    font-size: 0.7em;
  }

  .b_r_longline{
    border-top: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .b_r_blend_p{
    white-space: nowrap;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-align: center;
    margin: 15px auto 10px;
  }

  .b_r_blend_div{
    width: 85%;
    height: 50px;
    margin: 0px auto;
  }

  .b_r_score_h2{
    font-size: 20px;
    margin-right: 8px;
  }

  .b_r_score_select{
    font-size: 16px;
    text-align: center;
    width: 50px;
    padding: 3px;
    background-color: white;
    border: 1px solid black;
    border-radius: 3px;
  }

  .b_r_keep_button{
    display: block;
    width: 120px;
    height: 35px;
    font-size: 16px;
    background-color: #f7780d;
    font-family: 'Shippori Mincho', serif;
    border: 1px solid black;
    border-radius: 10px;
    color: black;
  }

  .b_r_taste_div{
    width: 100%;
    margin: 20px 0;
  }

  .b_r_taste_item{
    width: 23%;
  }
  .b_r_taste_item h2{
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: 0px;
  }
  .b_r_taste_item div{
    width: 90%;
    margin: 7px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }
  .b_r_taste_item select{
    width: 45px;
    text-align: center;
    font-size: 16px;
    padding: 1px;
  }

  .b_r_textarea{
    display: block;
    box-sizing: border-box;
    width: 300px;
    height: 80px;
    font-size: 16px;
    margin: 5px auto 30px;
    padding: 5px;
    border: 1px solid black;
    border-radius: 5px;
  }

  .b_r_textarea_p{
    width: 300px;
    margin: 15px auto 0;
    font-size: 14px;
  }

  .b_r_card_left_p{
    font-size: 15px;
    letter-spacing: 1px;
  }







/* blend_req_check.php */

  .b_r_taste_item .b_r_c_taste_item_div{
    width: 60%;
    margin: 7px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }

  .b_r_c_req_div{
    box-sizing: border-box;
    width: 300px;
    height: 60px;
    font-size: 14px;
    margin: 30px auto;
    padding: 7px;
    border: 1px solid black;
    border-radius: 5px;
  }

  .b_r_c_order_div{
    width: 100%;
    margin: 20px 0;
  }

  .b_r_c_order_item{
    width: 33%;
  }
  .b_r_c_order_item h2{
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: -1px;
  }
  .b_r_c_order_item div{
    width: 50%;
    margin: 5px auto 3px;
    border-bottom: solid 1px rgb(70, 40, 0);
  }
  .b_r_c_order_item h3{
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: 0px;
  }

  .b_r_c_button{
    display: block;
    width: 250px;
    height: 45px;
    font-size: 18px;
    margin: 10px auto 40px;
    background-color: #f7780d;
    font-family: 'Shippori Mincho', serif;
    border-radius: 10px;
    border: 1px solid black;
    color: black;
  }

  .b_r_c_button_arrow_right::after {
    content: "";
    display: inline-block;
    margin: -1.8px 5px;
    border: 8px solid transparent;
    border-left: 8px solid black;
  }

  .b_r_c_back_div{
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }

  .b_r_c_back_button{
    box-sizing: border-box;
    width: 120px;
    height: 30px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .b_r_c_back_button::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }





/* blend_payment_delivery.php */

  .b_p_d_h1_top{
    font-size: 24px;
    text-align: center;
    margin-top: 30px;
  }
  .b_p_d_h1_bottom{
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }
  .b_p_d_h1_line{
    margin: 6px auto;
    border: 0.5px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 60px;
    height: 0;
  }





/* blend_payment_check.php */

  .b_p_c_back_button{
    width: 90px;
    height: 50px;
    background-color: #614d3f;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    color: white;
    font-family: serif;
    letter-spacing: 1px;
    line-height: 1.2;
    border: none;
    padding: 0;
  }






/* select_blend.php */

  .s_b_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }

  .s_b_h1{
    font-size: 24px;
    text-align: center;
    margin: 25px auto 0;
  }

  .s_b_info_p{
    font-size: 16px;
    text-align: center;
    margin: 15px auto;
    line-height: 1.2;
  }

  .s_b_h2 {
    font-size: 18px;
    margin: 30px 0 5px;
  }
  .s_b_total_ratio_span{
    font-size: 0.8em;
    margin-left: 15px;
  }

  .s_b_longline{
    border-top: 1px solid rgb(70, 40, 0);
    border-radius: 1px;
    width: 100%;
    height: 0;
  }

  .s_b_blend_div{
    width: 85%;
    height: 60px;
    margin: 10px auto;
  }
  .s_b_ratio_div{
    width: 50px;
    height: 50px;
  }
  .s_b_ratio_span{
    font-size: 16px;
  }
  .s_b_blend_delete_submit{
    font-size: 12px;
    width: 45px;
    height: 25px;
    display: block;
    background-color: #efefef;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }
  .s_b_blend_line{
    width: 0px;
    height: 50%;
    border: 0.5px solid black;
    border-radius: 50%;
    margin: 0 10px 0 5px;
  }
  .s_b_kinds_div{
    flex-grow: 1;
    height: 100%;
  }
  .s_b_kinds_div_div{
    width: 100%;
  }
  .s_b_roasting_span{
    font-size: 12px;
  }
  .s_b_country_span{
    font-size: 14px;
  }
  .s_b_brand_span{
    font-size: 16px;
    margin-top: 3px;
  }

  .s_b_no_select_p{
    font-size: 16px;
    width: 85%;
    margin: 10px auto;
  }

  .s_b_select_form{
    width: 200px;
    margin: 25px auto 0;
  }
  .s_b_select_submit{
    font-size: 14px;
    width: 100%;
    height: 30px;
    display: block;
    text-align: center;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 8px;
  }

  .s_b_taste_div{
    width: 100%;
    margin: 10px 0;
  }

  .s_b_taste_item{
    width: 23%;
  }
  .s_b_taste_item h2{
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: 0px;
  }
  .s_b_taste_item_div{
    width: 60%;
    margin: 4px auto;
    border-bottom: solid 1px rgb(70, 40, 0);
  }

  .s_b_req_top{
    box-sizing: border-box;
    width: 300px;
    height: auto;
    font-size: 16px;
    margin: 15px auto 8px;
  }
  .s_b_req_div{
    box-sizing: border-box;
    width: 300px;
    height: 60px;
    font-size: 14px;
    margin: 0 auto 20px;
    padding: 7px;
    border: 1px solid black;
    border-radius: 5px;
  }

  .s_b_order_div {
    width: 100%;
    margin: 20px 0;
  }

  .s_b_order_item {
    width: 33%;
  }
  .s_b_order_item h2 {
    font-size: 14px;
    white-space: nowrap;
  }
  .s_b_order_item div {
    width: 50%;
    margin: 5px auto 3px;
    border-bottom: solid 1px rgb(70, 40, 0);
  }
  .s_b_order_item h3 {
    font-size: 16px;
    white-space: nowrap;
  }

  .s_b_base_id_p{
    white-space: nowrap;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-align: center;
    margin: 15px auto 10px;
  }

  .s_b_orderer_div{
    width: 85%;
    margin: 20px auto;
  }

  .s_b_orderer_h3{
    font-size: 16px;
  }

  .s_b_orderer_p{
    font-size: 16px;
    margin: 5px 0 10px 36px;
  }

  .s_b_blend_delete_done_div{
    width: 100%;
  }

  .s_b_dialog_p{
    font-size: 15px;
    line-height: 1.3;
  }

  .s_b_blend_delete_done_submit{
    font-size: 14px;
    margin: 0 0px 0 auto;
    padding: 6px 20px;
    border-radius: 8px;
    background-color: lightblue;
    border: 1.5px solid black;
  }


  




/* select_blend_list.php */

  .s_b_l_header_div{
    width: 100%;
    height: 10px;
  }

  .s_b_l_main{
    width: 100%;
    margin: 0 auto;
    flex-grow: 1;
  }

  .s_b_l_h1{
    margin: 15px auto 0px;
    font-size: 18px;
    text-align: center;
  }

  .s_b_l_h{
    margin: 20px auto 15px;
    width: 90%;
    max-width: 350px;
    position: relative;
    z-index: -1;
  }
  .s_b_l_h img{
    width: 100%;
    height: auto;
  }
  .s_b_l_h h1{
    position: absolute;
    top: 20px;
    left: 16px;
    letter-spacing: -1px;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 5px yellow;
  }
  .s_b_l_h h2{
    position: absolute;
    top: 10px;
    right: 14px;
    letter-spacing: -1px;
    font-size: 10px;
    text-shadow: 0 0 1px white;
  }
  .s_b_l_h h3{
    position: absolute;
    bottom: 10px;
    right: 15px;
    letter-spacing: -1px;
    font-size: 8px;
    text-shadow: 0 0 1px white;
  }

  .s_b_l_p{
    font-size: 18px;
    text-align: center;
    margin: 40px auto;
    line-height: 1.5;
    letter-spacing: 1.5px;
  }

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

  .s_b_l_edit_div{
    box-sizing: border-box;
    width: 100vw;
    height: 160px;
    padding: 5px;
    margin: 20px auto;
    background-color: #efe4ca;
  }

  .s_b_l_edit_div > div{
    width: 300px;
    margin-bottom: -10px;
  }

  .s_b_l_sort_span{
    width: 80px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }

  .s_b_l_select_sort{
    width: 220px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 3px;
    background-color: #efefef;
  }

  .s_b_l_select_span{
    width: 80px;
    font-size: 16px;
    letter-spacing: 1.2px;
  }

  .s_b_l_select_coffee{
    width: 220px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .s_b_l_search_span{
    width: 80px;
    font-size: 16px;
    letter-spacing: 10.5px;
  }

  .s_b_l_search_form_div{
    width: 220px;
    flex-wrap: nowrap;
    margin: 5px auto;
  }

  .s_b_l_taste_select{
    width: 85px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .s_b_l_param_select{
    width: 40px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .s_b_l_operat_select{
    width: 65px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
  }

  .s_b_l_search_string{
    font-size: 15px;
    vertical-align: text-bottom;
  }

  .s_b_l_search_submit{
    width: 40px;
    height: 25px;
    background-color: #efefef;
    border: 0.5px solid black;
    border-radius: 3px;
    font-size: 13px;
    box-shadow: 1px 1px 2px #614d3f;
  }

  .s_b_l_card{
    width: 90%;
    max-width: 350px;
    margin: 30px auto;
    border: 1px solid rgb(100, 100, 100);
    border-radius: 5px;
    box-shadow: 2px 2px 5px black;
    white-space: nowrap;
  }

  .s_b_l_card_h{
    box-sizing: border-box;
    width: 90%;
    height: auto;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }
  .s_b_l_card_h_top{
    width: 90%;
    margin: 10px auto 3px;
  }
  .s_b_l_card_h_top_h3{
    font-size: 13px;
    letter-spacing: 1px;
  }
  .s_b_l_card_h_top_h2{
    width: 85%;
    margin: 3px auto 10px;
    font-size: 15px;
  }

  .s_b_l_card_top{
    box-sizing: border-box;
    width: 90%;
    height: 55px;
    margin: 0 auto;
    border-bottom: 1px solid rgb(100, 100, 100);
  }
  .s_b_l_card_top_item{
    width: 33.3%;
  }
  .s_b_l_card_top_item span{
    font-size: 13px;
  }
  .s_b_l_card_top_item_line{
    width: 60%;
    margin: 4px auto 2px;
    border-bottom: 1px solid rgb(100, 100, 100);
  }

  .s_b_l_card_middle{
    width: 92%;
    height: 25px;
    margin: 0 auto;
    text-align: center;
  }
  .s_b_l_card_middle_item{
    width: 25%;
  }
  .s_b_l_card_middle_item span{
    font-size: 13px;
  }

  .s_b_l_card_form{
    border-top: 1px solid rgb(100, 100, 100);
    width: 90%;
    height: 40px;
    margin: 3px auto 0;
  }
  .s_b_l_card_form form{
    width: 100%;
    height: 100%;
  }

  .s_b_l_ratio_select{
    width: 60px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
    margin-right: 10px;
  }

  .s_b_l_form_grow{
    flex-grow: 1;
  }

  .s_b_l_card_select_button{
    font-size: 12px;
    width: 60px;
    height: 25px;
    display: block;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .s_b_l_card_detail_button{
    font-size: 12px;
    width: 100px;
    height: 25px;
    display: block;
    background-color: #725a49;
    color: white;
    border: 1px solid black;
    border-radius: 3px;
  }

  .s_b_l_rec_1_div{
    width: 90%;
    max-width: 320px;
    margin: 30px auto 10px;
  }
  .s_b_l_back_button{
    box-sizing: border-box;
    width: 90px;
    height: 30px;
    font-size: 14px;
    background-color: #614d3f;
    font-family: serif;
    border-radius: 5px;
    color: white;
  }
  .s_b_l_back_button::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    border: 6px solid transparent;
    border-right: 6px solid white;
  }





/* select_blend_list_detail.php */

  .s_b_l_d_form{
    margin: 20px auto 20px;
  }

  .s_b_l_d_ratio_select{
    width: 70px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0px;
    background-color: #efefef;
    margin-right: 15px;
  }

  .s_b_l_d_select_button{
    box-sizing: border-box;
    font-size: 12px;
    width: 70px;
    height: 25px;
    display: block;
    background-color: #ffb762;
    color: black;
    border: 1px solid black;
    border-radius: 3px;
  }

  .s_b_l_d_back_button{
    box-sizing: border-box;
    font-size: 13px;
    width: 70px;
    height: 25px;
    display: block;
    background-color: #614d3f;
    color: white;
    border: 1px solid #614d3f;
    border-radius: 3px;
    margin-left: 80px;
    text-align: center;
    line-height: 1.7;
  }





/* base_blend_detail.php */

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





/* member_credit_card.php */

  .m_c_member_info_h2{
    width: 100%;
    font-size: 24px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #b7965f;
    text-shadow: 0 0 3px black;
  }

  .m_c_member_info_div{
    border-left: 2px solid #b7965f;
    border-right: 2px solid #b7965f;
    border-bottom: 2px solid #b7965f;
    padding-bottom: 16px;
  }

  .m_c_member_info_h3{
    font-size: 20px;
    padding: 12px;
  }

  .m_c_member_span{
    display: block;
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
  }

  .m_c_max_card_p{
    font-size: 16px;
    text-align: center;
    margin: 10px auto;
    letter-spacing: 1.3px;
    line-height: 1.2;
    color: black;
  }

  .m_c_delete_card_h2{
    width: 100%;
    font-size: 24px;
    padding: 12px;
    margin-top: 30px;
    box-sizing: border-box;
    color: white;
    background-color: #766a55;
    text-shadow: 0 0 3px black;
  }

  .m_c_delete_card_div{
    border-left: 2px solid #766a55;
    border-right: 2px solid #766a55;
    border-bottom: 2px solid #766a55;
  }

  .m_c_no_card{
    text-align: center;
    font-size: 16px;
    padding: 12px;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  .m_c_delete_border{
    width: 95%;
    border: 0.5px solid black;
    border-radius: 2px;
  }

  .m_c_delete_form{
    width: 100%;
    height: 80px;
  }

  .m_c_delete_last4_span{
    width: 100%;
    text-align: center;
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .m_c_delete_under_div{
    width: 60%;
  }

  .m_c_delete_date_span{
    font-size: 20px;
    text-decoration: underline;
  }

  .m_c_delete_submit{
    font-size: 15px;
    margin-top: 4px;
    padding: 0 5px 0 5px;
    background-color: #e1e1e1;
    border: 1px solid black;
    border-radius: 3px;
  }





/* member_credit_card_check.php */

  .m_c_check_main{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    flex-grow: 1;
  }

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

  .m_c_check_p{
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0 auto 50px;
  }

  .m_c_check_form{
    width: 90%;
    margin: 0 auto;
  }

  .m_c_check_form_p{
    font-size: 20px;
    margin-bottom: 50px;
  }

  .m_c_check_form_last4{
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
  }




  /* receipt_creation.php */
  
    .r_c_main{
      width: 350px;
      margin: 0 auto;
    }
  
    .r_c_h1{
      font-size: 20px;
      text-align: center;
      margin: 20px auto;
    }
  
    .r_c_p{
      font-size: 16px;
      text-align: center;
      margin: 20px auto;
    }
  
    .r_c_form{
      width: 260px;
      margin: 20px auto;
    }
  
    .r_c_form_p{
      font-size: 18px;
      margin-top: 15px;
    }
  
    .r_c_input{
      width: 80%;
      padding: 5px;
      margin-top: 8px;
      margin-left: 10px;
      font-size: 16px;
    }
  
    .r_c_span{
      font-size: 14px;
      margin: 5px;
      vertical-align: sub;
    }
  
    .r_c_receipt_button{
      display: block;
      font-size: 14px;
      border: none;
      width: 180px;
      height: 32px;
      background-color: #ff8c2a;
      box-shadow: 2px 2px 3px black;
      border-radius: 5px;
      margin: 20px auto 70px;
    }


  
  
  
  /* footer */
  
    footer{
      width: 90vw;
      position: relative;
      margin: 50px auto 0;
      padding: 30px 0 50px;
      border-top: 2px solid rgb(70, 40, 0);
    }
  
    .long_border_div{
      display: none;
    }
  
    .footer_title{
      text-align: center;
      width: 30%;
    }
  
    .footer_title_p{
      font-size: 20px;
      margin-bottom: 8px;
      letter-spacing: -2px;
    }
  
    .footer_title_h{
      font-size: 45px;
      font-family: 'Marcellus', serif;
    }

    .footer_box_div{
      width: 30%;
    }
  
    .footer_box {
      text-align: center;
      width: 100px;
      height: auto;
      font-size: 20px;
      margin: 10px;
      padding: 15px;
      border: solid 1px rgb(70, 40, 0);
      display: inline-block;
    }
  
    .footer_pri_sct{
      width: 30%;
      font-size: 18px;
      line-height: 1.5;
      margin-top: -55px;
    }
    .footer_pri_sct .privacy{
      margin-right: 20%;
    }
    .footer_pri_sct .sct{
      margin-right: 15%;
    }
    .footer_pri_sct a{
      text-decoration: underline;
    }
   
    .operation{
      position: absolute;
      bottom: 30px;
      right: 4.5%;
      font-size: 24px;
      display: inline-block;
      z-index: 0;
      padding: 8px;
    }
    .operation::before, .operation::after {
      content: '';
      width: 50px;
      height: 25px;
      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{
      position: absolute;
      bottom: 0;
      left: 50.5%;
      font-size: 15px;
      margin: 0 0 25px -150px;
    }
  
  
  
  
  
  /* ------------------script------------------- */
  
  
  
    /* クリックでハンバーガーをバツにする処理 */
      /*ボタン外側(横型時は表示しない)*/
    .openbtn8{
      display: none;
    }
  
}

