@charset "UTF-8";

/* クレジット支払い関連*/

/* 説明のボックス */
.cre_notes{
    border : solid 1px #9e9e9e;
    padding : 20px;
    color: #4c5356;
    background-color: white;
    border-radius: 5px;
    line-height: 25px;

}

/* warningのボックス */
.cre_warning{
    border : solid 1px #9e9e9e;
    padding : 5px;
    color: #4c5356;
    background-color: #ffe7c0;
    border-radius: 5px;
    line-height: 25px;
    margin-bottom:10px;
}

/* テーブル関連 */
.cre_title_TMM {
  text-align: left;
  margin: 15px 5px 5px 5px;
  color: #666666;
}
.cre_title_TMM_sub {
  margin-bottom:50px;
  margin-left:20px;
}
.cre_td_tmmsts   {width:40px; max-width: 100px;}
.cre_td_tourcd   {width:65px; max-width: 70px; color: #c0c0c0;}
.cre_td_tourname {text-align:left; width:auto;}
.cre_td_tourdate {width:180px; }
.cre_title_TMM img {
  vertical-align:middle;
}
.cre_td_cmd {width:100px; }

/* ボタン */
input[type="button"].cre_button {
    margin-top: 10px;
    outline: none;
    display: inline-block;
    font-size: 14px;
    line-height: 15px;
    background: linear-gradient(#549b6b,#3d8555,#256d3d );
    color: #fff;
    border: 2px solid #ccc;
    -moz-box-shadow: 0 2px 1px -1px #827673;
    box-shadow: 0 1px 1px -1px #827673;
    text-shadow: 1px 1px 0px rgb(0 0 0 / 20%);
    border-radius: 7px;
    padding: 8px 10px;
    letter-spacing: 1px;
    min-width: 80px;
}
input[type="button"].cre_button_disabled {
    margin-top: 10px;
    outline: none;
    display: inline-block;
    font-size: 14px;
    line-height: 15px;
    background: #888888;
    color: #ccc;
    border: 2px solid #ccc;
    -moz-box-shadow: 0 2px 1px -1px #827673;
    box-shadow: 0 1px 1px -1px #827673;
    text-shadow: 1px 1px 0px rgb(0 0 0 / 20%);
    border-radius: 7px;
    padding: 8px 10px;
    letter-spacing: 1px;
    min-width: 80px;
}


/********************************************
* Now Loading
********************************************/
#overlay{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 80px;
    height: 80px;
    border: 4px #ddd solid;
    border-top: 4px #999 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}
.is-hide{
    display:none;
}
