@charset "utf-8";

@import url('pc.css?20210922124717') screen and (min-width: 864px);
@import url('mobile.css?20210922124717') screen and (max-width: 864px);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-collapse: collapse;
}

html {
    min-height: 100%;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    top: 0;
    left: 0;
    z-index: 100;
}

.dialog_wrap {
    position: fixed;
    padding: 10px;
    margin: 5px;
    width: 600px;
    max-width: calc(100% - 16px);
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 5px), calc(-50% - 5px));
    background-color: #ffffff;
    z-index: 1000;
    border: 3px solid #38a4cb;
    word-break: break-all;
}

.dialog_close {
    text-align: right;
}

.dialog_close:after {
    content: '×';
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
    background-color: #40a7cd;
    border-radius: 50%;
    line-height: 30px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}

.dialog {
    margin-top: 5px;
    word-break: break-all;
    overflow: auto;
}
