﻿@import url('dialog.css');
body {
    font-family: Verdana, Roboto, 'Droid Sans', '游ゴシック', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
}


/* ############ */
/* ############  カスタム確認ダイアログ  ###############  */
/* ############ */

#custom_dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: calc(75vw);
    margin: 0px;
    padding: 10px 10px;
    display: none;
    text-align: center;
    color: #00AFEC;
    border: solid 5px #00AFEC;
    /* ボタンの影の指定*/
    box-shadow: 2px 2px 3px 1px #666;
    -moz-box-shadow: 2px 2px 3px 1px #666;
    -webkit-box-shadow: 2px 2px 3px 1px #666;
    font-weight: bold;
    font-size: 18px;
    background-color: #F7F8F8;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.custom_dialog_button {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 30px; /*江原君修正*/
    color: #ffffff;
    border-style: none;
    /* ボタンの影の指定*/
    box-shadow: 2px 2px 3px 1px #666;
    -moz-box-shadow: 2px 2px 3px 1px #666;
    -webkit-box-shadow: 2px 2px 3px 1px #666;
    /* テキストの影の指定*/
    text-shadow: 1px 1px 2px #000;
    /* 背景色を明るい青色に指定 */
    background-color: #00AFEC;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    margin: 0px 20px;
}

@media screen and (orientation: landscape) {
    /* 横向きの場合のスタイル */
    #custom_dialog {
        position: fixed;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        width: calc(40vw);
        margin: 0px;
        padding: 30px 20px;
        display: none;
        text-align: center;
        color: #00AFEC;
        border: solid 5px #00AFEC;
        box-shadow: 2px 2px 4px #888;
        font-weight: bold;
        font-size: 20px;
        background-color: #F7F8F8;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }

    button {
        font-size: 18px;
        font-weight: bold;
        padding: 10px 10px;
        color: #fff;
        border-style: none;
        /* ボタンの影の指定*/
        box-shadow: 2px 2px 3px 1px #666;
        -moz-box-shadow: 2px 2px 3px 1px #666;
        -webkit-box-shadow: 2px 2px 3px 1px #666;
        /* テキストの影の指定*/
        text-shadow: 1px 1px 2px #000;
        /* 背景色を明るい青色に指定 */
        background-color: #1e90ff;
        /* 角丸の指定 */
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        text-align: center;
        margin: 0px 20px;
    }
}



/* ############ */
/* ############  サウンド再生確認ダイアログ  ###############  */
/* ############ */

#SoundPlay_Confirm_Dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: calc(75vw);
    margin: 0px;
    padding: 30px 20px;
    text-align: center;
    /* INIカラー*/
    color: #000000;
    /* AOYAMAカラー*/
    /* color: #004990;*/
    /* INIカラー*/
    border: solid 3px #000000;
    /* AOYAMAカラー*/
    /* border: solid 3px #004990;*/
    /*box-shadow: 2px 2px 4px #888;*/
    font-weight: bold;
    font-size: 20px;
    background-color: #ffffff;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    z-index: 150;
    display: none;
    visibility: visible; /* Aoyama & INI */
}


.SoundPlay_Dialog_Button {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 10px;
    color: #fff;
    border-style: none;
    /* ボタンの影の指定*/
    /*box-shadow: 2px 2px 3px 1px #666;*/
    /*-moz-box-shadow: 2px 2px 3px 1px #666;*/
    /*-webkit-box-shadow: 2px 2px 3px 1px #666;*/
    /* テキストの影の指定*/
    /*text-shadow: 1px 1px 2px #000;*/
    /* 背景色を明るい青色に指定 */
    /* INIカラー*/
    background-color: #000000;
    /* AOYAMAカラー*/
    /*  background-color: #004990;*/
    /*background-color: #87cefa;*/
    /* 角丸の指定 */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    margin: 0px 5px;
}

@media screen and (orientation: landscape) {

    /* 横向きの場合のスタイル */
    #SoundPlay_Confirm_Dialog {
        position: fixed;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        width: calc(60vw);
        margin: 0px;
        padding: 30px 20px;
        display: none;
        text-align: center;
        /* INIカラー*/
        color: #000000;
        /* AOYAMAカラー*/
        /* color: #004990;*/
        /* INIカラー*/
        border: solid 3px #000000;
        /* AOYAMAカラー*/
        /* border: solid 3px #004990;*/
        /*box-shadow: 2px 2px 4px #888;*/
        font-weight: bold;
        font-size: 20px;
        background-color: #ffffff;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        z-index: 150;
        display: none;
        visibility: hidden; /* Aoyama & INI */
    }


    .SoundPlay_Dialog_Button {
        font-size: 18px;
        font-weight: bold;
        padding: 10px 10px;
        color: #fff;
        border-style: none;
        /* ボタンの影の指定*/
        /*box-shadow: 2px 2px 3px 1px #666;*/
        /*-moz-box-shadow: 2px 2px 3px 1px #666;*/
        /*-webkit-box-shadow: 2px 2px 3px 1px #666;*/
        /* テキストの影の指定*/
        /*text-shadow: 1px 1px 2px #000;*/
        /* 背景色を明るい青色に指定 */
        /* INIカラー*/
        background-color: #000000;
        /* AOYAMAカラー*/
        /*  background-color: #004990;*/
        /*background-color: #87cefa;*/
        /* 角丸の指定 */
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        text-align: center;
        margin: 0px 20px;
    }
}


/* ############  overlay_comfirm_soundplay  ###############  */

#overlay_comfirm_soundplay {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    transition: all 0.3s ease-in-out;
    z-index: 0;
}

    #overlay_comfirm_soundplay.active {
        opacity: 1;
        z-index:100;
    }



