.dialogBase {
    border: none;
    overflow: hidden;
    background: #fff;
    position: fixed;
    display: none;
    z-index: 1001;

    /* サイズ指定 */
    width: calc(100% - 300px);
    min-width: 800px;
    height: 80%;
    min-height: 600px;
}

#dialog-overlay {
    top: 0px;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: none;
    z-index: 1000;
}

.dialog_titleStyle {
    height: 40px;
    text-align: left;
    padding-left: 30px;
}

.dialog_titleTextStyle {
    color: #ffffff;
    font-size: 18.5px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
      "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 40px;
}

.dialog_innner {
    margin: 10px 0px 0px 0px;
    padding: 0px 10px 10px 10px;
    width: calc(100% - 20px);
    height: calc(100% - 130px);
    overflow: auto;
}

.dialog-button-wrapper {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    line-height: 70px;
    justify-content: center;
}
  
.dialog-button-wrapper .Item {
    flex-basis: auto;
    text-align: center;
    white-space: nowrap;
    padding: 0px 15px;
}

.dialogMenuBar {
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    padding: 5px 0;
    background: -moz-linear-gradient(top left, #323e50 0%, #338ba8 50%, #323e50 80%, #323e50 80%);
    background: -webkit-gradient(linear, left top, from(#323e50), color-stop(50%, #338ba8), color-stop(80%, #323e50), to(#323e50));
    background: -webkit-linear-gradient(top left, #323e50 0%, #338ba8 50%, #323e50 80%, #323e50 80%);
    background: -o-linear-gradient(top left, #323e50 0%, #338ba8 50%, #323e50 80%, #323e50 80%);
    background: -ms-linear-gradient(top left, #323e50 0%, #338ba8 50%, #323e50 80%, #323e50 80%);
    background: linear-gradient(top left, #323e50 0%, #338ba8 50%, #323e50 80%, #323e50 80%);
    border-bottom: none;
    line-height: 35px;
}
  
.dialogMenuBar .Title {
    font-size: 18.5px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
      "游ゴシック", "Yu Gothic", sans-serif;
    padding-left: 20px;
    flex-basis: auto;
    color: #ffffff;
    text-align: left;
    white-space: nowrap;
}
  
.dialogMenuBar .Item {
    font-size: 13px;
    flex-basis: auto;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    line-height: 40px;
}
  
.dialogMenuBar .Item a {
    color: #ffffff;
    text-decoration: none;
}
