.success-msg {
    display: none;
    position: fixed;
    width: 300px;
    height: 40px;
    line-height: 40px;
    background-color: #29aba4;
    color: #fff;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 5px;
}
.nameMark{
    color:red;
}
.floating-banner {
    width: calc(100% / 3);
    /* 画面の1/3の幅 */
    position: fixed;
    /* 固定表示 */
    bottom: 16px;
    /* 画面下から16px */
    right: 16px;
    /* 画面の右から16px */
    z-index: 9999;
    /* 常に前面に出す */
    transition: 0.3s;
    /* ホバー時ゆっくり透過 */
    cursor: pointer;
    /* ホバー時カーソルがポインターに */
}
.floating-banner button{
    border: none;
    outline: none;
    background: transparent;
}
.floating-banner:hover {
    opacity: 0.8;
    /* ホバーで透過させる */
}
.floating-banner_img {
    width: 100%;
    box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.4);
    /* 画像をfloating-bannerの幅に合わせる */
}
@media screen and (min-width: 481px) {
    /* 画面幅481px以上 */
    .floating-banner {
        width: calc(100% / 6);
        /* 画面の1/6の幅 */
    }
}

.closebtn {
    position: absolute;
    top: -8px;
    right: -8px;
    color: black;
    font-size: 20px;
    padding: 10px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}

.closebtn:hover {
  color: lightgrey;
}

#countdownA{
    color: #5ebf00;
    font-weight: bold;
    padding: 5px 0;
    font-size: 14px;
}
#countdownB{
    color: #5ebf00;
    font-weight: bold;
    padding: 5px 0;
    font-size: 14px;
}
#countdownC{
    color: #5ebf00;
    font-weight: bold;
    padding: 0 0 20px 0;
    font-size: 14px;
}
/*.blog_productBtn a {*/
/*    display: inline-block;*/
/*    margin: 0 auto;*/
/*    font-weight: 700;*/
/*    font-size: 24px;*/
/*    border-radius: 50px;*/
/*    padding: 0.5em 2em;*/
/*    color: white;*/
/*    background-color: #ef924a;*/
/*    text-decoration: none;*/
/*}*/

/*.roduct_link div{*/
/*    display: inline-block;*/
/*    padding-right: 20px;*/
/*    background-image: url(/html/user_data/assets/img/product/00_brand_logo/icon_link.svg);*/
/*    background-position: top 55% right;*/
/*    background-repeat: no-repeat;*/
/*    background-size: 15px 15px;*/
/*}*/

#line-notification-checkbox {
            display: none;
        }
#line-notification-confirm {
            display: none;
        }
        
#view_timer {
  font-size: 2em;
  text-align: center;
  display: none; /* 初期状態では非表示 */
}
.time-unit {
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
    #view_timer {
      font-size: 1.5em;
    }
}
/* カスタマイズ用CSS */